- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 java 中使用 axis2 创建了用于将两个数字相乘的 web 服务..
wsdl文件是
<?xml version="1.0" encoding="UTF-8" ?>
- <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns="http://multiply.example.com" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" targetNamespace="http://multiply.example.com">
<wsdl:documentation>Please Type your service description here</wsdl:documentation>
- <wsdl:types>
- <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://multiply.example.com">
- <xs:element name="multiply">
- <xs:complexType>
+ <xs:sequence>
<xs:element name="x" type="xs:int" />
<xs:element name="y" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
- <xs:element name="multiplyResponse">
- <xs:complexType>
- <xs:sequence>
<xs:element name="return" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</wsdl:types>
- <wsdl:message name="multiplyRequest">
<wsdl:part name="parameters" element="ns:multiply" />
</wsdl:message>
- <wsdl:message name="multiplyResponse">
<wsdl:part name="parameters" element="ns:multiplyResponse" />
</wsdl:message>
- <wsdl:portType name="MulPortType">
- <wsdl:operation name="multiply">
<wsdl:input message="ns:multiplyRequest" wsaw:Action="urn:multiply" />
<wsdl:output message="ns:multiplyResponse" wsaw:Action="urn:multiplyResponse" />
</wsdl:operation>
</wsdl:portType>
- <wsdl:binding name="MulSoap11Binding" type="ns:MulPortType">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
- <wsdl:operation name="multiply">
<soap:operation soapAction="urn:multiply" style="document" />
- <wsdl:input>
<soap:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:binding name="MulSoap12Binding" type="ns:MulPortType">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
- <wsdl:operation name="multiply">
<soap12:operation soapAction="urn:multiply" style="document" />
- <wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:binding name="MulHttpBinding" type="ns:MulPortType">
<http:binding verb="POST" />
- <wsdl:operation name="multiply">
<http:operation location="multiply" />
- <wsdl:input>
<mime:content type="application/xml" part="parameters" />
</wsdl:input>
- <wsdl:output>
<mime:content type="application/xml" part="parameters" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:service name="Mul">
- <wsdl:port name="MulHttpSoap11Endpoint" binding="ns:MulSoap11Binding">
<soap:address location="http://localhost:9998/Multiplication/services/Mul.MulHttpSoap11Endpoint/" />
</wsdl:port>
- <wsdl:port name="MulHttpSoap12Endpoint" binding="ns:MulSoap12Binding">
<soap12:address location="http://localhost:9998/Multiplication/services/Mul.MulHttpSoap12Endpoint/" />
</wsdl:port>
- <wsdl:port name="MulHttpEndpoint" binding="ns:MulHttpBinding">
<http:address location="http://localhost:9998/Multiplication/services/Mul.MulHttpEndpoint/" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
我正在使用 ksoap2 在 android 中调用网络服务。
Android 客户端代码是:
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.PropertyInfo;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import org.ksoap2.SoapFault;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class Addd extends Activity {
EditText edit1,edit2;
Button button1;
TextView text1;
private String METHOD_NAME = "multiply"; // our webservice method name
private String NAMESPACE = "http://muliply.example.com"; // Here package name in webservice with reverse order.
private String SOAP_ACTION = "http://muliply.example.com/multiply"; // NAMESPACE + method name
private static final String URL = "http://192.168.100.193:9998/Multiplication/services/Mul?wsdl" ;// you must use ipaddress here, don’t use Hostname or localhost
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
edit1 =(EditText) findViewById(R.id.fnumber);
edit2 =(EditText) findViewById(R.id.snumber);
button1=(Button) findViewById(R.id.badd);
text1 =(TextView) findViewById(R.id.result);
button1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
try
{
//int a=Integer.parseInt(edit1.getText().toString());
//int b=Integer.parseInt(edit2.getText().toString());
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
PropertyInfo num1 = new PropertyInfo();
num1.setName("a");
num1.setValue(5);
request.addProperty(num1);
PropertyInfo num2 = new PropertyInfo();
num2.setName("b");
num2.setValue(9);
request.addProperty(num2);
//request.addProperty("a", 10);
//request.addProperty("b",11);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
// envelope.dotNet = true;
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
androidHttpTransport.call(SOAP_ACTION,envelope);
Object result = envelope.getResponse();
System.out.println("Result :"+ result.toString());
text1.setText("Addition : "+result.toString());
} catch (Exception E) {
E.printStackTrace();
((TextView) findViewById (R.id.result)).setText("ERROR:" + E.getClass().getName() + ":" + E.getMessage());
}
}
});
}
}
我收到此错误:Error:org.ksoap2.SoapFault The service class object does not implement the required method in the following form OMElement multiply(OMElement e)
如何解决这个错误?任何答案都会对我有帮助
最佳答案
在你的services.xml文件中添加这个
<operation name="Your method name" >
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />
</operation>
关于java - 错误 :org. ksoap2.SoapFault 服务类对象没有实现需要的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35474443/
我的 kSOAP 网络服务将 xml 返回为这种格式我如何从中获取 country_name anyType{country=anyType{country_name=Egypt; };
我能够使用 ksoap2 获取复杂的类响应,现在我得到的响应是 xml 形式 任何人都可以帮我解决如何解析这个 Ksoap 响应吗?我已经在论坛上阅读了为它添加映射的内容,我也添加了映射。我可以使用
我一直在使用 Android 版 KSOAP 发送包含 6 个元素的 SOAP 请求,最后一个元素是一个值数组。这是代码... PropertyInfo properties[] = n
我在我的 Android 应用程序中使用 KSoap。我的应用程序使用 Web 服务与服务器通信。我找到了一个 KSoap wev 服务客户端的代码示例。在示例中,客户端使用以下代码与服务器进行通信
我正在使用 KSOAP2 调用 Web 服务。我收到了回复,但该回复中的特殊字符未正确显示。 我怎样才能改变它? 编辑: 以下代码负责发送和接收数据: package org.ksoap2.trans
我正在使用 Android ksoap2 库来使用 SOAP 网络服务。 请求中的一个节点看起来像.. //some more nodes .............
我有 ksop 请求。我揉出来的是 asdfdsafdsfasdfdsa
我正在使用支持超时的 ksoap2 2.5.4(在 Android 2.2 上)。我正在使用 Apache 2.2.16 来处理我的请求。一切正常,但当我关闭我的 Apache(或断开运行 Apach
帮帮我,我花了大约 3 周的时间搜索整个 www,但无法正常工作! 我有一个 WS,只想让我的应用程序有响应。但不幸的是,我在更正所有内容后总是得到以下错误! 08-09 15:29:30.930:
当向 soap 对象添加属性时无法指定其类型....我需要整数但它总是将其设置为“d:string”1312191347这是我添加属性(property)的方式: SoapObject _client
我在尝试使用 kSOAP2 在 Android 中使用 ColdFusion SOAP 服务时遇到了一个问题。这是我的 java 代码,用于调用我在 ColdFusion 中编写的测试方法(它只返回一
我正在尝试通过 kSOAP(直接从 Google 下载并包含“.jar”)调用公共(public) Web 服务 (w3schools.com/webservices/tempconvert.asmx
有没有人有使用 kSOAP 包的良好的复杂对象编码示例? 最佳答案 虽然这个例子不是可编译的和完整的,但基本思想是有一个类告诉 kSOAP 如何将 XML 标记转换为对象(即 readInstance
我正在通过 SOAP 发送多个 PDF 文件,Android 客户端将接收这些文件。但是当收到 SOAP 响应时,它会抛出 OutOfMemoryException。 我想知道它是否是 kSOAP 或
我正在使用 Android 中的 Ksoap 访问 .net 网络服务。 wsdl 的格式是这样的 Date1 Date2 我对 DateTo 使用相同的 addPropert
我不知道为什么我不能得到这个?......也许我遗漏了什么或者我太笨了 我想尝试从 Android 应用程序调用网络服务 现在要做到这一点,发现适用于 Android 的 kSOAP 2 是所需的库
我正在使用 ksoap2 (ksoap2-android-assembly-3.0.0-RC.1-jar-with-dependencies.jar) 与我的 android 应用通信在 jboss
我在下面显示的代码中使用 soap 访问 Web 服务并收到以下错误,我需要帮助来理解: SoapFault - faultcode: 'soap:Server' faultstring: 'Syst
我希望生成像这样的 soap 请求: - - Connect -
马上,这是我的 Soap 调用实现,减去不相关的位。 public class MySoapClient implements AbstractSoapClient { private Str
我是一名优秀的程序员,十分优秀!