小编Abh*_*hek的帖子

SoapFault - faultcode:'soap:Server'faultstring:'System.Web.Services.Protocols.SoapException:

我正在使用基于皂的web服务..我使用了这个例子我能够解析并获得响应但是当我尝试通过对其进行一些更改来尝试不同的时候.我在我的项目中得到下面提到的错误我的代码在下面请看看..

public class MainActivity extends ActionBarActivity implements OnClickListener {

    TextView tv1;
    EditText edname, edemail, edpassword;
    Button btnSubmit;
    private final String NAMESPACE = "http://tempuri.org/";
    private final String URL = "http://208.109.86.236:8080/API.asmx";
    private final String SOAP_ACTION = "http://tempuri.org/PlayerSignup";
    private final String METHOD_NAME = "PlayerSignup";
    private String TAG = "PGGURU";
    private static String stusername;
    private static String stpassword;
    private static String stemail;
    private static String responsea;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tv1 = (TextView) findViewById(R.id.tv1);
        edname = (EditText) findViewById(R.id.editText1); …
Run Code Online (Sandbox Code Playgroud)

android soap web-services

4
推荐指数
1
解决办法
1777
查看次数

标签 统计

android ×1

soap ×1

web-services ×1