使用SOAP Web服务的HTTPS请求

时间:2017-09-29 01:27:42

标签: java android asp.net-web-api soap-client webservices-client

您好我想知道如何为soap API提供https请求

在Android应用中,我搜索了很多,但没有明确的教程解释如何做到这一点

是否有任何建议或帮助?

谢谢

1 个答案:

答案 0 :(得分:0)

//send to
email.PutExtra (Android.Content.Intent.ExtraEmail,
new string[]{"person1@xamarin.com", "person2@xamrin.com"} );
//cc to
email.PutExtra (Android.Content.Intent.ExtraCc,
new string[]{"person3@xamarin.com"} );
//subject
email.PutExtra (Android.Content.Intent.ExtraSubject, "Hello Email");
//content
email.PutExtra (Android.Content.Intent.ExtraText,
"Hello from Xamarin.Android");

SOAP请求也是请求正文中带有xml的http POST。您需要将URL更改为Web服务端点URL,并将示例字符串替换为SOAP请求。