Hi Derrick,
I've seen similar when doing an HTTP GET. Every time it's because I've forgotten that a "feature" of B2Bi is that if you have a PrimaryDocument it will append it like POST data to the HTTP GET request, which of course is not supported. What you should do is Assign PrimaryDocument to another area of ProcessData (assuming you'll need it again after the GET) and then use the Release service to get rid of PrimaryDocument before using the HTTP Client GET service e.g:
<assign name="Assign" to="myDoc" from="/ProcessData/PrimaryDocument/@SCIObjectID"></assign>
<operation name="Release Service">
<participant name="ReleaseService"/>
<output message="outmsg">
<assign to="TARGET">/ProcessData/PrimaryDocument</assign>
<assign to="." from="*"></assign>
</output>
<input message="inmsg">
<assign to="." from="*"></assign>
</input>
</operation>
Best regards,
Richard.
------------------------------
RICHARD CROSS
------------------------------