Re: Sending a POST request via HTTPS with WOHTTPConnection

2015-09-30 Thread Klaus Berkling
> On Sep 30, 2015, at 7:18 AM, Michael Hast wrote: > > Like Rene, I am not sure about WOHTTPConnection and https. Looking at code > that had to post content to other servers we use the java.net > classes: > > URL url = new URL("..."); > HttpURLConnection conn = (HttpURLConn

Re: Sending a POST request via HTTPS with WOHTTPConnection

2015-09-30 Thread Michael Hast
Like Rene, I am not sure about WOHTTPConnection and https. Looking at code that had to post content to other servers we use the java.net classes: URL url = new URL("..."); HttpURLConnection conn = (HttpURLConnection)url.openConnection(); ... And then we used a OutputStreamWriter to write our po

Re: Sending a POST request via HTTPS with WOHTTPConnection

2015-09-30 Thread René Bock
Hi Benjamin, as far as I remember, there is no possibility to use https with WOHTTPConnection. we use apaches httpclient library instead. The necessary jars are included in ERJars... > Am 30.09.2015 um 13:48 schrieb Benjamin Steiner : > > Hi List > > At the moment, our application is sen

Sending a POST request via HTTPS with WOHTTPConnection

2015-09-30 Thread Benjamin Steiner
Hi List At the moment, our application is sending a POST request with WOHTTPConnection. Now our customer wants us to send it via HTTPS. Is there a possibility to do that with WOHTTPConnection or are there any other ways to do it? Thanks, Beni Application application = (Application)Application.