使用SOAPUI我填写了XML表格中的相关信息,然后收回了相应的xml。
我试图在Visual Studio C#上复制它,添加一个服务引用,输入完全相同的数据,但奇怪的是这是输出的内容;
WindowsFormsApplication1.SomeCompanyWebService.TransactionTrialBalance []
使用此代码;
AWebService.BIServiceClient Client = new AWebService.BIServiceClient();
Var Response = Client.getTransactions(true, username, Encrypted_password, Period, Year, MethodSignature, Database);
ResultTxtBox.Text = Response.ToString();
我如何获取XML数据?