BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 05-05-2009, 09:01 AM   #1
v2vboni
New Member
 
Join Date: May 2009
Model: 7100T
PIN: N/A
Carrier: VIVA
Posts: 1
Default HELP on SOAP HTTP post

Please Login to Remove!

Guys, I'm new to programming but I have given a tasked about HTTP post with SOAP.


Currently I have this web service to use:


POST /admin/mmwlapi/webmm.asmx/RegWebMMToken HTTP/1.1
Host: 217.69.181.57
Content-Type: application/x-www-form-urlencoded
Content-Length: length

token=string&msisdn=string&timeout=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<MmwlApiResult xmlns="the http address">
<ErrorCode>int</ErrorCode>
<Result>string</Result>
</MmwlApiResult>



Now I have this CODE:


@Jpf.Action(forwards = {
@Jpf.Forward(name = "success",
path = "cmm_Main.jsp")
}
)
protected Forward begin()
{


Customer customer = (Customer)getRequest().getSession().getAttribute(" customer");
getRequest().getSession().setAttribute("MSISDN",cu stomer.getMSISDN());
//getRequest().getSession().setAttribute("MSISDN",cu stomer.getMSISDN().substring(3));




//msisdn
//String sMobileMM = (String)getRequest().getSession().getAttribute("Mo bileMM");
String sMobileMM = "96566363909";
String eMobileMM1 = CustomerCodeEncryption.encrypt(sMobileMM);
getRequest().getSession().setAttribute("eMobileMM" ,eMobileMM1);

//token
String sToken = (String)getRequest().getSession().getAttribute("eM obileMM");
String eToken1 = CustomerCodeEncryption.encrypt(sToken);
getRequest().getSession().setAttribute("eToken",eT oken1);


try
{

System.out.println("Signing in...");


URL url = new URL("The http URL address/RegWebMMToken?token=<%=session.getAttribute("eToke n")%>&msisdn=<%=session.getAttribute("eMobileWMM") %>&timeout=30&lang=<%=session.getAttribute("LOCALE ")%>");
URLConnection urlc = url.openConnection();
urlc.setRequestProperty("Content-Type","text/xml");
urlc.setDoOutput(true);
urlc.setDoInput(true);
System.out.println("Getting output stream\n");
PrintWriter pw = new PrintWriter(urlc.getOutputStream());
System.out.println("request sent\n");
urlc.connect();


BufferedReader in = new BufferedReader(new InputStreamReader(urlc.getInputStream()));
String inputLine;
String str = new String();

//Parse response. If no error, should return boolean true
while ((inputLine = in.readLine()) != null) {
//System.out.println(inputLine);
str += inputLine;
}

System.out.println(str);

}

catch (Exception e) {
System.out.println("Error: "+e.getMessage());
e.printStackTrace();
}

return new Forward("success");
}

}



I want to get the result from the HTTP post if the result is success or not If success I want to forward it to cmm_Main.jsp page.


How can I correct my code here.. .Please help


thank you.l
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


Radio Frequency Systems RFC Celwave Miniplexer 7660-1 Freq Hi 458.750 Low 453.75 picture

Radio Frequency Systems RFC Celwave Miniplexer 7660-1 Freq Hi 458.750 Low 453.75

$196.95



DIY FM Radio Electronic Kit Frequency 87-108MHz DIYPractice Solder RDA5807S picture

DIY FM Radio Electronic Kit Frequency 87-108MHz DIYPractice Solder RDA5807S

$16.67



VNUS Medical Technologies Radio Frequency Generator RFG2 Version 4.4.0 picture

VNUS Medical Technologies Radio Frequency Generator RFG2 Version 4.4.0

$2500.00



Radio Frequency System RFE4000A Tuned TX 461.4375 RX 466.4375 picture

Radio Frequency System RFE4000A Tuned TX 461.4375 RX 466.4375

$150.00



Radio Frequency Systems TRIM TOOL-LCF12-D01-A picture

Radio Frequency Systems TRIM TOOL-LCF12-D01-A

$199.99



BALLUFF BIS C-6002-019-650-03-ST11 RADIO FREQUENCY ID SYSTEM PROCESSOR picture

BALLUFF BIS C-6002-019-650-03-ST11 RADIO FREQUENCY ID SYSTEM PROCESSOR

$499.99







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