You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by Russell Butek <bu...@us.ibm.com> on 2002/03/28 17:53:09 UTC

Got rid of skeletons? (was: cvs commit: xml-axis/java/test/wsdl/multibinding VerifyFilesTestCase.java)

Uh...  No skeletons is the default?  I know we talked about getting rid of
skeletons (which is goodness), but I thought that would be an OPTION, not
the default.  IBM STILL wants skeletons!  So I hope you add back the code
you excised real soon.

Russell Butek
butek@us.ibm.com
---------------------- Forwarded by Russell Butek/Austin/IBM on 03/28/2002
10:48 AM ---------------------------





gdaniels@apache.org on 03/27/2002 04:58:18 PM

Please respond to axis-dev@xml.apache.org

To:    xml-axis-cvs@apache.org
cc:

Subject:    cvs commit: xml-axis/java/test/wsdl/multibinding
       VerifyFilesTestCase.java




gdaniels    02/03/27 14:58:18

  Modified:    java/src/org/apache/axis/wsdl/toJava Emitter.java
               java/test/wsdl Wsdl2javaAntTask.java
               java/test/wsdl/clash VerifyFilesTestCase.java
               java/test/wsdl/multibinding VerifyFilesTestCase.java
  Log:
  Throw the big switch.

  Skeletons are no longer created by default.

  NOTE that right now the code which uses the skeleton methods to get
  the param names/types etc has been excised.  My next step is to add
  that back in as part of the ServiceDesc introspection process, so we'll
  still support the old deployment syntax + skeletons.

  Revision  Changes    Path
  1.29      +1 -1
  xml-axis/java/src/org/apache/axis/wsdl/toJava/Emitter.java

  Index: Emitter.java
  ===================================================================
  RCS file:
  /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/toJava/Emitter.java,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- Emitter.java      22 Mar 2002 17:21:25 -0000    1.28
  +++ Emitter.java      27 Mar 2002 22:58:17 -0000    1.29
  @@ -109,7 +109,7 @@
       protected Definition def = null;
       protected boolean bDebug = false;
       protected boolean bEmitServer = false;
  -    protected boolean bDeploySkeleton = true;
  +    protected boolean bDeploySkeleton = false;
       protected boolean bEmitTestCase = false;
       protected boolean bVerbose = false;
       protected boolean bGenerateImports = true;



  1.24      +1 -1      xml-axis/java/test/wsdl/Wsdl2javaAntTask.java

  Index: Wsdl2javaAntTask.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/Wsdl2javaAntTask.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- Wsdl2javaAntTask.java   22 Mar 2002 17:21:25 -0000    1.23
  +++ Wsdl2javaAntTask.java   27 Mar 2002 22:58:17 -0000    1.24
  @@ -77,7 +77,7 @@
   {
       private boolean verbose = false;
       private boolean server = false;
  -    private boolean skeletonDeploy = true;
  +    private boolean skeletonDeploy = false;
       private boolean testCase = false;
       private boolean noImports = false;
       private boolean all = false;



  1.5       +0 -2
  xml-axis/java/test/wsdl/clash/VerifyFilesTestCase.java

  Index: VerifyFilesTestCase.java
  ===================================================================
  RCS file:
  /home/cvs/xml-axis/java/test/wsdl/clash/VerifyFilesTestCase.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- VerifyFilesTestCase.java      22 Mar 2002 14:38:45 -0000    1.4
  +++ VerifyFilesTestCase.java      27 Mar 2002 22:58:18 -0000    1.5
  @@ -77,10 +77,8 @@
       protected Set shouldExist() {
           HashSet set = new HashSet();
           set.add("AnotherNonSharedNameImpl.java");
  -        set.add("AnotherNonSharedNameSkeleton.java");
           set.add("AnotherNonSharedNameStub.java");
           set.add("NonSharedNameImpl.java");
  -        set.add("NonSharedNameSkeleton.java");
           set.add("NonSharedNameStub.java");
           set.add("SharedName_Port.java");
           set.add("SharedName_Service.java");



  1.3       +0 -3
  xml-axis/java/test/wsdl/multibinding/VerifyFilesTestCase.java

  Index: VerifyFilesTestCase.java
  ===================================================================
  RCS file:
  /home/cvs/xml-axis/java/test/wsdl/multibinding/VerifyFilesTestCase.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- VerifyFilesTestCase.java      5 Feb 2002 16:22:40 -0000     1.2
  +++ VerifyFilesTestCase.java      27 Mar 2002 22:58:18 -0000    1.3
  @@ -78,14 +78,11 @@
           HashSet set = new HashSet();
           set.add("BindingAllLit.java");
           set.add("BindingAllLitImpl.java");
  -        set.add("BindingAllLitSkeleton.java");
           set.add("BindingAllLitStub.java");
           set.add("BindingNoLitImpl.java");
  -        set.add("BindingNoLitSkeleton.java");
           set.add("BindingNoLitStub.java");
           set.add("BindingSomeLit.java");
           set.add("BindingSomeLitImpl.java");
  -        set.add("BindingSomeLitSkeleton.java");
           set.add("BindingSomeLitStub.java");
           set.add("MbPT.java");
           set.add("MbService.java");