I have to develop one android application.
This is my android code:
public class RetrieveAndroid extends Activity {
private static final String SOAP_ACTION = "http://xcart.com/customerData";
private static final String METHOD_NAME = "customerData";
private static final String NAMESPACE = "http://xcart.com";
//private static final String URL = "http://##:8089/XcartLogin/services/Fetch?wsdl";
private static final String URL = "http://##:8080/xcartlogin/services/Fetch?wsdl";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.setOutputSoapObject(request);
HttpTransportSE ht = new HttpTransportSE(URL);
//int aNumber = 10;
//Log.e("aNumber = ","aNumber " + aNumber);
try {
ht.call(SOAP_ACTION, envelope);
SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
SoapPrimitive s = response;
String str = s.toString();
String resultArr[] = str.split("&");//Result string will split & store in an array
TextView tv = new TextView(this);
for(int i = 0; i<resultArr.length;i++){
tv.append(resultArr[i]+"\n\n");
}
setContentView(tv);
} catch (Exception e) {
//Log.e("Error : " , "Error on soapPrimitiveData() " + e.getMessage());
e.printStackTrace();
}
}
}
Here i have to gave permission globally for my mysql database means it is worked well on my device.then how can i manage security for my mysql database.
i gave permission globally on my mysql database.so all are allow to access my mysql database.but i wish to allow to access my mysql database myself(alone) only.others doesn't allowed to access my mysql database.so this suitation how can i manage security.
please give me solution.