WsSCM RoxieControlCmd schema reporting invalid field for "command"
Description
WsSCM's RoxieControlCmd method's schema seems to be missing a type declaration for tns:RoxieControlCmd
Error - Line 7, 88: org.xml.sax.SAXParseException; lineNumber: 7; columnNumber: 88; src-resolve: Cannot resolve the name 'tns:RoxieControlCmd' to a 'type definition' component.
ESPenum RoxieControlCmd : string
{
ATTACH("Attach"),
DETACH("Detach"),
STATE("State"),
RELOAD("Reload"),
RELOAD_RETRY("ReloadRetry")
};
ESPrequest RoxieControlCmdRequest
{
string ProcessCluster;
ESPenum RoxieControlCmd Command("Attach");
int Wait;
};
Conclusion
None
Activity
Show:
Kanghua Wang September 21, 2017 at 4:18 PM
I do not know why the JIRA Status was changed to 'Awaiting Info' after I clicked the 'Accept' button.
Anthony Fishbeck September 21, 2017 at 2:53 PM
Or something like "RoxieControlCmdAction" or "RoxieControlCmdType".
Kanghua Wang September 21, 2017 at 2:07 PM
Edited
The problem is because the duplicated name 'RoxieControlCmd' for both 'ESPenum RoxieControlCmd' and 'ESPmethod RoxieControlCmd'. I may change the ESPenum RoxieControlCmd to 'ESPenum RoxieControlCommand'.
Fixed
Pinned fields
Click on the next to a field label to start pinning.
WsSCM's RoxieControlCmd method's schema seems to be missing a type declaration for tns:RoxieControlCmd
Error - Line 7, 88: org.xml.sax.SAXParseException; lineNumber: 7; columnNumber: 88; src-resolve: Cannot resolve the name 'tns:RoxieControlCmd' to a 'type definition' component.
ESPenum RoxieControlCmd : string
{
ATTACH("Attach"),
DETACH("Detach"),
STATE("State"),
RELOAD("Reload"),
RELOAD_RETRY("ReloadRetry")
};
ESPrequest RoxieControlCmdRequest
{
string ProcessCluster;
ESPenum RoxieControlCmd Command("Attach");
int Wait;
};