I am newbie to blackberry application development. I want to make an HTTPWebRequest to my server for login process with database. SO i am trying to do following:
conn = (HttpConnection) Connector.open("http://url.com/Login.ashx?EmailId=dummy@gmail.com&Password=dummy"); conn.setRequestMethod(HttpConnection.GET); int s= conn.getResponseCode();
but when i am debugging it,i am gettin error on conn.getResponseCode() line. and Eclipse show me following error:
Source Not Found
Please help me to solve this issue. If you can suggest me any better link which explains it clear then it would be best.
Thanks in Advance.