I made simple SOAP based WS project in MyEclipse10(JEE5).(am new on WS)
CalculatorProject as follows _ first i created Calculator.java
public class Calculator {
public int add(int a, int b) { return (a + b); }
public int subtract(int a, int b) { return (a - b); }
}
After it i created New Web Service (Bottom up scenario) for this java class, which created CalculatorDeleget.java and .wsdl files.
After it created New Web Service Client ,and then i got lots of .java files for ech method from CAlculator + its response file.
after it i created a .jsp(UI) page for input and output_ Calculator.jsp
<%
if (request.getParameter("firstvalue") != null
&& request.getParameter("secondvalue") != null) {
int first = Integer
.parseInt(request.getParameter("firstvalue"));
int second = Integer.parseInt(request
.getParameter("secondvalue"));
CalculatorService service = new CalculatorService();
CalculatorDelegate delegate = service.getCalculatorPort();
out.println("b4 try<br>");
try {
out.println("in try<br>");
/* Using the web service, perform the 4 calculations */
out.println("1. " + first + "+" + second + "="
+ delegate.add(first, second) + "<br>");
System.out.println("--{ "+delegate);
out.println("2. " + first + "-" + second + "="
+ delegate.subtract(first, second) + "<br>");
%>
and i just started to study WS. upto this its working fine but i want xml i/p and xml o/p. what and where i need to implement ? how can i get req. and res. in xml/ raw type?
AT LEAST HINT?
thanx