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 sa...@apache.org on 2006/11/12 03:10:21 UTC

svn commit: r473845 - /webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java

Author: sandakith
Date: Sat Nov 11 18:10:21 2006
New Revision: 473845

URL: http://svn.apache.org/viewvc?view=rev&rev=473845
Log:
fix AXIS2-1493, Now the service name specified through the code generator wizard is used for the WSDL which is generated.

Modified:
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java?view=diff&rev=473845&r1=473844&r2=473845
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java Sat Nov 11 18:10:21 2006
@@ -385,6 +385,10 @@
                     optionsMap.put(SCHEMA_TARGET_NAMESPACE_OPTION,option);
                     
                     option = new Java2WSDLCommandLineOption(
+                    		SERVICE_NAME_OPTION,new String[]{java2wsdlOptionsPage.getServiceName()});
+                    optionsMap.put(SERVICE_NAME_OPTION,option);
+                    
+                    option = new Java2WSDLCommandLineOption(
                     		SCHEMA_TARGET_NAMESPACE_PREFIX_OPTION,
                     		new String[]{java2wsdlOptionsPage.getSchemaTargetNamespacePrefix()});
                     optionsMap.put(SCHEMA_TARGET_NAMESPACE_PREFIX_OPTION,option);
@@ -396,7 +400,6 @@
                     option = new Java2WSDLCommandLineOption(
                     		OUTPUT_FILENAME_OPTION,new String[]{java2wsdlOutputLocationPage.getOutputWSDLName()});
                     optionsMap.put(OUTPUT_FILENAME_OPTION,option);
-                    
                     
                     monitor.worked(1);
                     



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org