I need to know how to debug a call to a webservice.
It appears as though it's formatted correctly, but the webservice on the
other end says our first parameter is missing, or coming through as ""
rather than a date.
I show a date being passed to the invoke method... Is there a way to output
the XML that gets sent to the webservice method?
I'm trying to figure out if there's a way to have the axis class print the
XML that is generated from the call below...
java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
createPersonBirthDate,
createPersonSex,
createPersonProducerCode,
createPersonHomePhone,
createPersonWorkPhone,
createPersonMobilePhone,
createPersonEmail,
createPersonLangCode,
createPersonLastName,
createPersonFirstName,
createPersonNameLikes,
createPersonAddress1,
createPersonAddress2,
createPersonAddress3,
createPersonCity,
createPersonStateProv,
createPersonPostalCode,
createPersonCountry,
createPersonWebID,
createPersonResultMsg.value});
Any thoughts or suggestions would be greatly appreciated! I print out each
of the values that I pass in here, and they are valid -- but the issue is
the BirthDate -- I show it there when I make this invoke call, and it's in
the _oper definition as well... But I'm being told that it must be coming
across in the XML as ""... So I need a way to absolutely know what is going
out from my client to that webservice...
Kim :-)