I am currently working on a project in j2me with webservice.I just have to get the details and store it in java webservice.I just need to get the details from textbox and save it in database using webservice.I dont understand what is the error in url.But I am getting error.My code is
public class DialogBoxData {
private HttpConnection httpConn = null;
private InputStream is;
OutputStream os = null;
private StringBuffer sbs;
public String status;
String url=null;
public DialogBoxData() {
}
public String PushToServer(String companyId, String NoofCheques_Wb, String Amount_Wb, String Comments_Wb, String SlipRefNo_Wb, String Image_Wb) throws IOException {
url = "http://chennai.gsr-inc.com:8096/MobileBanking/RegisterChequeInfoServlet?companyId= " + companyId + "&no_chq= " + NoofCheques_Wb + "&amt_= " + Amount_Wb + "&comnt= " + Comments_Wb + "&slip_referrence= " + SlipRefNo_Wb + "&cImage= " + Image_Wb + "";
//String url ="http://chennai.gsr-inc.com:8096/MobileBanking/RegisterChequeInfoServlet?companyId=" + "" + "&no_chq =" + "" + "&amt_=" + "" + "&comnt=" + "" + "&slip_referrence=" + "" + "&cImage=" + "";
System.out.println("&&&&&&&&" + url);
try {
System.out.println("================");
httpConn = (HttpConnection) Connector.open(url.trim());
System.out.println("================" + url);
httpConn.setRequestMethod(HttpConnection.POST);
httpConn.setRequestProperty("User-Agent", "Profile/MIDP-1.0 Confirguration/CLDC-1.0");
httpConn.setRequestProperty("Accept_Language", "en-US");
httpConn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
getConnectionInformation(httpConn);
os = httpConn.openOutputStream();
os.flush();
sbs = new StringBuffer();
is = httpConn.openDataInputStream();
System.out.println("&&&&&&&&" + is);
int chr;
while ((chr = is.read()) != -1) {
sbs.append((char) chr);
}
System.out.println("&&&&&&&&" + sbs);
} finally {
if (is != null) {
is.close();
}
if (os != null) {
os.close();
}
if (httpConn != null) {
httpConn.close();
}
}
return sbs.toString();
}
public void getConnectionInformation(HttpConnection hc) {
System.out.println("Request Method for this connection is " + hc.getRequestMethod());
System.out.println("URL in this connection is " + hc.getURL());
System.out.println("Protocol for this connection is " + hc.getProtocol()); // It better be HTTP:)
System.out.println("This object is connected to " + hc.getHost() + " host");
System.out.println("HTTP Port in use is " + hc.getPort());
System.out.println("Query parameter in this request are " + hc.getQuery());
}
}
I am getting error as
java.lang.IllegalArgumentException: Space character in URL
at com.sun.midp.io.HttpUrl.parseAfterScheme(), bci=47
at com.sun.midp.io.HttpUrl.<init>(), bci=33
at com.sun.midp.io.j2me.http.Protocol.openPrim(), bci=15
at javax.microedition.io.Connector.openPrim(), bci=327
at javax.microedition.io.Connector.open(), bci=3
at javax.microedition.io.Connector.open(), bci=3
at javax.microedition.io.Connector.open(), bci=2
at com.gsr.server.DialogBoxData.PushToServer(DialogBoxData.java:48)
at com.gsr.dialogbox.DialogBox.actionPerformed(DialogBox.java:106)
at com.sun.lwuit.util.EventDispatcher.fireActionSync(), bci=19
at com.sun.lwuit.util.EventDispatcher.fireActionEvent(EventDispatcher.java:214)
at com.sun.lwuit.Form.actionCommandImpl(Form.java:1257)
at com.sun.lwuit.Form.actionCommandImpl(Form.java:1232)
at com.sun.lwuit.Form$MenuBar.actionPerformed(Form.java:2757)
at com.sun.lwuit.util.EventDispatcher.fireActionSync(), bci=19
at com.sun.lwuit.util.EventDispatcher.fireActionEvent(EventDispatcher.java:214)
at com.sun.lwuit.Button.fireActionEvent(Button.java:273)
at com.sun.lwuit.Button.released(Button.java:294)
at com.sun.lwuit.Button.pointerReleased(Button.java:364)
at com.sun.lwuit.Form.pointerReleased(), bci=60
at com.sun.lwuit.Dialog.pointerReleased(Dialog.java:1059)
at com.sun.lwuit.Component.pointerReleased(Component.java:1712)
at com.sun.lwuit.Display.handleEvent(), bci=125
at com.sun.lwuit.Display.edtLoopImpl(Display.java:667)
at com.sun.lwuit.Display.invokeAndBlock(Display.java:789)
at com.sun.lwuit.Form.showModal(Form.java:1462)
at com.sun.lwuit.Form.showDialog(Form.java:1489)
at com.sun.lwuit.Form.showModal(Form.java:1476)
at com.sun.lwuit.Dialog.showImpl(Dialog.java:705)
at com.sun.lwuit.Dialog.show(Dialog.java:689)
at com.gsr.server.EntryFormdata.callDialog(), bci=187
at com.gsr.server.EntryFormdata.EntryFormMethod(EntryFormdata.java:93)
at com.gsr.form.Data.actionPerformed(Data.java:141)
at com.sun.lwuit.util.EventDispatcher.fireActionSync(), bci=19
at com.sun.lwuit.util.EventDispatcher.fireActionEvent(EventDispatcher.java:214)
at com.sun.lwuit.Form.actionCommandImpl(Form.java:1257)
at com.sun.lwuit.Form.actionCommandImpl(Form.java:1232)
at com.sun.lwuit.Form$MenuBar.actionPerformed(Form.java:2757)
I dont understand what space character in url error.can anyone pls help me??