WebSphere Application Server - HTTPS Communication

This is Interesting: Free IT Magazines  
Home > Archive > WebSphere Application Server > May 2004 > HTTPS Communication





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author HTTPS Communication
Michael W.

2004-05-20, 5:35 pm

I'm using jsse to make a web request where I send and receive data. As
a stand alone application it works fine. However, when I deploy the
code to WebSphere it does not return from the following call.

[pseudo code]
OutputStream outputStream =
httpURLConnection.getOutputStream();

When I open a connection to a URL then perform a read (as Follows)
everything works fine both outside and inside WebSphere.
[pseudo code]
BufferedReader in = new BufferedReader(new
InputStreamReader(httpURLConnection.getInputStream()));

String inputLine;
StringBuffer sb = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
sb.append( inputLine );
System.out.println(inputLine);
}

Does anyone have an idea as to what might be happening.
Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com