Hi,


While I am trying to post a web page using

DefaultHttpClient httpclient = new DefaultHttpClient();
CookieStore cookies = httpclient.getCookieStore();
HttpPost Postmethod = new HttpPost("https://url to post");// Submiting
I agree page
ArrayList<BasicNameValuePair> nvpairs = new ArrayList();
vpairs.add(new BasicNameValuePair("name1", "value1"));
nvpairs.add(new BasicNameValuePair("name2", "value2"));
nvpairs.add(new BasicNameValuePair("name3", "value3"));
httpclient.setCookieStore(cookies);
UrlEncodedFormEntity p_entityIAgree = new UrlEncodedFormEntity
(nvpairs);
Postmethod .setEntity(new UrlEncodedFormEntity(nvpairs, HTTP.UTF_8));
Postmethod .setEntity(p_entityIAgree);
ResponseHandler<String> IAgreeresponseHandler = new
BasicResponseHandler();

String IAgreeSubmitresponseBody = httpclient.execute(Postmethod ,
IAgreeresponseHandler);



I am getting an error

11-20 12:36:22.589: WARN/System.err(366): javax.net.ssl.SSLException:
Not trusted server certificate.




why is it caused ? how Can i solve it?
_________________
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to