DoubleItService and DoubleItPortType are classes auto-generated when you
run the CXF WSDLtoJava utility
(https://cwiki.apache.org/CXF20DOC/wsdl-to-java.html) on the original
tutorial's WSDL
(http://www.jroller.com/gmazza/entry/web_service_tutorial#WFstep4).
They point to the wsdl:service and wsdl:portType elements of the
underlying WSDL, and derive their names from the name attribute values
on those two elements. When you run your own WSDL through CXF's
WSDLtoJava utility, you'll see corresponding classes generated (with
different names). My basic WSDL-first tutorial
(http://www.jroller.com/gmazza/entry/web_service_tutorial) explains more.
If you're doing Java-first development, I'm not sure of the equivalent
way to read/write parameters. Hopefully someone else can help.
Regards,
Glen
On 02/06/2012 03:52 AM, chimaira wrote:
Hi,
Thanks for replay, I saw the example .
The guy puts the value of MAX_VALUE this way :
DoubleItService service = new DoubleItService();
DoubleItPortType port = service.getDoubleItPort();
((BindingProvider) port).getRequestContext().put("MAX_VALUE", "200");
There is no information on what DoubleItService() and DoubleItPortType()
are. don 't know how to performe that.
any idea ?
Thanks
--
View this message in context:
http://cxf.547215.n5.nabble.com/How-to-Stor-Get-data-in-CXF-Session-tp5454096p5459593.html
Sent from the cxf-user mailing list archive at Nabble.com.
--
Glen Mazza
Talend Community Coders - coders.talend.com
blog: www.jroller.com/gmazza