I'd recommend using Maven for your builds, relegating Eclipse to purely a text editor. Web services are easy/pleasant way to become familiar with this very useful tool if you aren't yet. My web service tutorial (which includes logging in the pom.xml) is here: http://www.jroller.com/gmazza/entry/soap_client_tutorial.

Don't worry too much about whether what you're learning is Spring or not; it's all Java code, you have to learn something here in order to do something, and at least with the former you're picking up something used in many other places. For my Apache Roller-based blog, I had to learn some strange templating language in order to do the right-side menu items, it was only much later I realized that "strange templating language" was just Apache Velocity. Cool! I learned a portable skill...

Glen

On 10/29/2012 06:00 AM, becam wrote:
here the link
http://cxf.apache.org/docs/configuration.html

I don't have a web app. I developepd a stand alone client.  here the basic
code:

rivate static final QName SERVICE_NAME = new
QName("http://thecompany/service-b";, "myendpoint-v1");

private  myendpointPortType port ;

public ClientMHttps() throws java.lang.Exception {
     URL wsdlURL = myendpointV1.WSDL_LOCATION;

     myendpointV1 ss = new myendpointV1(wsdlURL, SERVICE_NAME);
     port = ss.getmyendpointPortTypeEndpointHttpsM();




}

     public DeleteMarkedStatusResponse
do_DeleteMarkedStatus(DeleteMarkedStatusRequest  _deleteMarkedStatus_body)
throws java.lang.Exception
     {
     System.out.println("Invoking deleteMarkedStatus...");
     javax.xml.ws.Holder<HeaderType> _header =  this.HeaderFarm();
     DeleteMarkedStatusResponse _deleteMarkedStatus__return =
port.deleteMarkedStatus(_deleteMarkedStatus_body, _header);
     System.out.println("deleteMarkedStatus.result=" +
_deleteMarkedStatus__return);
     return _deleteMarkedStatus__return;


     }

looking at xcf don't seems that is mandatory use spring... Anyway I tried
different configurations but still not able to log soap messages.



--
View this message in context: 
http://cxf.547215.n5.nabble.com/Cannog-loggin-soap-messages-in-client-side-tp5717499p5717517.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

Reply via email to