Hello,
I am trying to write a Web Services script that will pass multiple documents within the same request. I am able to send the single requests fine and the tool works as I expect, however when I try to add more documents within the xml I get an unable to deserialize node error.
Here is a sample of the xml that works correctly.
BEGIN_ARGUMENTS,
"xml:DELVRY05="
"<DELVRY05>"
"<DOC>"
"<HEADER>"
"<FOO>R100</FOO>"
"</HEADER>"
"<BODY>"
"<DATA>blaah</DATA>"
"</BODY>"
"</DOC>"
"</DELVRY05>"
I need to add mutiple Docs within the single XML call which is where I am getting the error. For example
BEGIN_ARGUMENTS,
"xml:DELVRY05="
"<DELVRY05>"
"<DOC>"
"<HEADER>"
"<FOO>R100</FOO>"
"</HEADER>"
"<BODY>"
"<DATA>blaah</DATA>"
"</BODY>"
"</DOC>"
"<DOC>"
"<HEADER>"
"<FOO>R100</FOO>"
"</HEADER>"
"<BODY>"
"<DATA>blaah</DATA>"
"</BODY>"
"</DOC>"
"</DELVRY05>"
Any thoughts ?