BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 12-13-2009, 12:38 AM   #1
dlpbbdev
New Member
 
Join Date: Nov 2009
Model: none
PIN: N/A
Carrier: none
Posts: 10
Default Http Posting to URL using WAP from various carriers

Please Login to Remove!

Pulling my hair out!

I have a simple app that Http Posts to a url. Works using BES, but it doesn't for people not on BES servers - just the average BB owner using Verizon, for example.

I have looked in many threads on many forums. Lots of suggestions. None work.

Do I NEED the WapGatewayIP/WapGatewayPort appendings to the url? If so, what are they SPECIFICALLY for Verizon? I seem to be making a connection, but when I open an inputstream from the connection, it gives me an exception after a time out.

Code:

Code:
HttpConnection connection = factory.getNextConnection();
try {
	connection.setRequestMethod( "POST" );
    	connection.setRequestProperty( "Content-type","application/x-www-form-urlencoded" );
    	os = connection.openOutputStream( );
    	os.write( getPostString(email, password).getBytes() );
    	os.close();
    	is = connection.openInputStream();
    	//do something with the input stream
	int len = (int)connection.getLength();
        byte[] b = new byte[4096];
    	for (int n; (n = is.read(b)) != -1;) {
    		System.out.println("(ResultInterface(post)2): IN is.read loop - n = ["+n+"]");
    	        sb.append(new String(b, 0, n));
    	}
    	break;
}
Also, where I set the appendings to the url:

Code:
if ("T-Mobile".equalsIgnoreCase(networkName)) {
	extraParams = ";WapGatewayIP=216.155.165.5;WapGatewayAPN=wap.voicestream.com;WapGatewayPort=9201";
} else if ("Verizon Wireless".equalsIgnoreCase(networkName)) {
	extraParams = ";WapGatewayIP=12.168.70.74;WapGatewayPort=9201;retrynocontext=true;ConnectionSetup=delayed";
} else if ("Cingular".equalsIgnoreCase(networkName)) {
	extraParams = ";WapGatewayIP=66.209.11.61;WapGatewayPort=9203";
} else if ("Nextel".equalsIgnoreCase(networkName)) {
	extraParams = ";WapGatewayIP=10.1.26.207;WapGatewayPort=19781";
} else {
	extraParams = "";
}

Am I even in the ballpark?
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Vintage NASA Tektronix Slide-In 3A1 Dual Trace Amplifier - Untested picture

Vintage NASA Tektronix Slide-In 3A1 Dual Trace Amplifier - Untested

$49.99



Vintage American Optical Sixty microscope  picture

Vintage American Optical Sixty microscope

$16.99



VINTAGE ALLIS CHALMERS TRACTOR HITCH SWAY BLOCKS, LEFT AND RIGHT, AM5547, AM5548 picture

VINTAGE ALLIS CHALMERS TRACTOR HITCH SWAY BLOCKS, LEFT AND RIGHT, AM5547, AM5548

$155.85



15/16

15/16" Impact Socket, Vintage Bonney 1/2" Drive 12-point SAE Model A30

$7.95



VINTAGE  IC TESTER - Integrated circuit TESTER picture

VINTAGE IC TESTER - Integrated circuit TESTER

$129.99



Vintage WERNICKE Wood Stationary Cabinet Brass Knobs Desktop Storage Lawyer picture

Vintage WERNICKE Wood Stationary Cabinet Brass Knobs Desktop Storage Lawyer

$75.00







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.