Reputation: 2628
I am getting "no ":" in url blackberry" exception when I try to hit web service.
My url is like "http://url/MobileWrapper/action_name.do"
String redemptionUrl = "http://test.TTMF.com/MobileWrapper/reconfirm.do";
HttpConnection httpConn = null; DataOutputStream dataOS = null;
redemptionUrl = redemptionUrl+ ";deviceside=true";
httpConn = (HttpConnection) Connector.open(redemptionUrl);
Upvotes: 0
Views: 275
Reputation: 3674
Check your generated URL. It must be an invalid URL. Do debug or System.out.print(..)
.
To make a connection you have to do some common tasks, such as
Upvotes: 2