... | ... | @@ -96,13 +96,15 @@ graph LR |
|
|
The generating process (aka [publisher](https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern) in MQ language), will just send a fixed hash to the message broker. The hash, however, contains, at least, [UTF-8](https://en.wikipedia.org/wiki/UTF-8) characters, if not [UTF-16](https://en.wikipedia.org/wiki/UTF-16). Since this is a fixed string, it can still be validated on the other side by the validating processes (aka [consumer](https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern) in MQ language).
|
|
|
|
|
|
### Example hash
|
|
|
``` python
|
|
|
'testdict': {
|
|
|
u'مفتاح': u' قيمة', # Arabic; key: value
|
|
|
u'键': u'值', # Chinese; key: value
|
|
|
u'キー': u'値', # Japanese; key: value
|
|
|
<pre class="code highlight js-syntax-highlight python solarized-dark" v-pre="true" lang="python">
|
|
|
<code>
|
|
|
'testdict': {<br/>
|
|
|
'مفتاح': قيمة', # Arabic; key: value<br/>
|
|
|
'键': u'值', # Chinese; key: value<br/>
|
|
|
'キー': u'値', # Japanese; key: value<br/>
|
|
|
}
|
|
|
```
|
|
|
</code>
|
|
|
</pre>
|
|
|
|
|
|
### Explanation of the test
|
|
|
|
... | ... | |