Hi,
Below there is the code that causes my 7650 throwing a strange exception (while everithing is OK on the emulator).
The exception code -20015 is not documented on the Symbian error code chart (http://www.symbian.com/developer/tec.../Erresapi.html).
The strange thing is that the same code worked fine until last weeks!!!
Maybe my Service Provider has changed something on the gateway that causes this problem???
Thanks.
try{
HttpConnection c = null;
InputStream is = null;
try {
c = (HttpConnection) Connector.open(s, Connector.READ, true);
is = c.openInputStream();
}
catch (Exception e){
myForm.append("Error catched : " + e.getMessage() +"\n");
}

Reply With Quote

