Hi,
I have a code for Job Detail and I kept getting the error details below:
Error Message: Domain not available for this request : xsi
Error Code:12801
Below is a part of my code that sets the XDN from the successful JobSubmit call:
com.easylink.ws.JobDetail._2020._06.JobIdType[] JobId = new com.easylink.ws.JobDetail._2020._06.JobIdType[1];
JobId[0] = new com.easylink.ws.JobDetail._2020._06.JobIdType();
JobId[0].setXDN("xsi");
JobId[0].setMRN(BigInteger.valueOf(Long.parseLong(jn)));
responseParameter = new JobDetailResultHolder();
responseHeader = new ResponseHolder();
JobDetailBindingStub bs = new JobDetailBindingStub();
bs._setProperty(JobDetailBindingStub.ENDPOINT_ADDRESS_PROPERTY, "https://test2messaging.easylink.com/soap/sync");
req.setJobId(JobId[0]);
bs.jobDetail(req, requestHeader, responseParameter, responseHeader);
I actually find this very weird because this code used to work last month even if I just set the XDN to "test" so I suspect something has changed on your server side code.
What should be the correct value for XDN?