Tag Archives: Server

They propagate git-clean replacement remote server git push?

I have accidentally git cleaned my local repository and i know i can’t get those untracked files back. But i want to know if this change will be propagated to remote server (when i git push) or not?? Because i … Continue reading

Retrieve location information of registered users in a Smack XMPP server (without subscription)

So here’s my idea. I wan’t to list all the users registered on an XMPP server within my location radius. So that I could add (if interested). I use smack API and I am basically building an android chat application … Continue reading

Android: Send HTTP Post with multiple values ??for Web Server

List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2); nameValuePairs.add(new BasicNameValuePair(“id”, “12345″)); nameValuePairs.add(new BasicNameValuePair(“stringdata”, “AndDev is Cool!”)); httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs)); http://www.androidsnippets.com/executing-a-http-post-request-with-httpclient I would like to add more ids and stringdatas, List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(); nameValuePairs.add(new BasicNameValuePair(“id”, “12345″)); nameValuePairs.add(new BasicNameValuePair(“stringdata”, “AndDev is Cool!”)); nameValuePairs.add(new BasicNameValuePair(“id”, … Continue reading

As the values ??in array size? Send e appilcation of android on non web-based server and retrive it?

I am working on a cloud computing based android project where front end is android and back end java. At front end I have to enter Add Destinations list and Add activities list. This I want to send in the … Continue reading

PHP WebSocket: immediately separated and Weird message string sent from client to server

I am currently following this tutorial. Until now, I have met so many errors and changed the class a lot. Now, the problem is, when the client send a message, it is read in server as a weird string and … Continue reading