Return-Path: X-Original-To: apmail-cxf-dev-archive@www.apache.org Delivered-To: apmail-cxf-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D4B7817FD3 for ; Tue, 6 Oct 2015 12:50:37 +0000 (UTC) Received: (qmail 63167 invoked by uid 500); 6 Oct 2015 12:50:31 -0000 Delivered-To: apmail-cxf-dev-archive@cxf.apache.org Received: (qmail 63103 invoked by uid 500); 6 Oct 2015 12:50:31 -0000 Mailing-List: contact dev-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list dev@cxf.apache.org Received: (qmail 63090 invoked by uid 99); 6 Oct 2015 12:50:31 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2015 12:50:31 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id B9B3F1A2103 for ; Tue, 6 Oct 2015 12:50:30 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 2.314 X-Spam-Level: ** X-Spam-Status: No, score=2.314 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, URIBL_BLOCKED=0.001, URI_HEX=1.313] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id LhHQtzbL1cyr for ; Tue, 6 Oct 2015 12:50:22 +0000 (UTC) Received: from mbob.nabble.com (mbob.nabble.com [162.253.133.15]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTP id 3D8A7439E9 for ; Tue, 6 Oct 2015 12:50:22 +0000 (UTC) Received: from msam.nabble.com (unknown [162.253.133.85]) by mbob.nabble.com (Postfix) with ESMTP id B84D11712E7B for ; Tue, 6 Oct 2015 05:43:09 -0700 (PDT) Date: Tue, 6 Oct 2015 05:50:21 -0700 (MST) From: "Felix.1973" To: dev@cxf.apache.org Message-ID: <1444135821700-5761489.post@n5.nabble.com> In-Reply-To: <1444118372677-5761481.post@n5.nabble.com> References: <1444118372677-5761481.post@n5.nabble.com> Subject: Re: CXF web service issue when using @WebParam (header=true) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I found the problem. Well, I tried something mad and it works. I put the 3 header parameters at the end, and then it works ! I find this very strange. Why can't I put them on the beginning ? Is it maybe a WebLogic problem ? Am I using old CXF classes with a bug ? Very strange but happy it is fixed now ! @WebResult (name="merchantHierarchyParentResponse") MerchantHierarchyParentResponseDTO getParent( @WebParam(name="institutionNumber") @XmlElement(required=true) String institutionNumber, @WebParam(name="clientNumber") String clientNumber, @WebParam(name="ourReference") String ourReference, @WebParam(name="accessMerch") String accessMerch, @WebParam(header=true, name="callerId") String callerId, @WebParam(header=true, name="timestamp") String timestamp, @WebParam(header=true, name="signature") String signature ); -- View this message in context: http://cxf.547215.n5.nabble.com/CXF-web-service-issue-when-using-WebParam-header-true-tp5761481p5761489.html Sent from the cxf-dev mailing list archive at Nabble.com.