Web服务标注失败:意外元素。 Parser期待元素'http://schemas.xmlsoap.org/soap/envelope/:Envelope',但发现':HTML'

时间:2014-01-20 04:43:39

标签: web-services soap wsdl salesforce apex

在拨打网络服务时,我收到以下错误:

Web服务标注失败:意外元素。 Parser期待元素“http://schemas.xmlsoap.org/soap/envelope/:Envelope”,但找到了':HTML'

请参阅下面我正在尝试的代码:

  
    

public class TestUtility_Cls {

  
public list<Test_webService.KeyValuePair> IOG_pair = new list<Test_webService.KeyValuePair>();
public pageReference calltestServices(){

    I_pair = new list<Test_webService.KeyValuePair>();
    Test_webService.webPort bindobj = new Test_Iwebervice.RtPort();
        bindobj.clientCertName_x = 'xxxxxxxxxxxxxx';
        bindobj.timeout_x = 120000;
        bindobj.inputHttpHeaders_x = new Map<String, String>();
        bindobj.inputHttpHeaders_x.put('Authorization', 'xxxxxxxxx');        

    Test_webService.KeyValuePair I_KeyValue = new Test_webService.KeyValuePair();
        I_KeyValue.key = 'SessionId';
        I_KeyValue.value = 'Carrie09';
        I_pair.add(I_KeyValue);

        I_KeyValue = new Test_webService.KeyValuePair();
        I_KeyValue.key = 'CR';
        I_KeyValue.value = 'ExOffer';
        I_pair.add(I_KeyValue);

        Test_webService.ArrayOfKeyValuePair kevapair = new Test_webService.ArrayOfKeyValuePair();
        kevapair.attribute = I_pair;

        Test_webService.ProcessEventResponse_element IResp = new Test_webService.ProcessEventResponse_element();
        IResp = bindingobj.ProcessEvent('QA', 'GetOffers', kevapair);

    return null;    
}

}

这里我使用的是WSDL生成的类方法。

有人可以为此提供帮助。怎么解决? 谢谢,

1 个答案:

答案 0 :(得分:0)

public pageReference calltestServices(){

我认为上面的方法引用了一个html页面引用,您从中提取输入数据。您正在以html格式形成输入请求,而您的Web服务是预期的肥皂信封。我认为你需要包装,传送或编辑你的请求,在上面的方法中形成肥皂信封,然后只有你的服务器接受它。