Re: [PHP] Input to PHP from Java

2004-09-29 Thread raditha dissanayake
Rajesh Batchu wrote _outputStream.flush(); _outputStream.close(); // receive response _inputStream = new DataInputStream(new BufferedInputStream(_httpsConnection.getInputStream())); OT: if you close the outputstream from URLConnection you will not be able to read the

Re: [PHP] Input to PHP from Java

2004-09-29 Thread Marek Kilimajer
Rajesh Batchu wrote: Hi, I have a page with SSL enables as below. https://email.website.com/usrfolder/one.php For this page, my customer is posting some XML data using a java output stream as below. ( pseudo code) URL url = new URL(_url); _httpsConnection= (HttpsURLConnectio

[PHP] Input to PHP from Java

2004-09-29 Thread Rajesh Batchu
Hi, I have a page with SSL enables as below. https://email.website.com/usrfolder/one.php For this page, my customer is posting some XML data using a java output stream as below. ( pseudo code) URL url = new URL(_url); _httpsConnection= (HttpsURLConnection) url.openConnectio