BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 07-19-2007, 08:50 AM   #1
Rose
Thumbs Must Hurt
 
Rose's Avatar
 
Join Date: Nov 2006
Location: India
Model: 9700
OS: Windows 7
Carrier: Airtel
Posts: 121
Default Regarding BES Connection

Please Login to Remove!

Hi,

Following is a sample code i normally used for performing network operations.. Its working fine in simulator and also for BIS i dont have any problems..But in BES im not getting the connection for a single time. Always its getting failed.

Is anything specially needed to do networking operations on BES.


/*
* TestHttp.java
*/

package TestHttp;

import net.rim.device.api.ui.*;
import net.rim.device.api.ui.component.*;
import net.rim.device.api.ui.container.*;
import net.rim.device.api.i18n.*;
import net.rim.device.api.system.*;
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.io.Connector;
import javax.microedition.io.file.*;

public class TestHttp extends UiApplication {

//constants ----------------------------------------------------------------
private static String SAMPLE_HTTPS_PAGE = "http://www.google.com";
private static String SAMPLE_TCP_PAGE = "http://www.google.com;deviceside=true";


private static final String[] HTTP_PROTOCOL = {"http://", "http:\\", "https://", "https:\\"};
private static final char HTML_TAG_OPEN = '<';
private static final char HTML_TAG_CLOSE = '>';
private static String HEADER_CONTENTTYPE = "content-type";
private static String CONTENTTYPE_TEXTHTML = "text/html";

private static final int STATE_0 = 0;
private static final int STATE_1 = 1;
private static final int STATE_2 = 2;
private static final int STATE_3 = 3;
private static final int STATE_4 = 4;
private static final int STATE_5 = 5;

private static final char CR = 0x000D;
private static final char LF = 0x000A;

//members ------------------------------------------------------------------
private TestHttpScreen _mainScreen;
private EditField _url;
private RichTextField _content;
private CheckboxField useDirectTcpConnection;

//cache the fetch menu item for reuse
private MenuItem _fetchMenuItem = new MenuItem("Fetch ", 100, 10) {
public void run()
{
//don't execute on a blank url.
if ( _url.getText().length() > 0 )
{
fetchPage(_url.getText());
}
}
};
//cache the clear content menu item for reuse
private MenuItem _clearContent = new MenuItem("Clear Content ", 105, 10) {
public void run()
{
_content.setText(" ");
}
};



StatusThread _statusThread = new StatusThread();
ConnectionThread _connectionThread = new ConnectionThread();


public static void main(String[] args)
{
TestHttp theApp = new TestHttp();
theApp.enterEventDispatcher();
}


private class ConnectionThread extends Thread {
private static final int TIMEOUT = 500; //ms

private String _theUrl;

private volatile boolean _start = false;
private volatile boolean _stop = false;

//retrieve the URL
public synchronized String getUrl()
{
return _theUrl;
}

//fetch a page
// synchronized so that i don't miss requests
public void fetch(String url)
{
if ( _start )
{
Dialog.alert("Request in progress ! ");
}
else
{
synchronized(this)
{
if ( _start )
{
Dialog.alert("Request in progress ! ");
}
else
{
_start = true;
_theUrl = url;
}
}
}
}

//shutdown the thread
public void stop()
{
_stop = true;
}

public void run()
{
for(;;)
{
//Thread control
while( !_start && !_stop)
{
//sleep for a bit so we don't spin
try {
sleep(TIMEOUT);
} catch (InterruptedException e) {
System.err.println(e.toString());
}
}
//exit condition
if ( _stop )
{
return;
}
//This entire block is synchronized, this ensures I won't miss fetch requests made while i process a page
synchronized(this)
{
//open the connection and extract the data
StreamConnection s = null;
try {
s = (StreamConnection)Connector.open(getUrl());
HttpConnection httpConn = (HttpConnection)s;

int status = httpConn.getResponseCode();
if (status == HttpConnection.HTTP_OK)
{
//is this html?
String ctype = httpConn.getHeaderField(HEADER_CONTENTTYPE);
String filename = httpConn.getFile();
boolean htmlContent = (ctype != null && ctype.equals(CONTENTTYPE_TEXTHTML));

InputStream input = s.openInputStream();

byte[] data = new byte[256];
int len = 0;
int size = 0;
StringBuffer raw = new StringBuffer();
while ( -1 != (len = input.read(data)) )
{
raw.append(new String(data, 0, len));
size += len;
}

String content = raw.toString();
writeToFile(content.getBytes(),filename);

raw.insert(0, "bytes received]\n");
raw.insert(0, size);
raw.insert(0, '[');

if ( htmlContent )
{
content = prepareData(raw.toString());
}
//The long operation is the parsing above,
// after the parsing is complete, shutdown the status thread
// before setting the text (since both threads modify the content
// pane, we want to make sure we don't have the status thread
// overwriting our data)
stopStatusThread();
updateContent(content);
input.close();
} else {
stopStatusThread();
updateContent("response code = " + status);
}
s.close();

} catch (IOException e) {
System.err.println(e.toString());
stopStatusThread();
updateContent(e.toString());
}
//we're done one connection so reset the start state
_start = false;
}
}
}


private void stopStatusThread()
{
_statusThread.pause();
try {
synchronized(_statusThread)
{
//Check the paused condition, incase the notify fires prior to our wait, in which case we may never see that nofity
while ( !_statusThread.isPaused() );
{
_statusThread.wait();
}
}
} catch (InterruptedException e) {
System.err.println(e.toString());
}
}
}//End of class ConnectionThread

/**
* The StatusThread class manages display of the status message while lengthy HTTP/HTML operations are taking place
*/
private class StatusThread extends Thread {

private static final int INTERVAL = 6;
private static final int TIMEOUT = 500; //ms
private static final int THREAD_TIMEOUT = 500;

private volatile boolean _stop = false;
private volatile boolean _running = false;
private volatile boolean _isPaused = false;

//resume the thread
public void go()
{
_running = true;
_isPaused = false;
}

//pause the thread
public void pause()
{
_running = false;
}

//query the paused status
public boolean isPaused()
{
return _isPaused;
}

//shutdown the thread
public void stop()
{
_stop = true;
}

public void run()
{
int i = 0;
//setup the status messages
String[] statusMsg = new String[6];
StringBuffer status = new StringBuffer("Processing ");
statusMsg[0] = status.toString();
//preincrement improves efficiency
for ( int j = 1; j < 6; ++j)
{
statusMsg[j] = status.append(".").toString();
}

for (;;)
{
while (!_stop && !_running)
{
//sleep a bit so we don't spin
try {
sleep(THREAD_TIMEOUT);
} catch ( InterruptedException e) {
System.err.println(e.toString());
}

}
if ( _stop )
{
return;
}
i = 0;
status.delete(0, status.length()); //clear the status buffer
for ( ;; )
{
//we're not synchronizing on the boolean flag! value is declared volatile therefore
if ( _stop )
{
return;
}
if ( !_running )
{
_isPaused = true;
synchronized(this)
{
this.notify();
}
break;
}

updateContent(statusMsg[++i%6]);

try {
this.sleep(TIMEOUT); //wait for a bit
} catch (InterruptedException e) {
System.err.println(e.toString());
}
}
}
}
}

private class TestHttpScreen extends MainScreen {

protected void makeMenu(Menu menu, int instance) {
menu.add(_fetchMenuItem);
menu.add(_clearContent);
menu.addSeparator();
super.makeMenu(menu, instance);
}

public boolean onClose() {
onExit();
return super.onClose();
}

protected boolean keyChar(char key, int status, int time) {
if ( getLeafFieldWithFocus() == _url && key == Characters.ENTER ){
_fetchMenuItem.run();
return true; //I've absorbed this event, so return true
}
else {
return super.keyChar(key, status, time);
}
}
}//End of class TestHttpScreen


//constructors -------------------------------------------------------------
public TestHttp() {
_mainScreen = new TestHttpScreen();
_mainScreen.setTitle( new LabelField("Test Http ", LabelField.ELLIPSIS | LabelField.USE_ALL_WIDTH));

_url = new EditField("URL: ", null, Integer.MAX_VALUE, EditField.FILTER_URL);
_mainScreen.add(_url);
_url.setText(SAMPLE_HTTPS_PAGE);
_url.setEditable(false);
_mainScreen.add(new SeparatorField());


useDirectTcpConnection = new CheckboxField(" Use TCPConnection ",false,CheckboxField.FOCUSABLE){
protected void fieldChangeNotify(int context){
try{
if(useDirectTcpConnection.getChecked() == true)
_url.setText(SAMPLE_TCP_PAGE);
else
_url.setText(SAMPLE_HTTPS_PAGE);
}
catch(Exception wer){}
}
};

_mainScreen.add(useDirectTcpConnection);
_mainScreen.add(new SeparatorField());


_content = new RichTextField(" ");
_mainScreen.add(_content);

//start the helper threads
_statusThread.start();
_connectionThread.start();

pushScreen(_mainScreen); //push the main screen - a method on the UiApplication class
}

//methods ------------------------------------------------------------------


private void fetchPage(String url) {
//First, normalize the url
String lcase = url.toLowerCase();
boolean validHeader = false;
int i = 0;

// Winding down and comparing to 0 saves instructions.
for (i = HTTP_PROTOCOL.length - 1; i >= 0; --i)
{
if ( -1 != lcase.indexOf(HTTP_PROTOCOL[i]) )
{
validHeader = true;
break;
}
}

if ( !validHeader )
{
url = HTTP_PROTOCOL[0] + url; //prepend the protocol specifier
}


_connectionThread.fetch(url);
_statusThread.go();

}

private void updateContent(final String text){
//This will create significant garbage, but avoids threading issues
// (compared with creating a static Runnable and setting the text)
UiApplication.getUiApplication().invokeLater(new Runnable() {
public void run()
{
_content.setText(text);
}
});
}

private String prepareData(String text)
{
//do some simple operations on the html data

//a simple state machine for removing tags, comments, whitespace and inserting newlines
// for the <p> tag.

final int text_length = text.length();
StringBuffer data = new StringBuffer(text_length);
int state = STATE_0;
int count = 0;
int writeIndex = -1;
char c = (char)0;
//cache the text length and preincrement the counter for
for ( int i = 0; i < text_length; ++i)
{
c = text.charAt(i);
switch ( state )
{
case STATE_0:
if ( c == HTML_TAG_OPEN )
{
++count;
state = STATE_1;
}
else if ( c == ' ' )
{
data.insert(++writeIndex, c);
state = STATE_5;
}
else if ( !specialChar(c) )
{
data.insert(++writeIndex, c);
}
break;
case STATE_1:
if ( c == '!' && text.charAt(i + 1) == '-' && text.charAt(i + 2) == '-' )
{
System.out.println("Entering Comment state");
i += 2;
state = STATE_3;
}
else if ( Character.toLowerCase(c) == 'p' )
{
state = STATE_4;
}
else if ( c == HTML_TAG_CLOSE )
{
--count;
state = STATE_0;
}
else
{
state = STATE_2;
}
break;
case STATE_2:
if ( c == HTML_TAG_OPEN )
{
++count;
}
else if ( c == HTML_TAG_CLOSE )
{
if( --count == 0 )
{
state = STATE_0;
}
}
break;
case STATE_3:
if ( c == '-' && text.charAt(i+1) == '-' && text.charAt(i + 2) == HTML_TAG_CLOSE )
{
--count;
i += 2;
state = STATE_0;
System.out.println("Exiting comment state");
}
break;
case STATE_4:
if ( c == HTML_TAG_CLOSE )
{
--count;
data.insert(++writeIndex, '\n');
state = STATE_0;
}
else
{
state = STATE_1;
}
break;
case STATE_5:
if ( c == HTML_TAG_OPEN )
{
++count;
state = STATE_1;
}
else if ( c != ' ' )
{
state = STATE_0;
if ( !specialChar(c) )
{
data.insert(++writeIndex, c);
}
}
break;
}
}
return data.toString().substring(0, writeIndex + 1);
}

private boolean specialChar(char c)
{
return c == LF || c == CR;
}

protected void onExit()
{
_statusThread.stop();
_connectionThread.stop();
}

}//End of class TestHttp



Any Suggestions regarding this will be welcome.
Offline  
Closed Thread


Thread Tools

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


ESI IMPEDANCE BRIDGE MODEL 250-C1 For Parts Untested picture

ESI IMPEDANCE BRIDGE MODEL 250-C1 For Parts Untested

$65.00



Agilent HP 4192A 5 Hz - 13 MHz LF Impedance Analyzer picture

Agilent HP 4192A 5 Hz - 13 MHz LF Impedance Analyzer

$825.00



General GenRad  Labs 1658 Precision RLC Digibridge Impedance Meter picture

General GenRad Labs 1658 Precision RLC Digibridge Impedance Meter

$350.00



Tenma Audio Impedance Tester 72-6948 picture

Tenma Audio Impedance Tester 72-6948

$64.95



Digital Ohmmeter LCD Audio Impedance Test Meter Speaker Voice Resistor System picture

Digital Ohmmeter LCD Audio Impedance Test Meter Speaker Voice Resistor System

$56.99



TOA ZM-104A Impedance Meter Measures Impedance of Speaker Lines Up to 100k Ohms picture

TOA ZM-104A Impedance Meter Measures Impedance of Speaker Lines Up to 100k Ohms

$59.97







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