If I'm applying an Android application on my HTC mobile and I want to send my location to my server using python code, how can I do this? I made this method in my Android application which is a maps view and some overlay items

enter code here
 public void connect(View view){
        try{
            clientSocket= new Socket("10.0.2.2",54633); 
            Text.append( "\n created a socket");

                 }catch(Exception e){
            System.out.println("Error");
                      }
                         }

and same id and port in my python code but do I have to enter the HTC ip address or what?!! Also how can I send the location?

link|improve this question

12% accept rate
feedback

closed as not a real question by Jim Lewis, Nick Berardi, Jeff Atwood May 16 '11 at 5:26

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

You have to add the permission for Internet in your androidmanifest.xml for starters.

link|improve this answer
yes sure done . – eoeo May 15 '11 at 23:12
feedback

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