我们正在为 5.0 及更高版本的 Blackberry Native Application 工作。
BB 应用程序必须使用用 ASP.Net 编写的 Web 服务。Web 服务受 Windows 身份验证保护。
我们正在使用 KSOAP 库从 BB 调用 Web 服务。
请让我们知道从我们的应用程序通过 Windows 身份验证需要什么。
提前致谢....
我们正在为 5.0 及更高版本的 Blackberry Native Application 工作。
BB 应用程序必须使用用 ASP.Net 编写的 Web 服务。Web 服务受 Windows 身份验证保护。
我们正在使用 KSOAP 库从 BB 调用 Web 服务。
请让我们知道从我们的应用程序通过 Windows 身份验证需要什么。
提前致谢....
Please try following code. I am it will work with network credential password.
String URL = "URL"+methodName+parameterString+"deviceside=true";
connection = (HttpConnection) Connector.open(URL);
String authenticationParameter = "username"+":"+"password";
byte[] encoded = Base64OutputStream.encode(authenticationParameter.getBytes(), 0,
authenticationParameter.length(), false, false);
connection.setRequestProperty("Authorization", "Basic "+ new String(encoded));
rc = connection.getResponseCode();
Hope help full.