メソッド SOAP によって android から web サービスを使用する 2 つのパラメーターを渡す方法。試してみましたが、Android からその Web サービスを利用できません。
提案?
これは、「http://54.251.60.177/TMSOrdersService/TMSDetails.asmx」を消費しようとしている正確な Web サービスです。
この Web サービスの入力値は次のとおりです。
開始日: 2012 年 1 月 1 日
日付: 2012 年 7 月 7 日
参考資料
Webservice_.java
public class Webservice_ extends Activity
{
public static String rslt=""; /** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button b1=(Button)findViewById(R.id.button1);
final AlertDialog ad=new AlertDialog.Builder(this).create();
b1.setOnClickListener(new OnClickListener() {
public void onClick(View arg0)
{
try
{
EditText ed1=(EditText)findViewById(R.id.editText1);
EditText ed2=(EditText)findViewById(R.id.editText2);
int a=Integer.parseInt(ed1.getText().toString());
int b=Integer.parseInt(ed2.getText().toString()); rslt="START";
Caller c=new Caller();
c.FromDate=a;
c.ToDate=b;
c.ad=ad;
c.join();
c.start();
while(rslt=="START")
{
try {
Thread.sleep(10);
}catch(Exception ex) {
}
} ad.setTitle(+a +b);
ad.setMessage(rslt);
}catch(Exception ex) {
ad.setTitle("Error!"); ad.setMessage(ex.toString());
}
ad.show();
} });
}}
CallSoap.java
public class CallSoap
{
public final String METHOD_NAME = "GetTMSChart";
public final String NAMESPACE = "http://tempuri.org/";
public final String SOAP_ACTION = "http://tempuri.org/GetTMSChart";
public final String URL = "http://54.251.60.177/TMSOrdersService/TMSDetails.asmx";
public CallSoap()
{
}
public String Call(int FromDate,int ToDate)
{
SoapObject request = new SoapObject(NAMESPACE,SOAP_ACTION);
PropertyInfo pi=new PropertyInfo();
pi.setName("FromDate");
pi.setValue(FromDate);
pi.setType(Date.class);
request.addProperty(pi);
pi=new PropertyInfo();
pi.setName("ToDate");
pi.setValue(ToDate);
pi.setType(Date.class);
request.addProperty(pi);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
HttpTransportSE httpTransport = new HttpTransportSE(URL);
Object response=null;
try
{
httpTransport.call(SOAP_ACTION, envelope);
response = envelope.getResponse();
}
catch (Exception exception)
{
response=exception.toString();
}
return response.toString();
}
}
Caller.java
public class Caller extends Thread
{
public CallSoap cs;
public int FromDate,ToDate;
protected AlertDialog ad;
public void run()
{
try
{
cs=new CallSoap();
String resp=cs.Call(FromDate, ToDate);
Webservice_.rslt=resp;
}
catch(Exception ex)
{
Webservice_.rslt=ex.toString();
}
}
}
貴重なお時間をありがとうございました!...