Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
The sad part is that you actually think there is a solution to this problem. Voting to close. – Rook Nov 24 '12 at 9:52
thats why am asking any solution is there or not applicable to any solution?????? – user1796222 Nov 24 '12 at 10:59

closed as off topic by Rook, rolve, IceMAN, Marcin Orlowski, evilone Nov 24 '12 at 15:30

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Since the code sample doesn't actually reference MySQL I have to guess that the SOAP request goes to the server where the DB lives. To this end you can create a (MySQL) account that does your DB work and set it to be accessible only from localhost.

http://dev.mysql.com/doc/refman/5.1/en/create-user.html

The first example on this page:

CREATE USER 'jeffrey'@'localhost' IDENTIFIED BY 'mypass';

->'localhost' means this account can't login from anywhere besides the server that MySQL is running on. So unless you left that door open your DB should be ok.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.