Return-Path: X-Original-To: apmail-cxf-users-archive@www.apache.org Delivered-To: apmail-cxf-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 92EA5DE9C for ; Mon, 29 Oct 2012 10:08:40 +0000 (UTC) Received: (qmail 68120 invoked by uid 500); 29 Oct 2012 10:08:28 -0000 Delivered-To: apmail-cxf-users-archive@cxf.apache.org Received: (qmail 65878 invoked by uid 500); 29 Oct 2012 10:08:20 -0000 Mailing-List: contact users-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@cxf.apache.org Delivered-To: mailing list users@cxf.apache.org Received: (qmail 56666 invoked by uid 99); 29 Oct 2012 10:01:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Oct 2012 10:01:27 +0000 X-ASF-Spam-Status: No, hits=2.2 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT,SPF_NEUTRAL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: 216.139.236.26 is neither permitted nor denied by domain of rorru71@gmail.com) Received: from [216.139.236.26] (HELO sam.nabble.com) (216.139.236.26) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Oct 2012 10:01:18 +0000 Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1TSm9R-0007f5-TT for users@cxf.apache.org; Mon, 29 Oct 2012 03:00:57 -0700 Date: Mon, 29 Oct 2012 03:00:57 -0700 (PDT) From: becam To: users@cxf.apache.org Message-ID: <1351504856621-5717517.post@n5.nabble.com> In-Reply-To: References: <1351425551040-5717499.post@n5.nabble.com> Subject: Re: Cannog loggin soap messages in client side MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org 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 _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.