View Single Post
  (#3 (permalink)) Old
abhsax1978@hotmail.com Offline
Thumbs Must Hurt
 
abhsax1978@hotmail.com's Avatar
 
Posts: 80
Join Date: Jun 2008
Location: NOIDA
Model: 8100
OS: 4.2.1.91
PIN: 2052AEF9
Carrier: Soft. Engg.
Default 07-22-2008, 04:47 AM

My Code starts in a new thread.
and this is my first screen.
The error you have mention came, but on the line :
status=http.getResponseCode();
but after putting in the thread, was removed.
Code:
MenuItem miCon = new MenuItem("Connect", 110, 10) {

        public void run() {

            Runnable r = new Runnable() {

                public void run() {
                    connect();
                }
            };
            Thread th = new Thread(r);
            th.start();
        }
    };
The error that now comes (using sideKick1=;wapgatewayip=206.51.26.197;wapgatewaypo rt=19631;wapgatewayapn=blackberry.net;deviceside=t rue;tunnelauthpassword='';tunnelauthusername='') is:
Malformed URl Exception
   
Reply With Quote