I am getting Exception while using this code, but it works with other links.
public class WebserviceCall {
    static WebserviceCall com;
    String namespace = "http://tempuri.org/";
    private String url = "http://sicsglobal.co.in/T-Drive/WebService_TDrive.asmx";
    String SOAP_ACTION;
    SoapObject request = null, objMessages = null;
    SoapSerializationEnvelope envelope;
    AndroidHttpTransport androidHttpTransport;
    public static WebserviceCall getInstance() {
        if (com == null)
            return new WebserviceCall();
        else
            return com;
    }
    protected void SetEnvelope() {
        try {
            envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
            envelope.dotNet = true;
            envelope.setOutputSoapObject(request);
            androidHttpTransport = new AndroidHttpTransport(url);
            androidHttpTransport.debug = true;
        } catch (Exception e) {
            System.out.println("Soap Exception SetEnvelope (); \n"
                    + e.toString());
        }
    }
    public String getConvertedWeight(String MethodName, String thisUsername,
            String thisPassword) {
        try {
            SOAP_ACTION = namespace + MethodName;
            request = new SoapObject(namespace, MethodName);
            request.addProperty("userId", "" + thisUsername.trim());
            request.addProperty("password", thisPassword.trim());
            SetEnvelope();
            try {
                androidHttpTransport.call(SOAP_ACTION, envelope);
                String result = envelope.getResponse().toString();
                return result;
            } catch (Exception e) {
                return e.toString();
            }
        } catch (Exception e) {
            // TODO: handle exception
            return e.toString();
        }
    }
}
 
     
     
    