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 D121717370 for ; Thu, 4 Jun 2015 12:20:46 +0000 (UTC) Received: (qmail 8091 invoked by uid 500); 4 Jun 2015 12:20:46 -0000 Delivered-To: apmail-cxf-dev-archive@cxf.apache.org Received: (qmail 8028 invoked by uid 500); 4 Jun 2015 12:20:46 -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 Delivered-To: moderator for dev@cxf.apache.org Received: (qmail 30437 invoked by uid 99); 3 Jun 2015 20:47:57 -0000 X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 4.537 X-Spam-Level: **** X-Spam-Status: No, score=4.537 tagged_above=-999 required=6.31 tests=[DKIM_ADSP_CUSTOM_MED=0.001, FREEMAIL_ENVFROM_END_DIGIT=0.25, KAM_ASCII_DIVIDERS=0.8, NML_ADSP_CUSTOM_MED=1.2, SPF_SOFTFAIL=0.972, URIBL_BLOCKED=0.001, URI_HEX=1.313] autolearn=disabled Date: Wed, 3 Jun 2015 13:47:49 -0700 (MST) From: yabidoo To: dev@cxf.apache.org Message-ID: <1433364469616-5757950.post@n5.nabble.com> Subject: cxf wsdl2java util doesn't generate one big stub java file as axis MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cxf wsdl2java util doesn't generate one big stub java file as axis; Instead it generates hundreds java files and corresponding folders tree. here is the example: Currently it genetes following # of java files. by using cxf util command: >wsdl2java -client -d c:\tmp http://host:8080/XXXdir?wsdl I am not listing the wsdl here since I can generate files without any issue, although I prefer it only creates one big one as axis did. com pex service AccountDetailDescription.java AccountDetailDescriptionE.java messaging ABC.java EFG.java I'd like to have this axis generated big one java file, such as below one. ------------------------------- begin ---------------------------------------------------- package com.pex.service; /** * ApoServiceStub.java * * This file was auto-generated from WSDL * by the Apache Axis2 version: 1.4.1 Built on : Aug 13, 2008 (05:03:35 LKT) */ import com.pex.service.ApoServiceStub.AccountDetailDescription; import com.pex.service.ApoServiceStub.AccountDetailDescriptionE; import com.pex.messaging.ABC; import com.pex.messaging.EFG; ... public class ApolloServiceStub extends org.apache.axis2.client.Stub { public static class AccountDetailDescription { ... } public static class AccountDetailDescriptionE { ... } public static class ABC { ... } public static class EFG { ... } ... } ---------------------------- end --------------------------------------------------- -- View this message in context: http://cxf.547215.n5.nabble.com/cxf-wsdl2java-util-doesn-t-generate-one-big-stub-java-file-as-axis-tp5757950.html Sent from the cxf-dev mailing list archive at Nabble.com.