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 C01907835 for ; Wed, 17 Aug 2011 08:31:31 +0000 (UTC) Received: (qmail 99841 invoked by uid 500); 17 Aug 2011 08:24:50 -0000 Delivered-To: apmail-cxf-users-archive@cxf.apache.org Received: (qmail 98638 invoked by uid 500); 17 Aug 2011 08:24:05 -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 98253 invoked by uid 99); 17 Aug 2011 08:23:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Aug 2011 08:23:57 +0000 X-ASF-Spam-Status: No, hits=2.4 required=5.0 tests=HTML_FONT_FACE_BAD,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL,TO_NO_BRKTS_PCNT X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [209.85.210.47] (HELO mail-pz0-f47.google.com) (209.85.210.47) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Aug 2011 08:23:48 +0000 Received: by pzk2 with SMTP id 2so901739pzk.34 for ; Wed, 17 Aug 2011 01:23:26 -0700 (PDT) MIME-Version: 1.0 Received: by 10.143.97.28 with SMTP id z28mr349389wfl.46.1313569406434; Wed, 17 Aug 2011 01:23:26 -0700 (PDT) Received: by 10.142.73.20 with HTTP; Wed, 17 Aug 2011 01:23:26 -0700 (PDT) Date: Wed, 17 Aug 2011 10:23:26 +0200 Message-ID: Subject: Making async interfaces manually with annotations etc? From: =?ISO-8859-1?Q?Kent_N=E4rling?= To: users@cxf.apache.org Content-Type: multipart/alternative; boundary=000e0cd25030dbbd1604aaaf3527 --000e0cd25030dbbd1604aaaf3527 Content-Type: text/plain; charset=ISO-8859-1 Hi! We declare our SOAP interfaces in java and then build the WSDL:s from the java code since 99% of our clients are in java and to make it most convenient for them we have decided to follow this path. eg we might have a sample service declared like: @WebService public interface MyService { @WebMethod(operationName = "doSomething") DoSomethingResult doSomething( @WebParam(name = "someParam") String someParam); } Now, we could like to be able to call this using the async way with callbacks, is there some way we can declare this manually with annotations? (ie without generating the code from wsdl) And would it then be possible to JUST declare the callback variations, since we know we won't use the polling approach etc? Thanks /Kent --000e0cd25030dbbd1604aaaf3527--