hi,
i have to use a webservice with basic authentication, and i
found on
http://code.google.com/p/ksoap2-android/wiki/CodingTipsAndTricks that
for this purpose i should use HttpTransportBasicAuth from the "extra"
package from ksoap2.
so i downloaded the ksoap2-extras-3.0.0.jar file and added it to the build path of my project.
after this, i was able to do the following in my webservice-code:
HttpTransportBasicAuth ahtBasicAuth = new HttpTransportBasicAuth(URL, "user", "password");
but what next?
how do i use it?
how should the HttpTransportBasicAuthbe used?
i didn't find any example.
can anyone tell my how to use it?
thanks in advance.