I've got a web service call (below) that executes correctly and brings back a result, but I can't figure out how to use the response. I've tried wiring the same web service up in LiveCycle, and it gets an error (Error attempting to read from ... EndPoint) trying to process the response.
Javascript:
var oListURL = "http://192.168.137.50:8080/FgApp/jaxws/LookupServiceImplEndPoint";
SOAP.wireDump = true;
var Element = "PhoneType"
var Input = {element:Element};
var svcResponse = SOAP.request({
cURL: oListURL,
oRequest: {
"findLookupByElement": Input
},
bEncoded: "false"
});
Soap Response (from wireDump):
55
PhoneType
0
WORK
Work
Work Phone
56
PhoneType
0
HOME
Home
Home Phone
57
PhoneType
0
CELL
Cell
Cellular Phone