Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
New Developer
kyle_g
Posts: 10
Registered: ‎08-25-2008
Accepted Solution

HttpConnection errors

Hello all,

    I have a J2ME MIDlet which requires the use of the network through the use of HttpConnection. The handset prompts me to allow or disallow network access. I choose yes to allow netowork access, the arrows in the upper right corner of the screen indicate network activity, however, theprogression of theMIDlet never occurs and reports a problem with the networ. I know that the networking code works, as I have tested the MIDlet on other j2me handsets as well as other emulators. Is there some sort of permissions that I need to enable or additional signing needed??

Please use plain text.
Administrator
MSohm
Posts: 13,065
Registered: ‎07-09-2008
My Carrier: Bell

Re: HttpConnection errors

What error or exception is reported?
Mark Sohm
BlackBerry Development Advisor

Please refrain from posting new questions in solved threads.
Found a bug? Report it using the Issue Tracker
Please use plain text.
New Developer
kyle_g
Posts: 10
Registered: ‎08-25-2008

Re: HttpConnection errors

The exception returned was a ConnectionClosedException.

 

I actually narrowed it down. What was happening was the blackberry handsets did not like to access the DataInputStream returned from the Connector after the connection was closed. All other handsets don't care if the connection was closed. Instead, I had to write out the DataInputStream to another DataInputStream before the connection was closed so I could access it later.

Please use plain text.