我是一个新手,正在编写SOAP Web服务(用于集成目的),为了执行SOAP调用,我需要首先验证用户(标准集成用户)。
以下是它的代码片段。但是,当我执行callout时,它会为Basic Http请求抛出错误代码500,为第二个Http请求抛出错误代码401。
这是正确的方法吗?
HTTP auth = new HTTP();
HTTPRequest r = new HTTPRequest();
r.setEndpoint('https://domainname.net/enterprise/soap?ServiceName=IntegrationManagementService');
Blob headerValue = Blob.valueOf(username+':'+password);
String authorizationHeader = 'Basic ' + EncodingUtil.base64Encode(headerValue);
r.setHeader('Authorization', authorizationHeader);
r.setMethod('POST');
try
{
HTTPResponse authresp = auth.send(r);
if(authresp.getStatusCode() == 200)
{
system.debug('Authentication success!!!' + authresp);
}
else
{system.debug('Authentication failed!!!' + authresp + authresp.getStatusCode());}
}catch(exception e){}
//construct http request
string endpointURL = 'https://doaminname.net/enterprise/soap?ServiceName=IntegrationManagementService';
HttpRequest req = new HttpRequest();
req.setMethod('POST');
req.setEndpoint(endpointURL);
req.setHeader('Content-Type','application/xml');
req.setBody(TaleoXML);
//send http request
Http http = new Http();
try
{
HttpResponse res = http.send(req);
//check the response
if(res.getStatusCode() == 200)
{
system.debug('Callout success!!!' + res);
}
else
{system.debug('Callout failed!!!' + res + res.getStatusCode());}
}catch(exception e){}
在第二个请求中,您不包含身份验证,这就是您收到401(未授权)错误的原因。
在第一个请求中,您似乎认证正常,但服务器无法处理请求。我想你错过了引用你想要使用的IntegrationManagementService webservice的功能/操作。或者您正在使用需要启用MTOM的功能/操作。