[android-developers] Re: HTTPS POST problem

2011-01-07 Thread DanH
Note that if a request goes through once and the identical request doesn't show up on the server when issued a second time it's likely because somewhere along the way the response is being served out of a cache. On Jan 6, 6:52 am, Filiz Gökçe wrote: > Hi, > I try to connect the https connection.

Re: [android-developers] Re: HTTPS POST problem

2011-01-06 Thread Vo Trung Liem
Hello, You can reconnect when the connect sucessed. Best regards, Liem Vo. On Thu, Jan 6, 2011 at 11:43 PM, Filiz Gökçe wrote: > We start to use, > Post but the same problem still continue. > Some time we can catch the response, sometimes we couldnt connect server. > All parameters are true. >

Re: [android-developers] Re: HTTPS POST problem

2011-01-06 Thread Filiz Gökçe
We start to use, Post but the same problem still continue. Some time we can catch the response, sometimes we couldnt connect server. All parameters are true. Filiz Gökçe On 6 January 2011 17:55, Brill Pappin wrote: > You may have a problem with param encoding. > Also note that you should not

[android-developers] Re: HTTPS POST problem

2011-01-06 Thread Brill Pappin
You may have a problem with param encoding. Also note that you should not have to specify ay https classes, if done properly the client will switch to https as needed. Unless you really need a GET it also might be better to use a POST. I keep meaning to move my http client code into a library, bu