Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am stuck with this Exception. I am creating web service which will take coutry name as input and return the capital. All the data is in my local data base. With out using web service I am getting results fine. Now When I am using web service I am not able to do it. I used Axis2 to generate WSDL.

This is the code at Which I used to generate WSDL

conn = DriverManager.getConnection("jdbc:mysql://localhost/test","root", "");
        System.out.println("Database connection established");          
        String query1 ="SELECT  UNCODE,CAPITAL FROM test.FAODB WHERE COUNTRYNAME ='"+countryName +"'";
        statement = (PreparedStatement) conn.prepareStatement(query1);
        results = statement.executeQuery(query1);   
        if(results.next() == true)
        {
        str[0] = results.getString("CAPITAL");
        str[1]= results.getString("UNCODE");
        }

    }catch (SQLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (ClassNotFoundException e) {        
        e.printStackTrace();
    }
    return str;

Body of my jsp file is

<body>
<H1 align="center"> Capital and UnCode Details</H1><BR>
<%
String countryName= request.getParameter("CountryName");
System.out.println(countryName);
DbStub stub = new DbStub();
System.out.println("1");
DbStub.UnCodeCapitalRetrival ucr = new DbStub.UnCodeCapitalRetrival(); //exception    is     here
System.out.println("2");
ucr.setCountryName(countryName);
System.out.println("3");
DbStub.UnCodeCapitalRetrivalResponse result = stub.unCodeCapitalRetrival(ucr);
System.out.println("4");
out.println(result.get_return().toString());
%>
</body>

Here is the console trace:

India
1
2
3
 Database connection established
 Oct 19, 2011 1:10:31 PM org.apache.catalina.core.StandardWrapperValve invoke
 SEVERE: Servlet.service() for servlet [jsp] in context with path [/MyClient] threw   exception [An exception occurred processing JSP page /JSP/capitalUnCode.jsp at line 21

 18: System.out.println("2");
 19: ucr.setCountryName(countryName);
 20: System.out.println("3");
 21: DbStub.UnCodeCapitalRetrivalResponse result = stub.unCodeCapitalRetrival(ucr);
 22: System.out.println("4");
 23: out.println(result.get_return().toString());
 24: %>




 Stacktrace:] with root cause
 org.apache.axis2.databinding.ADBException: Unexpected subelement {http://        schemas.xmlsoap.org/soap/envelope/}Body
    at org.apache.ws.axis2.DbStub$UnCodeCapitalRetrivalResponse$Factory.parse   (DbStub.java:1433)
at org.apache.ws.axis2.DbStub.fromOM(DbStub.java:1539)
at org.apache.ws.axis2.DbStub.unCodeCapitalRetrival(DbStub.java:200)
at org.apache.jsp.JSP.capitalUnCode_jsp._jspService(capitalUnCode_jsp.java:82)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:433)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:389)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:333)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:304)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:224)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:185)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:151)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:100)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:929)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:405)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:269)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:515)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:302)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Please help me.

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.