Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to resolve java.net.SocketException Permission Denied error?
    primarykey
    data
    text
    <p>I have already included the Internet Permissions in the andoird manifest page, still the error seems to persist. I am also recieveing an unknown host excption in the similar code. Kindly guide me through! Ty! :)</p> <pre><code>package name.id; import android.app.Activity; import android.content.DialogInterface.OnClickListener; import android.os.Bundle; import org.ksoap2.*; import org.ksoap2.serialization.*; import org.ksoap2.transport.*; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class FirstPage extends Activity implements android.view.View.OnClickListener { /** Called when the activity is first created. */ TextView tv; Button bu; EditText et; private static final String SOAP_ACTION="http://lthed.com/GetFullNamefromUserID"; private static final String METHOD_NAME="GetFullNamefromUserID"; private static final String NAMESPACE="http://lthed.com"; private static final String URL="http://vpwdvws09/services/DirectoryService.asmx"; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); et=(EditText) findViewById(R.id.editText1); tv=(TextView) findViewById(R.id.textView2); bu=(Button) findViewById(R.id.button1); bu.setOnClickListener((android.view.View.OnClickListener) this); tv.setText(""); } public void onClick(View v) { // creating the soap request and all its paramaters SoapObject request= new SoapObject(NAMESPACE, METHOD_NAME); //request.addProperty("ID","89385815");// hardcoding some random value //we can also take in a value in a var and pass it there //set soap envelope,set to dotnet and set output SoapSerializationEnvelope soapEnvelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); soapEnvelope.dotNet=true; soapEnvelope.setOutputSoapObject(request); HttpTransportSE obj = new HttpTransportSE(URL); //to make call to server try { obj.call(SOAP_ACTION,soapEnvelope);// in out parameter SoapPrimitive resultString=(SoapPrimitive)soapEnvelope.getResponse(); //soapObject or soapString tv.setText("Status : " + resultString); } catch(Exception e) { tv.setText("Error : " + e.toString()); //e.printStackTrace(); } } } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload