Hi all
I am trying to modify the hello_world sample in cxf
What you modifed? the wsdl?
which I have built using
ANT in order to make some changes to the methods.
I am running "ant build" but the WSDL file in the wsdl folder is not being
updated
If you run
> ant
the default target is 'build' which depend on 'compile' which depend on
'maybe.generate.code' which use the wsdl2java to generate the java code
from the wsdl
So, the hello_world sample is wsdl first, most of the samples use the
wsdl first approach
So, You can not just modify the java code directly (will be overwirted).
If you want to add some methods, you should modify the wsdl first, and
then change the impl, the methods will be added into the SEI automatically
Hope this helps
James
which means the new methods are not accessible.
Is the build.xml file setup to generate WSDL based on the java files and if
so what target should I be using?
Thanks
JArmstrong