作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将一些数据发布到远程计算机,但它返回错误
<soapenv:Fault>
<faultcode xmlns:ns1="http://xml.apache.org/axis/">ns1:Client.NoSOAPAction</faultcode>
<faultstring>no SOAPAction header!</faultstring>
我的猜测是我发送 header 元素的方式存在问题:
// Java code snip
SOAPHeader header = envelope.getHeader();
header.setPrefix("soapenv");
QName headerElementName = new QName("http://soft.com/webservices/", "AuthHeader");
SOAPHeaderElement authHeader = header.addHeaderElement(headerElementName);
QName headerChild = new QName("Username");
SOAPElement userName = authHeader.addChildElement(headerChild);
userName.addTextNode("smart");
headerChild = new QName("Password");
SOAPElement passwd = authHeader.addChildElement(headerChild);
passwd.addTextNode("smart");
从响应中可以清楚地看出,远程机器上的soap工具包是axis,最终发送的请求及其响应如下所示:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ocs="http://ocs.soft.com">
<soapenv:Header>
<AuthHeader xmlns="http://soft.com/webservices/">
<Username>smart</Username>
<Password>smart</Password>
</AuthHeader>
</soapenv:Header>
<soapenv:Body><ocs:doService><ocs:in0 xmlns:ocs="http://ocs.soft.com"><![CDATA[
<?xml version="1.0" encoding="UTF-8"?>
<zsmart>
<Data>
<header>
<ACTION_ID>ModifyBalReturnAllBal</ACTION_ID>
<REQUEST_ID>005200907310022</REQUEST_ID>
</header>
<body>
<MSISDN>254775127966</MSISDN>
<AccountCode></AccountCode>
<BalID></BalID>
<AddBalance>10000</AddBalance>
<AddDays>0</AddDays>
<TransactionSN>00520090731002195</TransactionSN>
</body>
</Data>
</zsmart>
]]></ocs:in0></ocs:doService></soapenv:Body></soapenv:Envelope>
HTTP/1.1 500 Internal Server Error
Content-Type: text/xml;charset=utf-8
Transfer-Encoding: chunked
Date: Wed, 20 Jan 2016 16:56:52 GMT
Server: Apache-Coyote/1.1
Connection: close
<?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<soapenv:Fault>
<faultcode xmlns:ns1="http://xml.apache.org/axis/">ns1:Client.NoSOAPAction</faultcode>
<faultstring>no SOAPAction header!</faultstring>
<detail>
<ns2:hostname xmlns:ns2="http://xml.apache.org/axis/">ocstest</ns2:hostname>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
我已经浏览了肥皂的文档一百万次,并且确信这是有效的肥皂请求。
我想知道我的标题子元素部分是否定义良好。
如果是,是否是 Axis 上的身份验证问题?
最佳答案
在此上下文中,“ header ”不是指 SOAP header ,而是指 HTTP header 。对于 SAAJ,SOAPAction
header 设置如下:
MimeHeaders headers = message.getMimeHeaders();
headers.addHeader("SOAPAction", "http://www.example.org/someaction");
message
是 SOAPMessage
对象。 SOAP 操作在服务的 WSDL 中指定。
关于java - SAAJ:如何为 SoapHeaderElement 创建子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34916164/
我有一个 Java 类来生成以下 XML: LGE Nexus 5 ANDROID 6.0.1 4.1.5
我正在尝试将一些数据发布到远程计算机,但它返回错误 ns1:Client.NoSOAPAction no SOAPAction header! 我的猜测是我发送 header 元素的方式
我是一名优秀的程序员,十分优秀!