我有一个 android 应用程序,我想在其中从 SqlServer 2008 检索数据。
android 应用程序连接到访问 Sqlserver 数据库的 Web 服务,我尝试调用从数据库中检索数据的方法“getCommentsTest”,但出现此错误:
System.Web.Services.Protocols.SoapException:服务器无法处理请求。---> System.Data.SqlClient.SqlException:无法打开登录请求的数据库“我的数据库”。登录失败。用户“NT AUTHORITY\NETWORK SERVICE”登录失败。
知道我在发布后尝试在浏览器上查看 Web 服务,我调用了该函数并且它起作用了。
这是调用网络服务的android代码:
公共无效调用TestGetComments(){尝试{
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME_GET_COMMENTS);
request.addProperty("eID", 140);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet=true;
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL_TEST);
androidHttpTransport.call(SOAP_ACTION_GET_COMMENTS, envelope);
Object result = (Object)envelope.getResponse();
String xml=result.toString();
Document doc=XMLfromString(xml);
doc.getDocumentElement().normalize();
//System.out.println("Root element :" + doc.getDocumentElement().getNodeName());
NodeList nList = doc.getElementsByTagName("Comment");
//System.out.println("-----------------------");
//String commentBody,userName;
String commentBody="";
for (int i = 0; i < nList.getLength(); i++)
{
Node nNode = nList.item(i);
if (nNode.getNodeType() == Node.ELEMENT_NODE)
{
Element eElement = (Element) nNode;
//Comment c=new Comment();
commentBody += getTagValue("comment", eElement);
commentBody+= getTagValue("uPhone", eElement);
//System.out.println("Nick Name : " + getTagValue("nickname", eElement));
//System.out.println("Salary : " + getTagValue("salary", eElement));
//comments.add(c);
}
// tv.setText(result.toString());
tv.setText(commentBody);
}
}
catch (Exception e) {
tv.setText(e.getMessage());
}
}