[QFJ-932] quickfix.ConfigError: No fields found for empty message type depends on XML format Created: 04/Sep/17 Updated: 13/Mar/18 Resolved: 13/Mar/18 |
|
| Status: | Resolved |
| Project: | QuickFIX/J |
| Component/s: | Metadata/Specs |
| Affects Version/s: | 1.6.4 |
| Fix Version/s: | 2.0.1 |
| Type: | Bug | Priority: | Default |
| Reporter: | Jon Freedman | Assignee: | Marcin L |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
Compare the following two XML fragments from a data dictionary, the first produces an error and the second is fine
<message name="XMLnonFIX" msgtype="n" msgcat="Session"/>
Results in Caused by: quickfix.ConfigError: No fields found: msgType=n at quickfix.DataDictionary.load(DataDictionary.java:1021) ~[quickfixj-core-1.6.4.jar:1.6.4]
<message name="XMLnonFIX" msgtype="n" msgcat="Session">
</message>
|