JBossWS SVN: r5515 - in stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src: main/java/org/jboss/ws/tools/helpers and 5 other directories.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-01-23 06:52:05 -0500 (Wed, 23 Jan 2008)
New Revision: 5515
Added:
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1873/
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1873/JBWS1873TestCase.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupRequest.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupResponseResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/Person.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook.wsdl
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook_PortType.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/TelephoneNumber.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/jaxrpc-mapping.xml
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/wstools-config.xml
Removed:
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1873/JBWS1873TestCase.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupRequest.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupResponseResponse.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/Person.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook.wsdl
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook_PortType.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/TelephoneNumber.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/jaxrpc-mapping.xml
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/wstools-config.xml
Modified:
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/WSDLToJava.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/helpers/MappingFileGeneratorHelper.java
Log:
[JBWS-1963] WSDL to Java - Incorrect case of generated type for anonymous type.
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/WSDLToJava.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/WSDLToJava.java 2008-01-23 11:49:29 UTC (rev 5514)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/WSDLToJava.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -555,7 +555,7 @@
XSElementDeclaration element = (XSElementDeclaration)term;
XSTypeDefinition type = element.getTypeDefinition();
- String tempContainingElement = containingElement + element.getName();
+ String tempContainingElement = containingElement + ToolsUtils.firstLetterUpperCase(element.getName());
QName xmlType = null;
if (type.getAnonymous() == false)
@@ -711,7 +711,7 @@
if (unwrapper.xmlType != null)
xmlType = unwrapper.xmlType;
- containingElement = containingElement + unwrapper.unwrappedElement.getName();
+ containingElement = containingElement + ToolsUtils.firstLetterUpperCase(unwrapper.unwrappedElement.getName());
if (unwrapper.array)
arraySuffix = "[]";
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/helpers/MappingFileGeneratorHelper.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/helpers/MappingFileGeneratorHelper.java 2008-01-23 11:49:29 UTC (rev 5514)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/helpers/MappingFileGeneratorHelper.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -298,7 +298,7 @@
xt = element.getTypeDefinition();
primitive = unwrapper.primitive;
partName = element.getName();
- containingElement = containingElement + unwrapper.unwrappedElement.getName();
+ containingElement = containingElement + ToolsUtils.firstLetterUpperCase(unwrapper.unwrappedElement.getName());
array = unwrapper.array;
if (xt.getAnonymous())
{
@@ -632,7 +632,8 @@
QName xmlType;
if (type.getAnonymous())
{
- xmlType = new QName(type.getNamespace(), containingElement + element.getName());
+ String tempName = ToolsUtils.firstLetterUpperCase(containingElement) + ToolsUtils.firstLetterUpperCase(element.getName());
+ xmlType = new QName(type.getNamespace(), tempName);
}
else
{
@@ -715,7 +716,8 @@
// Anonymous
if (localName == null)
{
- javaType = getJavaTypeAsString(null, new QName(containingElement + name), false, true);
+ String tempName = containingElement + ToolsUtils.firstLetterUpperCase(name);
+ javaType = getJavaTypeAsString(null, new QName(tempName), false, true);
StringBuilder temp = new StringBuilder();
if (containingType != null && containingType.length() > 0)
temp.append(">").append(containingType);
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1873 (from rev 4927, stack/native/trunk/src/test/java/org/jboss/test/ws/tools/jbws1873)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1873/JBWS1873TestCase.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/tools/jbws1873/JBWS1873TestCase.java 2007-10-29 18:44:57 UTC (rev 4927)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1873/JBWS1873TestCase.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -1,104 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2007, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.test.ws.tools.jbws1873;
-
-import java.io.File;
-import java.io.FilenameFilter;
-
-import org.jboss.test.ws.tools.fixture.JBossSourceComparator;
-import org.jboss.test.ws.tools.validation.JaxrpcMappingValidator;
-import org.jboss.ws.tools.WSTools;
-import org.jboss.wsf.test.JBossWSTest;
-
-/**
- * Test case to test the following fix: -
- *
- * @see http://jira.jboss.com/jira/browse/JBWS-1873
- *
- * @author darran.lofthouse(a)jboss.com
- * @since Oct 29, 2007
- */
-public class JBWS1873TestCase extends JBossWSTest
-{
-
- public void testDocumentLiteral() throws Exception
- {
- generateScenario("doclit");
- }
-
- protected void generateScenario(final String scenario) throws Exception
- {
- String resourceDir = "resources/tools/jbws1873/" + scenario;
- String toolsDir = "tools/jbws1873/" + scenario;
- String[] args = new String[] { "-dest", toolsDir, "-config", resourceDir + "/wstools-config.xml" };
- new WSTools().generate(args);
- File resourceDirFile = new File(resourceDir);
- String[] expectedFiles = resourceDirFile.list(new FilenameFilter() {
- public boolean accept(File dir, String name)
- {
- return name.endsWith(".java");
- }
- });
-
- for (int i = 0; i < expectedFiles.length; i++)
- {
- String currentFile = expectedFiles[i];
-
- try
- {
- compareSource(resourceDir + "/" + currentFile, toolsDir + "/org/jboss/test/ws/jbws1873/" + currentFile);
- }
- catch (Exception e)
- {
- throw new Exception("Validation of '" + currentFile + "' failed.", e);
- }
- }
-
- File packageDir = new File(toolsDir + "/org/jboss/test/ws/jbws1873");
- String[] generatedFiles = packageDir.list();
- for (int i = 0; i < generatedFiles.length; i++)
- {
- String currentFile = generatedFiles[i];
-
- boolean matched = "PhoneBookService.java".equals(currentFile);
-
- for (int j = 0; j < expectedFiles.length && (matched == false); j++)
- matched = currentFile.equals(expectedFiles[j]);
-
- assertTrue("File '" + currentFile + "' was not expected to be generated", matched);
- }
-
- JaxrpcMappingValidator mappingValidator = new JaxrpcMappingValidator();
- mappingValidator.validate(resourceDir + "/jaxrpc-mapping.xml", toolsDir + "/jaxrpc-mapping.xml");
- }
-
- private static void compareSource(final String expectedName, final String generatedName) throws Exception
- {
- File expected = new File(expectedName);
- File generated = new File(generatedName);
-
- JBossSourceComparator sc = new JBossSourceComparator(expected, generated);
- sc.validate();
- sc.validateImports();
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1873/JBWS1873TestCase.java (from rev 4927, stack/native/trunk/src/test/java/org/jboss/test/ws/tools/jbws1873/JBWS1873TestCase.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1873/JBWS1873TestCase.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1873/JBWS1873TestCase.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -0,0 +1,104 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2007, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.ws.tools.jbws1873;
+
+import java.io.File;
+import java.io.FilenameFilter;
+
+import org.jboss.test.ws.tools.fixture.JBossSourceComparator;
+import org.jboss.test.ws.tools.validation.JaxrpcMappingValidator;
+import org.jboss.ws.tools.WSTools;
+import org.jboss.wsf.test.JBossWSTest;
+
+/**
+ * Test case to test the following fix: -
+ *
+ * @see http://jira.jboss.com/jira/browse/JBWS-1873
+ *
+ * @author darran.lofthouse(a)jboss.com
+ * @since Oct 29, 2007
+ */
+public class JBWS1873TestCase extends JBossWSTest
+{
+
+ public void testDocumentLiteral() throws Exception
+ {
+ generateScenario("doclit");
+ }
+
+ protected void generateScenario(final String scenario) throws Exception
+ {
+ String resourceDir = "resources/tools/jbws1873/" + scenario;
+ String toolsDir = "tools/jbws1873/" + scenario;
+ String[] args = new String[] { "-dest", toolsDir, "-config", resourceDir + "/wstools-config.xml" };
+ new WSTools().generate(args);
+ File resourceDirFile = new File(resourceDir);
+ String[] expectedFiles = resourceDirFile.list(new FilenameFilter() {
+ public boolean accept(File dir, String name)
+ {
+ return name.endsWith(".java");
+ }
+ });
+
+ for (int i = 0; i < expectedFiles.length; i++)
+ {
+ String currentFile = expectedFiles[i];
+
+ try
+ {
+ compareSource(resourceDir + "/" + currentFile, toolsDir + "/org/jboss/test/ws/jbws1873/" + currentFile);
+ }
+ catch (Exception e)
+ {
+ throw new Exception("Validation of '" + currentFile + "' failed.", e);
+ }
+ }
+
+ File packageDir = new File(toolsDir + "/org/jboss/test/ws/jbws1873");
+ String[] generatedFiles = packageDir.list();
+ for (int i = 0; i < generatedFiles.length; i++)
+ {
+ String currentFile = generatedFiles[i];
+
+ boolean matched = "PhoneBookService.java".equals(currentFile);
+
+ for (int j = 0; j < expectedFiles.length && (matched == false); j++)
+ matched = currentFile.equals(expectedFiles[j]);
+
+ assertTrue("File '" + currentFile + "' was not expected to be generated", matched);
+ }
+
+ JaxrpcMappingValidator mappingValidator = new JaxrpcMappingValidator();
+ mappingValidator.validate(resourceDir + "/jaxrpc-mapping.xml", toolsDir + "/jaxrpc-mapping.xml");
+ }
+
+ private static void compareSource(final String expectedName, final String generatedName) throws Exception
+ {
+ File expected = new File(expectedName);
+ File generated = new File(generatedName);
+
+ JBossSourceComparator sc = new JBossSourceComparator(expected, generated);
+ sc.validate();
+ sc.validateImports();
+ }
+
+}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873 (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873)
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873/doclit)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupRequest.java
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1873/doclit/LookupRequest.java 2007-10-29 18:44:57 UTC (rev 4927)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupRequest.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -1,27 +0,0 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Mon Oct 29 15:50:46 GMT 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
-
-package org.jboss.test.ws.jbws1873;
-
-
-public class LookupRequest
-{
-
-protected java.lang.String surname;
-public LookupRequest(){}
-
-public LookupRequest(java.lang.String surname){
-this.surname=surname;
-}
-public java.lang.String getSurname() { return surname ;}
-
-public void setSurname(java.lang.String surname){ this.surname=surname; }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupRequest.java (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873/doclit/LookupRequest.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupRequest.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupRequest.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Mon Oct 29 15:50:46 GMT 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws1873;
+
+
+public class LookupRequest
+{
+
+protected java.lang.String surname;
+public LookupRequest(){}
+
+public LookupRequest(java.lang.String surname){
+this.surname=surname;
+}
+public java.lang.String getSurname() { return surname ;}
+
+public void setSurname(java.lang.String surname){ this.surname=surname; }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupResponseResponse.java
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1873/doclit/LookupResponseResponse.java 2007-10-29 18:44:57 UTC (rev 4927)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupResponseResponse.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -1,27 +0,0 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Mon Oct 29 15:50:46 GMT 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
-
-package org.jboss.test.ws.jbws1873;
-
-
-public class LookupResponseResponse
-{
-
-protected java.lang.String number;
-public LookupResponseResponse(){}
-
-public LookupResponseResponse(java.lang.String number){
-this.number=number;
-}
-public java.lang.String getNumber() { return number ;}
-
-public void setNumber(java.lang.String number){ this.number=number; }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupResponseResponse.java (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873/doclit/LookupResponseResponse.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupResponseResponse.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/LookupResponseResponse.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Mon Oct 29 15:50:46 GMT 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws1873;
+
+
+public class LookupResponseResponse
+{
+
+protected java.lang.String number;
+public LookupResponseResponse(){}
+
+public LookupResponseResponse(java.lang.String number){
+this.number=number;
+}
+public java.lang.String getNumber() { return number ;}
+
+public void setNumber(java.lang.String number){ this.number=number; }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/Person.java
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1873/doclit/Person.java 2007-10-29 18:44:57 UTC (rev 4927)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/Person.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -1,27 +0,0 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Mon Oct 29 15:50:46 GMT 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
-
-package org.jboss.test.ws.jbws1873;
-
-
-public class Person
-{
-
-protected org.jboss.test.ws.jbws1873.LookupRequest request;
-public Person(){}
-
-public Person(org.jboss.test.ws.jbws1873.LookupRequest request){
-this.request=request;
-}
-public org.jboss.test.ws.jbws1873.LookupRequest getRequest() { return request ;}
-
-public void setRequest(org.jboss.test.ws.jbws1873.LookupRequest request){ this.request=request; }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/Person.java (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873/doclit/Person.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/Person.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/Person.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Mon Oct 29 15:50:46 GMT 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws1873;
+
+
+public class Person
+{
+
+protected org.jboss.test.ws.jbws1873.LookupRequest request;
+public Person(){}
+
+public Person(org.jboss.test.ws.jbws1873.LookupRequest request){
+this.request=request;
+}
+public org.jboss.test.ws.jbws1873.LookupRequest getRequest() { return request ;}
+
+public void setRequest(org.jboss.test.ws.jbws1873.LookupRequest request){ this.request=request; }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook.wsdl
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1873/doclit/PhoneBook.wsdl 2007-10-29 18:44:57 UTC (rev 4927)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook.wsdl 2008-01-23 11:52:05 UTC (rev 5515)
@@ -1,80 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook'
- targetNamespace='http://test.jboss.org/ws/jbws1873'
- xmlns='http://schemas.xmlsoap.org/wsdl/'
- xmlns:ns1='http://test.jboss.org/ws/jbws1873/types'
- xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
- xmlns:tns='http://test.jboss.org/ws/jbws1873'
- xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1873/types'
- xmlns='http://www.w3.org/2001/XMLSchema'
- xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/'
- xmlns:tns='http://test.jboss.org/ws/jbws1873/types'
- xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name="request" minOccurs="0">
- <complexType>
- <all>
- <element maxOccurs="unbounded" minOccurs="0" name="surname" nillable="true" type="string"/>
- </all>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name="response" minOccurs="0">
- <complexType>
- <all>
- <element maxOccurs="unbounded" minOccurs="0" name="number" nillable="true" type="string"/>
- </all>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <element name='lookup' type='tns:Person'/>
- <element name='lookupResponse' type='tns:TelephoneNumber'/>
-
- </schema>
- </types>
-
- <message name='PhoneBook_lookup'>
- <part element='ns1:lookup' name='parameters'/>
- </message>
-
- <message name='PhoneBook_lookupResponse'>
- <part element='ns1:lookupResponse' name='result'/>
- </message>
-
- <portType name='PhoneBook'>
- <operation name='lookup'>
- <input message='tns:PhoneBook_lookup'/>
- <output message='tns:PhoneBook_lookupResponse'/>
- </operation>
- </portType>
-
- <binding name='PhoneBookBinding' type='tns:PhoneBook'>
- <soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
- <operation name='lookup'>
- <soap:operation soapAction=''/>
- <input>
- <soap:body use='literal' parts='parameters'/>
- </input>
- <output>
- <soap:body use='literal'/>
- </output>
- </operation>
- </binding>
-
- <service name='PhoneBook'>
- <port binding='tns:PhoneBookBinding' name='PhoneBookPort'>
- <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
- </port>
- </service>
-
-</definitions>
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook.wsdl (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873/doclit/PhoneBook.wsdl)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook.wsdl (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook.wsdl 2008-01-23 11:52:05 UTC (rev 5515)
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name='PhoneBook'
+ targetNamespace='http://test.jboss.org/ws/jbws1873'
+ xmlns='http://schemas.xmlsoap.org/wsdl/'
+ xmlns:ns1='http://test.jboss.org/ws/jbws1873/types'
+ xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
+ xmlns:tns='http://test.jboss.org/ws/jbws1873'
+ xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
+ <types>
+ <schema targetNamespace='http://test.jboss.org/ws/jbws1873/types'
+ xmlns='http://www.w3.org/2001/XMLSchema'
+ xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/'
+ xmlns:tns='http://test.jboss.org/ws/jbws1873/types'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
+
+ <complexType name='Person'>
+ <sequence>
+ <element name="request" minOccurs="0">
+ <complexType>
+ <all>
+ <element maxOccurs="unbounded" minOccurs="0" name="surname" nillable="true" type="string"/>
+ </all>
+ </complexType>
+ </element>
+ </sequence>
+ </complexType>
+
+ <complexType name='TelephoneNumber'>
+ <sequence>
+ <element name="response" minOccurs="0">
+ <complexType>
+ <all>
+ <element maxOccurs="unbounded" minOccurs="0" name="number" nillable="true" type="string"/>
+ </all>
+ </complexType>
+ </element>
+ </sequence>
+ </complexType>
+
+ <element name='lookup' type='tns:Person'/>
+ <element name='lookupResponse' type='tns:TelephoneNumber'/>
+
+ </schema>
+ </types>
+
+ <message name='PhoneBook_lookup'>
+ <part element='ns1:lookup' name='parameters'/>
+ </message>
+
+ <message name='PhoneBook_lookupResponse'>
+ <part element='ns1:lookupResponse' name='result'/>
+ </message>
+
+ <portType name='PhoneBook'>
+ <operation name='lookup'>
+ <input message='tns:PhoneBook_lookup'/>
+ <output message='tns:PhoneBook_lookupResponse'/>
+ </operation>
+ </portType>
+
+ <binding name='PhoneBookBinding' type='tns:PhoneBook'>
+ <soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
+ <operation name='lookup'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal' parts='parameters'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ </binding>
+
+ <service name='PhoneBook'>
+ <port binding='tns:PhoneBookBinding' name='PhoneBookPort'>
+ <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
+ </port>
+ </service>
+
+</definitions>
\ No newline at end of file
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook_PortType.java
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1873/doclit/PhoneBook_PortType.java 2007-10-29 18:44:57 UTC (rev 4927)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook_PortType.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -1,15 +0,0 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Mon Oct 29 15:50:46 GMT 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
-package org.jboss.test.ws.jbws1873;
-public interface PhoneBook_PortType extends java.rmi.Remote
-{
-
- public org.jboss.test.ws.jbws1873.LookupResponseResponse lookup(org.jboss.test.ws.jbws1873.LookupRequest lookup) throws java.rmi.RemoteException;
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook_PortType.java (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873/doclit/PhoneBook_PortType.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook_PortType.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/PhoneBook_PortType.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -0,0 +1,15 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Mon Oct 29 15:50:46 GMT 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+package org.jboss.test.ws.jbws1873;
+public interface PhoneBook_PortType extends java.rmi.Remote
+{
+
+ public org.jboss.test.ws.jbws1873.LookupResponseResponse lookup(org.jboss.test.ws.jbws1873.LookupRequest lookup) throws java.rmi.RemoteException;
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/TelephoneNumber.java
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1873/doclit/TelephoneNumber.java 2007-10-29 18:44:57 UTC (rev 4927)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/TelephoneNumber.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -1,27 +0,0 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Mon Oct 29 15:50:46 GMT 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
-
-package org.jboss.test.ws.jbws1873;
-
-
-public class TelephoneNumber
-{
-
-protected org.jboss.test.ws.jbws1873.LookupResponseResponse response;
-public TelephoneNumber(){}
-
-public TelephoneNumber(org.jboss.test.ws.jbws1873.LookupResponseResponse response){
-this.response=response;
-}
-public org.jboss.test.ws.jbws1873.LookupResponseResponse getResponse() { return response ;}
-
-public void setResponse(org.jboss.test.ws.jbws1873.LookupResponseResponse response){ this.response=response; }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/TelephoneNumber.java (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873/doclit/TelephoneNumber.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/TelephoneNumber.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/TelephoneNumber.java 2008-01-23 11:52:05 UTC (rev 5515)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Mon Oct 29 15:50:46 GMT 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws1873;
+
+
+public class TelephoneNumber
+{
+
+protected org.jboss.test.ws.jbws1873.LookupResponseResponse response;
+public TelephoneNumber(){}
+
+public TelephoneNumber(org.jboss.test.ws.jbws1873.LookupResponseResponse response){
+this.response=response;
+}
+public org.jboss.test.ws.jbws1873.LookupResponseResponse getResponse() { return response ;}
+
+public void setResponse(org.jboss.test.ws.jbws1873.LookupResponseResponse response){ this.response=response; }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/jaxrpc-mapping.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1873/doclit/jaxrpc-mapping.xml 2007-10-29 18:44:57 UTC (rev 4927)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/jaxrpc-mapping.xml 2008-01-23 11:52:05 UTC (rev 5515)
@@ -1,78 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?><java-wsdl-mapping version='1.1' xmlns='http://java.sun.com/xml/ns/j2ee' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://java.sun.com/xml/ns/j2ee http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd'>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1873</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1873/types</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1873</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1873</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1873.Person</java-type>
- <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1873/types'>typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>request</java-variable-name>
- <xml-element-name>request</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1873.LookupRequest</java-type>
- <anonymous-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1873/types'>typeNS:>Person>request</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1873.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1873/types'>typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>response</java-variable-name>
- <xml-element-name>response</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1873.LookupResponseResponse</java-type>
- <anonymous-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1873/types'>typeNS:>TelephoneNumber>response</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>number</java-variable-name>
- <xml-element-name>number</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1873.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS='http://test.jboss.org/ws/jbws1873'>serviceNS:PhoneBook</wsdl-service-name>
- <port-mapping>
- <port-name>PhoneBookPort</port-name>
- <java-port-name>PhoneBookPort</java-port-name>
- </port-mapping>
- </service-interface-mapping>
- <service-endpoint-interface-mapping>
- <service-endpoint-interface>org.jboss.test.ws.jbws1873.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS='http://test.jboss.org/ws/jbws1873'>portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS='http://test.jboss.org/ws/jbws1873'>bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1873.LookupRequest</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1873'>wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>request</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <wsdl-return-value-mapping>
- <method-return-value>org.jboss.test.ws.jbws1873.LookupResponseResponse</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1873'>wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>response</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/jaxrpc-mapping.xml (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873/doclit/jaxrpc-mapping.xml)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/jaxrpc-mapping.xml (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/jaxrpc-mapping.xml 2008-01-23 11:52:05 UTC (rev 5515)
@@ -0,0 +1,78 @@
+<?xml version='1.0' encoding='UTF-8'?><java-wsdl-mapping version='1.1' xmlns='http://java.sun.com/xml/ns/j2ee' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://java.sun.com/xml/ns/j2ee http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd'>
+ <package-mapping>
+ <package-type>org.jboss.test.ws.jbws1873</package-type>
+ <namespaceURI>http://test.jboss.org/ws/jbws1873/types</namespaceURI>
+ </package-mapping>
+ <package-mapping>
+ <package-type>org.jboss.test.ws.jbws1873</package-type>
+ <namespaceURI>http://test.jboss.org/ws/jbws1873</namespaceURI>
+ </package-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jbws1873.Person</java-type>
+ <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1873/types'>typeNS:Person</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>request</java-variable-name>
+ <xml-element-name>request</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jbws1873.LookupRequest</java-type>
+ <anonymous-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1873/types'>typeNS:>Person>request</anonymous-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>surname</java-variable-name>
+ <xml-element-name>surname</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jbws1873.TelephoneNumber</java-type>
+ <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1873/types'>typeNS:TelephoneNumber</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>response</java-variable-name>
+ <xml-element-name>response</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jbws1873.LookupResponseResponse</java-type>
+ <anonymous-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1873/types'>typeNS:>TelephoneNumber>response</anonymous-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>number</java-variable-name>
+ <xml-element-name>number</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <service-interface-mapping>
+ <service-interface>org.jboss.test.ws.jbws1873.PhoneBook_Service</service-interface>
+ <wsdl-service-name xmlns:serviceNS='http://test.jboss.org/ws/jbws1873'>serviceNS:PhoneBook</wsdl-service-name>
+ <port-mapping>
+ <port-name>PhoneBookPort</port-name>
+ <java-port-name>PhoneBookPort</java-port-name>
+ </port-mapping>
+ </service-interface-mapping>
+ <service-endpoint-interface-mapping>
+ <service-endpoint-interface>org.jboss.test.ws.jbws1873.PhoneBook_PortType</service-endpoint-interface>
+ <wsdl-port-type xmlns:portTypeNS='http://test.jboss.org/ws/jbws1873'>portTypeNS:PhoneBook</wsdl-port-type>
+ <wsdl-binding xmlns:bindingNS='http://test.jboss.org/ws/jbws1873'>bindingNS:PhoneBookBinding</wsdl-binding>
+ <service-endpoint-method-mapping>
+ <java-method-name>lookup</java-method-name>
+ <wsdl-operation>lookup</wsdl-operation>
+ <wrapped-element/>
+ <method-param-parts-mapping>
+ <param-position>0</param-position>
+ <param-type>org.jboss.test.ws.jbws1873.LookupRequest</param-type>
+ <wsdl-message-mapping>
+ <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1873'>wsdlMsgNS:PhoneBook_lookup</wsdl-message>
+ <wsdl-message-part-name>request</wsdl-message-part-name>
+ <parameter-mode>IN</parameter-mode>
+ </wsdl-message-mapping>
+ </method-param-parts-mapping>
+ <wsdl-return-value-mapping>
+ <method-return-value>org.jboss.test.ws.jbws1873.LookupResponseResponse</method-return-value>
+ <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1873'>wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
+ <wsdl-message-part-name>response</wsdl-message-part-name>
+ </wsdl-return-value-mapping>
+ </service-endpoint-method-mapping>
+ </service-endpoint-interface-mapping>
+</java-wsdl-mapping>
\ No newline at end of file
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1873/doclit/wstools-config.xml 2007-10-29 18:44:57 UTC (rev 4927)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/wstools-config.xml 2008-01-23 11:52:05 UTC (rev 5515)
@@ -1,6 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1873/doclit/PhoneBook.wsdl"
- parameter-style="wrapped">
- <mapping file="jaxrpc-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/wstools-config.xml (from rev 4927, stack/native/trunk/src/test/resources/tools/jbws1873/doclit/wstools-config.xml)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/wstools-config.xml (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1873/doclit/wstools-config.xml 2008-01-23 11:52:05 UTC (rev 5515)
@@ -0,0 +1,6 @@
+<configuration>
+ <wsdl-java location="resources/tools/jbws1873/doclit/PhoneBook.wsdl"
+ parameter-style="wrapped">
+ <mapping file="jaxrpc-mapping.xml"/>
+ </wsdl-java>
+</configuration>
16 years, 11 months
JBossWS SVN: r5514 - in stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src: test/java/org/jboss/test/ws/tools and 4 other directories.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-01-23 06:49:29 -0500 (Wed, 23 Jan 2008)
New Revision: 5514
Added:
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1801/
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1801/JBWS1801TestCase.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/Person.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook.wsdl
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook_PortType.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/TelephoneNumber.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/jaxrpc-mapping.xml
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/wstools-config.xml
Removed:
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1801/JBWS1801TestCase.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/Person.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook.wsdl
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook_PortType.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/TelephoneNumber.java
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/jaxrpc-mapping.xml
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/wstools-config.xml
Modified:
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/helpers/MappingFileGeneratorHelper.java
Log:
[JBWS-1963] WSDL To Java - When an array if returned from a method on the SEI it is incorrectly ommitted from the generated JAX-RPC mapping.
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/helpers/MappingFileGeneratorHelper.java
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/helpers/MappingFileGeneratorHelper.java 2008-01-23 11:00:09 UTC (rev 5513)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/main/java/org/jboss/ws/tools/helpers/MappingFileGeneratorHelper.java 2008-01-23 11:49:29 UTC (rev 5514)
@@ -489,7 +489,8 @@
if (isDocStyle())
{
XSTypeDefinition xt = getXSType(input);
- addJavaXMLTypeMap(xt, input.getElement().getLocalPart(), "", "", jwm, !isWrapped());
+ // Don't unwrap the actual parameter.
+ addJavaXMLTypeMap(xt, input.getElement().getLocalPart(), "", "", jwm, false);
}
else
{
@@ -503,7 +504,8 @@
if (isDocStyle())
{
XSTypeDefinition xt = getXSType(output);
- addJavaXMLTypeMap(xt, output.getElement().getLocalPart(), "", "", jwm, !isWrapped());
+ // Don't unwrap the response type.
+ addJavaXMLTypeMap(xt, output.getElement().getLocalPart(), "", "", jwm, false);
}
else
{
@@ -704,7 +706,7 @@
}
}
- if ((skipWrapperArray && isRepresentsArray(xt)) == false)
+ if ((skipWrapperArray && SchemaUtils.isWrapperArrayType(xt)) == false)
{
jxtm = new JavaXmlTypeMapping(jwm);
String javaType;
@@ -900,40 +902,6 @@
}
/**
- * Checks whether the type represents an array type
- *
- * @param xst
- * @return true: type represents an array
- */
- private boolean isRepresentsArray(XSTypeDefinition xst)
- {
- boolean bool = false;
- if (xst instanceof XSComplexTypeDefinition)
- {
- XSComplexTypeDefinition xc = (XSComplexTypeDefinition)xst;
- if (xc.getContentType() == XSComplexTypeDefinition.CONTENTTYPE_EMPTY)
- return false;
- XSParticle xsp = xc.getParticle();
-
- if (xsp == null)
- return false;
-
- XSTerm xsterm = xsp.getTerm();
- if (xsterm instanceof XSModelGroup)
- {
- XSModelGroup xm = (XSModelGroup)xsterm;
- XSObjectList xo = xm.getParticles();
- if (xo.getLength() == 1)
- {
- XSParticle xp = (XSParticle)xo.item(0);
- bool = xp.getMaxOccursUnbounded() || xp.getMaxOccurs() > 1;
- }
- }
- }
- return bool;
- }
-
- /**
* Any custom decisions that need to be made will be done here
*
* @param javaType
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1801 (from rev 4547, stack/native/trunk/src/test/java/org/jboss/test/ws/tools/jbws1801)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1801/JBWS1801TestCase.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/tools/jbws1801/JBWS1801TestCase.java 2007-09-11 12:45:34 UTC (rev 4547)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1801/JBWS1801TestCase.java 2008-01-23 11:49:29 UTC (rev 5514)
@@ -1,108 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2007, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.test.ws.tools.jbws1801;
-
-import java.io.File;
-import java.io.FilenameFilter;
-
-import org.jboss.test.ws.tools.fixture.JBossSourceComparator;
-import org.jboss.test.ws.tools.validation.JaxrpcMappingValidator;
-import org.jboss.ws.tools.WSTools;
-import org.jboss.wsf.test.JBossWSTest;
-
-/**
- * Test case to test the following fix: -
- *
- * @see http://jira.jboss.com/jira/browse/JBWS-1801
- *
- * WSDL To Java - When an array if returned from a method
- * on the SEI it is incorrectly ommitted from the generated
- * JAX-RPC mapping.
- *
- * @author darran.lofthouse(a)jboss.com
- * @since Sep 11, 2007
- */
-public class JBWS1801TestCase extends JBossWSTest
-{
-
- public void testDocumentLiteral() throws Exception
- {
- generateScenario("doclit");
- }
-
- protected void generateScenario(final String scenario) throws Exception
- {
- String resourceDir = "resources/tools/jbws1801/" + scenario;
- String toolsDir = "tools/jbws1801/" + scenario;
- String[] args = new String[] { "-dest", toolsDir, "-config", resourceDir + "/wstools-config.xml" };
- new WSTools().generate(args);
- File resourceDirFile = new File(resourceDir);
- String[] expectedFiles = resourceDirFile.list(new FilenameFilter() {
- public boolean accept(File dir, String name)
- {
- return name.endsWith(".java");
- }
- });
-
- for (int i = 0; i < expectedFiles.length; i++)
- {
- String currentFile = expectedFiles[i];
-
- try
- {
- compareSource(resourceDir + "/" + currentFile, toolsDir + "/org/jboss/test/ws/jbws1801/" + currentFile);
- }
- catch (Exception e)
- {
- throw new Exception("Validation of '" + currentFile + "' failed.", e);
- }
- }
-
- File packageDir = new File(toolsDir + "/org/jboss/test/ws/jbws1801");
- String[] generatedFiles = packageDir.list();
- for (int i = 0; i < generatedFiles.length; i++)
- {
- String currentFile = generatedFiles[i];
-
- boolean matched = "PhoneBookService.java".equals(currentFile);
-
- for (int j = 0; j < expectedFiles.length && (matched == false); j++)
- matched = currentFile.equals(expectedFiles[j]);
-
- assertTrue("File '" + currentFile + "' was not expected to be generated", matched);
- }
-
- JaxrpcMappingValidator mappingValidator = new JaxrpcMappingValidator();
- mappingValidator.validate(resourceDir + "/jaxrpc-mapping.xml", toolsDir + "/jaxrpc-mapping.xml");
- }
-
- private static void compareSource(final String expectedName, final String generatedName) throws Exception
- {
- File expected = new File(expectedName);
- File generated = new File(generatedName);
-
- JBossSourceComparator sc = new JBossSourceComparator(expected, generated);
- sc.validate();
- sc.validateImports();
- }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1801/JBWS1801TestCase.java (from rev 4547, stack/native/trunk/src/test/java/org/jboss/test/ws/tools/jbws1801/JBWS1801TestCase.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1801/JBWS1801TestCase.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/java/org/jboss/test/ws/tools/jbws1801/JBWS1801TestCase.java 2008-01-23 11:49:29 UTC (rev 5514)
@@ -0,0 +1,108 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2007, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.ws.tools.jbws1801;
+
+import java.io.File;
+import java.io.FilenameFilter;
+
+import org.jboss.test.ws.tools.fixture.JBossSourceComparator;
+import org.jboss.test.ws.tools.validation.JaxrpcMappingValidator;
+import org.jboss.ws.tools.WSTools;
+import org.jboss.wsf.test.JBossWSTest;
+
+/**
+ * Test case to test the following fix: -
+ *
+ * @see http://jira.jboss.com/jira/browse/JBWS-1801
+ *
+ * WSDL To Java - When an array if returned from a method
+ * on the SEI it is incorrectly ommitted from the generated
+ * JAX-RPC mapping.
+ *
+ * @author darran.lofthouse(a)jboss.com
+ * @since Sep 11, 2007
+ */
+public class JBWS1801TestCase extends JBossWSTest
+{
+
+ public void testDocumentLiteral() throws Exception
+ {
+ generateScenario("doclit");
+ }
+
+ protected void generateScenario(final String scenario) throws Exception
+ {
+ String resourceDir = "resources/tools/jbws1801/" + scenario;
+ String toolsDir = "tools/jbws1801/" + scenario;
+ String[] args = new String[] { "-dest", toolsDir, "-config", resourceDir + "/wstools-config.xml" };
+ new WSTools().generate(args);
+ File resourceDirFile = new File(resourceDir);
+ String[] expectedFiles = resourceDirFile.list(new FilenameFilter() {
+ public boolean accept(File dir, String name)
+ {
+ return name.endsWith(".java");
+ }
+ });
+
+ for (int i = 0; i < expectedFiles.length; i++)
+ {
+ String currentFile = expectedFiles[i];
+
+ try
+ {
+ compareSource(resourceDir + "/" + currentFile, toolsDir + "/org/jboss/test/ws/jbws1801/" + currentFile);
+ }
+ catch (Exception e)
+ {
+ throw new Exception("Validation of '" + currentFile + "' failed.", e);
+ }
+ }
+
+ File packageDir = new File(toolsDir + "/org/jboss/test/ws/jbws1801");
+ String[] generatedFiles = packageDir.list();
+ for (int i = 0; i < generatedFiles.length; i++)
+ {
+ String currentFile = generatedFiles[i];
+
+ boolean matched = "PhoneBookService.java".equals(currentFile);
+
+ for (int j = 0; j < expectedFiles.length && (matched == false); j++)
+ matched = currentFile.equals(expectedFiles[j]);
+
+ assertTrue("File '" + currentFile + "' was not expected to be generated", matched);
+ }
+
+ JaxrpcMappingValidator mappingValidator = new JaxrpcMappingValidator();
+ mappingValidator.validate(resourceDir + "/jaxrpc-mapping.xml", toolsDir + "/jaxrpc-mapping.xml");
+ }
+
+ private static void compareSource(final String expectedName, final String generatedName) throws Exception
+ {
+ File expected = new File(expectedName);
+ File generated = new File(generatedName);
+
+ JBossSourceComparator sc = new JBossSourceComparator(expected, generated);
+ sc.validate();
+ sc.validateImports();
+ }
+
+}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801 (from rev 4547, stack/native/trunk/src/test/resources/tools/jbws1801)
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit (from rev 4547, stack/native/trunk/src/test/resources/tools/jbws1801/doclit)
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/Person.java
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1801/doclit/Person.java 2007-09-11 12:45:34 UTC (rev 4547)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/Person.java 2008-01-23 11:49:29 UTC (rev 5514)
@@ -1,27 +0,0 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Tue Sep 11 12:13:54 BST 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
-
-package org.jboss.test.ws.jbws1801;
-
-
-public class Person
-{
-
-protected java.lang.String[] surname;
-public Person(){}
-
-public Person(java.lang.String[] surname){
-this.surname=surname;
-}
-public java.lang.String[] getSurname() { return surname ;}
-
-public void setSurname(java.lang.String[] surname){ this.surname=surname; }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/Person.java (from rev 4547, stack/native/trunk/src/test/resources/tools/jbws1801/doclit/Person.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/Person.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/Person.java 2008-01-23 11:49:29 UTC (rev 5514)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Tue Sep 11 12:13:54 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws1801;
+
+
+public class Person
+{
+
+protected java.lang.String[] surname;
+public Person(){}
+
+public Person(java.lang.String[] surname){
+this.surname=surname;
+}
+public java.lang.String[] getSurname() { return surname ;}
+
+public void setSurname(java.lang.String[] surname){ this.surname=surname; }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook.wsdl
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1801/doclit/PhoneBook.wsdl 2007-09-11 12:45:34 UTC (rev 4547)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook.wsdl 2008-01-23 11:49:29 UTC (rev 5514)
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook'
- targetNamespace='http://test.jboss.org/ws/jbws1801'
- xmlns='http://schemas.xmlsoap.org/wsdl/'
- xmlns:ns1='http://test.jboss.org/ws/jbws1801/types'
- xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
- xmlns:tns='http://test.jboss.org/ws/jbws1801'
- xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1801/types'
- xmlns='http://www.w3.org/2001/XMLSchema'
- xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/'
- xmlns:tns='http://test.jboss.org/ws/jbws1801/types'
- xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element maxOccurs="unbounded" minOccurs="0" name="surname" nillable="true" type="string"/>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element maxOccurs="unbounded" minOccurs="0" name="number" nillable="true" type="string"/>
- </sequence>
- </complexType>
-
- <element name='lookup' type='tns:Person'/>
- <element name='lookupResponse' type='tns:TelephoneNumber'/>
-
- </schema>
- </types>
-
- <message name='PhoneBook_lookup'>
- <part element='ns1:lookup' name='parameters'/>
- </message>
-
- <message name='PhoneBook_lookupResponse'>
- <part element='ns1:lookupResponse' name='result'/>
- </message>
-
- <portType name='PhoneBook'>
- <operation name='lookup'>
- <input message='tns:PhoneBook_lookup'/>
- <output message='tns:PhoneBook_lookupResponse'/>
- </operation>
- </portType>
-
- <binding name='PhoneBookBinding' type='tns:PhoneBook'>
- <soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
- <operation name='lookup'>
- <soap:operation soapAction=''/>
- <input>
- <soap:body use='literal' parts='parameters'/>
- </input>
- <output>
- <soap:body use='literal'/>
- </output>
- </operation>
- </binding>
-
- <service name='PhoneBook'>
- <port binding='tns:PhoneBookBinding' name='PhoneBookPort'>
- <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
- </port>
- </service>
-
-</definitions>
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook.wsdl (from rev 4547, stack/native/trunk/src/test/resources/tools/jbws1801/doclit/PhoneBook.wsdl)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook.wsdl (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook.wsdl 2008-01-23 11:49:29 UTC (rev 5514)
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name='PhoneBook'
+ targetNamespace='http://test.jboss.org/ws/jbws1801'
+ xmlns='http://schemas.xmlsoap.org/wsdl/'
+ xmlns:ns1='http://test.jboss.org/ws/jbws1801/types'
+ xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
+ xmlns:tns='http://test.jboss.org/ws/jbws1801'
+ xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
+ <types>
+ <schema targetNamespace='http://test.jboss.org/ws/jbws1801/types'
+ xmlns='http://www.w3.org/2001/XMLSchema'
+ xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/'
+ xmlns:tns='http://test.jboss.org/ws/jbws1801/types'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
+
+ <complexType name='Person'>
+ <sequence>
+ <element maxOccurs="unbounded" minOccurs="0" name="surname" nillable="true" type="string"/>
+ </sequence>
+ </complexType>
+
+ <complexType name='TelephoneNumber'>
+ <sequence>
+ <element maxOccurs="unbounded" minOccurs="0" name="number" nillable="true" type="string"/>
+ </sequence>
+ </complexType>
+
+ <element name='lookup' type='tns:Person'/>
+ <element name='lookupResponse' type='tns:TelephoneNumber'/>
+
+ </schema>
+ </types>
+
+ <message name='PhoneBook_lookup'>
+ <part element='ns1:lookup' name='parameters'/>
+ </message>
+
+ <message name='PhoneBook_lookupResponse'>
+ <part element='ns1:lookupResponse' name='result'/>
+ </message>
+
+ <portType name='PhoneBook'>
+ <operation name='lookup'>
+ <input message='tns:PhoneBook_lookup'/>
+ <output message='tns:PhoneBook_lookupResponse'/>
+ </operation>
+ </portType>
+
+ <binding name='PhoneBookBinding' type='tns:PhoneBook'>
+ <soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
+ <operation name='lookup'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal' parts='parameters'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ </binding>
+
+ <service name='PhoneBook'>
+ <port binding='tns:PhoneBookBinding' name='PhoneBookPort'>
+ <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
+ </port>
+ </service>
+
+</definitions>
\ No newline at end of file
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook_PortType.java
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1801/doclit/PhoneBook_PortType.java 2007-09-11 12:45:34 UTC (rev 4547)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook_PortType.java 2008-01-23 11:49:29 UTC (rev 5514)
@@ -1,15 +0,0 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Tue Sep 11 12:13:54 BST 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
-package org.jboss.test.ws.jbws1801;
-public interface PhoneBook_PortType extends java.rmi.Remote
-{
-
- public org.jboss.test.ws.jbws1801.TelephoneNumber lookup(org.jboss.test.ws.jbws1801.Person lookup) throws java.rmi.RemoteException;
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook_PortType.java (from rev 4547, stack/native/trunk/src/test/resources/tools/jbws1801/doclit/PhoneBook_PortType.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook_PortType.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/PhoneBook_PortType.java 2008-01-23 11:49:29 UTC (rev 5514)
@@ -0,0 +1,15 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Tue Sep 11 12:13:54 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+package org.jboss.test.ws.jbws1801;
+public interface PhoneBook_PortType extends java.rmi.Remote
+{
+
+ public org.jboss.test.ws.jbws1801.TelephoneNumber lookup(org.jboss.test.ws.jbws1801.Person lookup) throws java.rmi.RemoteException;
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/TelephoneNumber.java
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1801/doclit/TelephoneNumber.java 2007-09-11 12:45:34 UTC (rev 4547)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/TelephoneNumber.java 2008-01-23 11:49:29 UTC (rev 5514)
@@ -1,27 +0,0 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Tue Sep 11 12:13:54 BST 2007
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
-
-package org.jboss.test.ws.jbws1801;
-
-
-public class TelephoneNumber
-{
-
-protected java.lang.String[] number;
-public TelephoneNumber(){}
-
-public TelephoneNumber(java.lang.String[] number){
-this.number=number;
-}
-public java.lang.String[] getNumber() { return number ;}
-
-public void setNumber(java.lang.String[] number){ this.number=number; }
-
-}
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/TelephoneNumber.java (from rev 4547, stack/native/trunk/src/test/resources/tools/jbws1801/doclit/TelephoneNumber.java)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/TelephoneNumber.java (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/TelephoneNumber.java 2008-01-23 11:49:29 UTC (rev 5514)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Tue Sep 11 12:13:54 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws1801;
+
+
+public class TelephoneNumber
+{
+
+protected java.lang.String[] number;
+public TelephoneNumber(){}
+
+public TelephoneNumber(java.lang.String[] number){
+this.number=number;
+}
+public java.lang.String[] getNumber() { return number ;}
+
+public void setNumber(java.lang.String[] number){ this.number=number; }
+
+}
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/jaxrpc-mapping.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1801/doclit/jaxrpc-mapping.xml 2007-09-11 12:45:34 UTC (rev 4547)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/jaxrpc-mapping.xml 2008-01-23 11:49:29 UTC (rev 5514)
@@ -1,59 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?><java-wsdl-mapping version='1.1' xmlns='http://java.sun.com/xml/ns/j2ee' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://java.sun.com/xml/ns/j2ee http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd'>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1801</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1801/types</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1801</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1801</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1801.Person</java-type>
- <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1801/types'>typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1801.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1801/types'>typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>number</java-variable-name>
- <xml-element-name>number</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1801.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS='http://test.jboss.org/ws/jbws1801'>serviceNS:PhoneBook</wsdl-service-name>
- <port-mapping>
- <port-name>PhoneBookPort</port-name>
- <java-port-name>PhoneBookPort</java-port-name>
- </port-mapping>
- </service-interface-mapping>
- <service-endpoint-interface-mapping>
- <service-endpoint-interface>org.jboss.test.ws.jbws1801.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS='http://test.jboss.org/ws/jbws1801'>portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS='http://test.jboss.org/ws/jbws1801'>bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1801.Person</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1801'>wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>parameters</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <wsdl-return-value-mapping>
- <method-return-value>org.jboss.test.ws.jbws1801.TelephoneNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1801'>wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>result</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/jaxrpc-mapping.xml (from rev 4547, stack/native/trunk/src/test/resources/tools/jbws1801/doclit/jaxrpc-mapping.xml)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/jaxrpc-mapping.xml (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/jaxrpc-mapping.xml 2008-01-23 11:49:29 UTC (rev 5514)
@@ -0,0 +1,59 @@
+<?xml version='1.0' encoding='UTF-8'?><java-wsdl-mapping version='1.1' xmlns='http://java.sun.com/xml/ns/j2ee' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://java.sun.com/xml/ns/j2ee http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd'>
+ <package-mapping>
+ <package-type>org.jboss.test.ws.jbws1801</package-type>
+ <namespaceURI>http://test.jboss.org/ws/jbws1801/types</namespaceURI>
+ </package-mapping>
+ <package-mapping>
+ <package-type>org.jboss.test.ws.jbws1801</package-type>
+ <namespaceURI>http://test.jboss.org/ws/jbws1801</namespaceURI>
+ </package-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jbws1801.Person</java-type>
+ <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1801/types'>typeNS:Person</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>surname</java-variable-name>
+ <xml-element-name>surname</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jbws1801.TelephoneNumber</java-type>
+ <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1801/types'>typeNS:TelephoneNumber</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>number</java-variable-name>
+ <xml-element-name>number</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <service-interface-mapping>
+ <service-interface>org.jboss.test.ws.jbws1801.PhoneBook_Service</service-interface>
+ <wsdl-service-name xmlns:serviceNS='http://test.jboss.org/ws/jbws1801'>serviceNS:PhoneBook</wsdl-service-name>
+ <port-mapping>
+ <port-name>PhoneBookPort</port-name>
+ <java-port-name>PhoneBookPort</java-port-name>
+ </port-mapping>
+ </service-interface-mapping>
+ <service-endpoint-interface-mapping>
+ <service-endpoint-interface>org.jboss.test.ws.jbws1801.PhoneBook_PortType</service-endpoint-interface>
+ <wsdl-port-type xmlns:portTypeNS='http://test.jboss.org/ws/jbws1801'>portTypeNS:PhoneBook</wsdl-port-type>
+ <wsdl-binding xmlns:bindingNS='http://test.jboss.org/ws/jbws1801'>bindingNS:PhoneBookBinding</wsdl-binding>
+ <service-endpoint-method-mapping>
+ <java-method-name>lookup</java-method-name>
+ <wsdl-operation>lookup</wsdl-operation>
+ <method-param-parts-mapping>
+ <param-position>0</param-position>
+ <param-type>org.jboss.test.ws.jbws1801.Person</param-type>
+ <wsdl-message-mapping>
+ <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1801'>wsdlMsgNS:PhoneBook_lookup</wsdl-message>
+ <wsdl-message-part-name>parameters</wsdl-message-part-name>
+ <parameter-mode>IN</parameter-mode>
+ </wsdl-message-mapping>
+ </method-param-parts-mapping>
+ <wsdl-return-value-mapping>
+ <method-return-value>org.jboss.test.ws.jbws1801.TelephoneNumber</method-return-value>
+ <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1801'>wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
+ <wsdl-message-part-name>result</wsdl-message-part-name>
+ </wsdl-return-value-mapping>
+ </service-endpoint-method-mapping>
+ </service-endpoint-interface-mapping>
+</java-wsdl-mapping>
\ No newline at end of file
Deleted: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1801/doclit/wstools-config.xml 2007-09-11 12:45:34 UTC (rev 4547)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/wstools-config.xml 2008-01-23 11:49:29 UTC (rev 5514)
@@ -1,6 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1801/doclit/PhoneBook.wsdl"
- parameter-style="bare">
- <mapping file="jaxrpc-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/wstools-config.xml (from rev 4547, stack/native/trunk/src/test/resources/tools/jbws1801/doclit/wstools-config.xml)
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/wstools-config.xml (rev 0)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/src/test/resources/tools/jbws1801/doclit/wstools-config.xml 2008-01-23 11:49:29 UTC (rev 5514)
@@ -0,0 +1,6 @@
+<configuration>
+ <wsdl-java location="resources/tools/jbws1801/doclit/PhoneBook.wsdl"
+ parameter-style="bare">
+ <mapping file="jaxrpc-mapping.xml"/>
+ </wsdl-java>
+</configuration>
16 years, 11 months
JBossWS SVN: r5513 - stack/native/branches.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-01-23 06:00:09 -0500 (Wed, 23 Jan 2008)
New Revision: 5513
Added:
stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963/
Log:
Create Support Patch Branch.
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_JBWS-1963 (from rev 5512, stack/native/tags/jbossws-native-2.0.1.SP2)
16 years, 11 months
JBossWS SVN: r5512 - stack/native/branches.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-01-23 05:54:11 -0500 (Wed, 23 Jan 2008)
New Revision: 5512
Added:
stack/native/branches/jbossws-native-2.0.1.SP2_CP/
Log:
Create CP Branch.
Copied: stack/native/branches/jbossws-native-2.0.1.SP2_CP (from rev 5511, stack/native/tags/jbossws-native-2.0.1.SP2)
16 years, 11 months
JBossWS SVN: r5511 - projects/wiki/extensions/wiki2xml.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-23 05:19:17 -0500 (Wed, 23 Jan 2008)
New Revision: 5511
Modified:
projects/wiki/extensions/wiki2xml/content_provider.php
projects/wiki/extensions/wiki2xml/xml2docbook_xml.php
Log:
[JBWS-1961] Patching anchor support:
- each docbook section is now given its proper id according to the mediawiki convention
- links also include anchor part
- fixed article existence check to correctly use anchors
Modified: projects/wiki/extensions/wiki2xml/content_provider.php
===================================================================
--- projects/wiki/extensions/wiki2xml/content_provider.php 2008-01-22 17:04:22 UTC (rev 5510)
+++ projects/wiki/extensions/wiki2xml/content_provider.php 2008-01-23 10:19:17 UTC (rev 5511)
@@ -6,15 +6,32 @@
var $article_list = array () ;
var $authors = array () ;
var $block_file_download = false ;
+ var $section_list = array ();
function get_wiki_text ( $title , $do_cache = false ) { return "" ; } # dummy
function get_template_text ( $title ) { return "" ; } # dummy
function add_article ( $title ) {
$this->article_list[] = urlencode ( trim ( $title ) ) ;
+ $this->section_list[$title] = array();
}
+ function get_section_id ($article, $section) {
+ $id = "";
+ if (isset($this->section_list[$article][$section])) {
+ $this->section_list[$article][$section] = $this->section_list[$article][$section] + 1;
+ $id = $section . "_" . $this->section_list[$article][$section];
+ } else {
+ $this->section_list[$article][$section] = 1;
+ $id = $section;
+ }
+ return $article . "_" . urlencode($id);
+ }
+
function is_an_article ( $title ) {
+ if (strpos($title,'#'))
+ $title = substr($title,0,strpos($title,'#'));
+ $title = str_replace ( "_" , " " , $title ) ;
$title = urlencode ( trim ( $title ) ) ;
return in_array ( $title , $this->article_list ) ;
}
Modified: projects/wiki/extensions/wiki2xml/xml2docbook_xml.php
===================================================================
--- projects/wiki/extensions/wiki2xml/xml2docbook_xml.php 2008-01-22 17:04:22 UTC (rev 5510)
+++ projects/wiki/extensions/wiki2xml/xml2docbook_xml.php 2008-01-23 10:19:17 UTC (rev 5511)
@@ -200,6 +200,7 @@
else $link = " ({$link})" ;
$link = "" . $this->link_target . $link . "" ;
} else {
+
if ( $content_provider->is_an_article ( $this->link_target ) ) {
$lt = $this->internal_id ( trim ( $this->link_target ) ) ;
$lt = str_replace ( "+" , "_" , $lt ) ;
@@ -323,7 +324,8 @@
if ( $level < $wanted ) {
array_push ( $tree->sections , 0 ) ;
} else {
- $ret .= $this->ensure_new ( "section" , $tree , "<section>" ) ;
+ $id = $this->internal_id ( $content_provider->get_section_id($root->attrs['TITLE'],$this->children["0"]) ) ;
+ $ret .= $this->ensure_new ( "section" , $tree , "<section id='{$id}'>" ) ;
array_push ( $tree->sections , 1 ) ;
}
}
16 years, 11 months
JBossWS SVN: r5510 - projects/wiki/extensions/wiki2xml.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-22 12:04:22 -0500 (Tue, 22 Jan 2008)
New Revision: 5510
Added:
projects/wiki/extensions/wiki2xml/local.php
Modified:
projects/wiki/extensions/wiki2xml/w2x.php
Log:
[JBWS-1960] Adding custom local.php configuration and enabling usage of site parameter
Added: projects/wiki/extensions/wiki2xml/local.php
===================================================================
--- projects/wiki/extensions/wiki2xml/local.php (rev 0)
+++ projects/wiki/extensions/wiki2xml/local.php 2008-01-22 17:04:22 UTC (rev 5510)
@@ -0,0 +1,5 @@
+<?php
+
+$xmlg["site_base_url"] = "jbws.dyndns.org/mediawiki" ;
+
+?>
Modified: projects/wiki/extensions/wiki2xml/w2x.php
===================================================================
--- projects/wiki/extensions/wiki2xml/w2x.php 2008-01-22 14:58:18 UTC (rev 5509)
+++ projects/wiki/extensions/wiki2xml/w2x.php 2008-01-22 17:04:22 UTC (rev 5510)
@@ -461,7 +461,7 @@
print get_form () ;
print "</body></html>" ;
} else { # MediaWiki extension
- $out = get_form ( true ) ;
+ $out = get_form ( false ) ;
}
}
16 years, 11 months
JBossWS SVN: r5509 - stack/native/branches/jbossws-native-2.0.3.QA/src/main/distro.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-22 09:58:18 -0500 (Tue, 22 Jan 2008)
New Revision: 5509
Modified:
stack/native/branches/jbossws-native-2.0.3.QA/src/main/distro/ReleaseNotes.txt
Log:
Update release notes
Modified: stack/native/branches/jbossws-native-2.0.3.QA/src/main/distro/ReleaseNotes.txt
===================================================================
--- stack/native/branches/jbossws-native-2.0.3.QA/src/main/distro/ReleaseNotes.txt 2008-01-22 12:55:23 UTC (rev 5508)
+++ stack/native/branches/jbossws-native-2.0.3.QA/src/main/distro/ReleaseNotes.txt 2008-01-22 14:58:18 UTC (rev 5509)
@@ -25,8 +25,62 @@
What's new in jbossws-(a)version.id@
----------------------------------
+Bug
+
+ * [JBWS-1217] - WSDLtoJava Namespace to package mapping does not support multiple namespaces
+ * [JBWS-1324] - JMS Endpoint - Message delivery starts before endpoint is ready.
+ * [JBWS-1762] - web.xml modified to web.xml.org - Subsequent runs fail
+ * [JBWS-1813] - context-root in jboss.xml is ignored
+ * [JBWS-1819] - wsrunclient script(s) differ and do not always function.
+ * [JBWS-1841] - WebServiceRef injection from DD doesn't work
+ * [JBWS-1873] - WSDL to Java - Incorrect case of generated type for anonymous type.
+ * [JBWS-1876] - Wrong Content-Type in SOAP 1.2 messages
+ * [JBWS-1879] - @BindingType is read from SEI instead of endpoint implementation
+ * [JBWS-1881] - WSDL To Java - All generated types have first character upper case, extends clause in base types do not take this into account.
+ * [JBWS-1906] - Stack overflow exception when reading bad wsdl files
+ * [JBWS-1924] - Verify installation script for jboss-4.2.1.GA
+ * [JBWS-1937] - Document/Literal addressing endpoint fails when retreiving Outbound Action
+ * [JBWS-1939] - URL port information of soap:address is different from import schemaLocation URL
+
Feature Request
+ * [JBWS-1257] - Add configuration for token references
+ * [JBWS-1850] - Documentation support for Java->WSDL
+ * [JBWS-1874] - Allow configuration of secret key wrap algorithm
+ * [JBWS-1880] - WS-Addressing with endpoints using soap 1.2
+ * [JBWS-1897] - Enable/disable logging on every endpoint
+ * [JBWS-1898] - Statistics/logs about clients calling endpoints
+ * [JBWS-1899] - Fine grained management of statistics recording
+ * [JBWS-1904] - Explicitly set the namespace of a WebFault
+ * [JBWS-1911] - Support the JMS transport with JAX-WS
+ * [JBWS-1950] - Show collected records as html table in jmx-console
+
+Errata
+------
+
+ * FIXME [JBCTS-540] EJB3 proxy does not implement the Home interface
+ * FIXME [JBWS-1460] @XmlMimeType on SEI parameter declarations
+ * FIXME [JBWS-1665] incorrect wsdl generation
+ * FIXME [JBWS-1724] wsconsume cannot use part names that are friendly to .NET
+ * FIXME [JBWS-1772] WSConsume output is not correctly redirected
+ * FIXME [JBWS-1773] Verify isolated classloading with WSConsume
+ * FIXME [JBWS-1776] Verify isolated classloading with WSProvide
+ * FIXME [JBWS-751] Multiple schema imports with the same namespace
+ * FIXME [JBWS-798] Complete EventingTestCase
+ * FIXME [JBWS-981] Virtual host configuration for EJB endpoints
+
+
+Enjoy,
+The JBossWS Team
+
+Previous Releases ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+
+What's new in jbossws-2.0.2
+---------------------------
+
+Feature Request
+
* [JBWS-1736] - MTOM property at service-ref level
Bug
@@ -66,12 +120,7 @@
FIXME: [JBWS-751] Multiple schema imports with the same namespace
FIXME: [JBWS-798] Complete EventingTestCase
FIXME: [JBWS-981] Virtual host configuration for EJB endpoints
-
-Enjoy,
-The JBossWS Team
-Previous Releases ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
What's new in jbossws-2.0.0
---------------------------
16 years, 11 months
JBossWS SVN: r5508 - framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-22 07:55:23 -0500 (Tue, 22 Jan 2008)
New Revision: 5508
Modified:
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml
Log:
Fix Native-Distro-AS-4.2.3-JDK6
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml 2008-01-22 12:55:23 UTC (rev 5508)
@@ -29,13 +29,6 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
#
# Build distro
16 years, 11 months
JBossWS SVN: r5507 - in framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs: AS-Tests-AS-4.2.3 and 20 other directories.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-21 08:18:27 -0500 (Mon, 21 Jan 2008)
New Revision: 5507
Modified:
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-4.2.2/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-4.2.3/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-5.0.0/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.0.5-No-EJB3/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.0.5/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.2-JDK6/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.2/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.3-JDK6/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.3/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-5.0.0/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.0.5-No-EJB3/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.0.5/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2-JDK6/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.0.5-No-EJB3/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.0.5/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3/config.xml
framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0/config.xml
Log:
clean remove cxf and metro
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-4.2.2/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-4.2.2/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-4.2.2/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss422 -Djboss422.home=$JBOSS_INSTANCE"
@@ -21,22 +19,8 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
# build and deploy
#
cd $STACKNATIVE
@@ -102,15 +86,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-4.2.3/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-4.2.3/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-4.2.3/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss423 -Djboss423.home=$JBOSS_INSTANCE"
@@ -21,20 +19,6 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
-#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
#
# build and deploy
@@ -102,15 +86,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-5.0.0/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-5.0.0/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/AS-Tests-AS-5.0.0/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss500 -Djboss500.home=$JBOSS_INSTANCE"
@@ -21,20 +19,6 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
-#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss500
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss500
#
# build and deploy
@@ -103,14 +87,6 @@
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
</hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.0.5/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.0.5/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.0.5/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.0.5/workspace/JBossAS-4.0.5/build/output/@hudson.jboss405.build(a)-ejb3
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss405 -Djboss405.home=$JBOSS_INSTANCE"
@@ -75,15 +73,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.0.5-No-EJB3/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.0.5-No-EJB3/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.0.5-No-EJB3/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.0.5/workspace/JBossAS-4.0.5/build/output/(a)hudson.jboss405.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss405.no.ejb3 -Djboss405.home=$JBOSS_INSTANCE"
@@ -75,15 +73,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.2/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.2/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.2/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss422 -Djboss422.home=$JBOSS_INSTANCE"
@@ -22,21 +20,8 @@
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
# build and deploy
#
cd $STACKNATIVE
@@ -89,15 +74,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.2-JDK6/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.2-JDK6/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.2-JDK6/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss422 -Djboss422.home=$JBOSS_INSTANCE"
@@ -32,21 +30,8 @@
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
# build and deploy
#
cd $STACKNATIVE
@@ -99,15 +84,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.3/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.3/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.3/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss423 -Djboss423.home=$JBOSS_INSTANCE"
@@ -21,20 +19,6 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
-#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
#
# build and deploy
@@ -89,15 +73,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.3-JDK6/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.3-JDK6/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-4.2.3-JDK6/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss423 -Djboss423.home=$JBOSS_INSTANCE"
@@ -32,21 +30,8 @@
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
-
-#
# build and deploy
#
cd $STACKNATIVE
@@ -99,15 +84,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-5.0.0/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-5.0.0/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Core-AS-5.0.0/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss500 -Djboss500.home=$JBOSS_INSTANCE"
@@ -22,21 +20,8 @@
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss500
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss500
-
-#
# build and deploy
#
cd $STACKNATIVE
@@ -89,15 +74,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.0.5/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.0.5/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.0.5/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.0.5/workspace/JBossAS-4.0.5/build/output/@hudson.jboss405.build(a)-ejb3
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss405 -Djboss405.home=$JBOSS_INSTANCE"
@@ -81,15 +79,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.0.5-No-EJB3/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.0.5-No-EJB3/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.0.5-No-EJB3/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.0.5/workspace/JBossAS-4.0.5/build/output/(a)hudson.jboss405.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss405.no.ejb3 -Djboss405.home=$JBOSS_INSTANCE"
@@ -81,15 +79,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss422 -Djboss422.home=$JBOSS_INSTANCE"
@@ -21,22 +19,8 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
# Build distro
#
cd $STACKNATIVE
@@ -95,15 +79,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2-JDK6/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2-JDK6/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2-JDK6/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss422 -Djboss422.home=$JBOSS_INSTANCE"
@@ -31,22 +29,8 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
# Build distro
#
cd $STACKNATIVE
@@ -105,15 +89,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss423 -Djboss423.home=$JBOSS_INSTANCE"
@@ -22,21 +20,8 @@
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
-
-#
# Build distro
#
cd $STACKNATIVE
@@ -95,15 +80,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss423 -Djboss423.home=$JBOSS_INSTANCE"
@@ -31,15 +29,8 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
-
-#
# undeploy stack-cxf
#
cd $STACKCXF
@@ -105,15 +96,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss500 -Djboss500.home=$JBOSS_INSTANCE"
@@ -21,22 +19,8 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss500
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss500
-
-#
# Build distro
#
cd $STACKNATIVE
@@ -95,15 +79,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.0.5/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.0.5/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.0.5/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.0.5/workspace/JBossAS-4.0.5/build/output/@hudson.jboss405.build(a)-ejb3
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss405 -Djboss405.home=$JBOSS_INSTANCE"
@@ -75,15 +73,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.0.5-No-EJB3/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.0.5-No-EJB3/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.0.5-No-EJB3/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.0.5/workspace/JBossAS-4.0.5/build/output/(a)hudson.jboss405.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss405.no.ejb3 -Djboss405.home=$JBOSS_INSTANCE"
@@ -75,15 +73,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss422 -Djboss422.home=$JBOSS_INSTANCE"
@@ -21,22 +19,8 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss422
-
-#
# build and deploy
#
cd $STACKNATIVE
@@ -89,15 +73,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss423 -Djboss423.home=$JBOSS_INSTANCE"
@@ -21,22 +19,8 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss423
-
-#
# build and deploy
#
cd $STACKNATIVE
@@ -89,15 +73,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
Modified: framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0/config.xml
===================================================================
--- framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0/config.xml 2008-01-21 10:48:40 UTC (rev 5506)
+++ framework/tags/jbossws-framework-2.0.3.GA/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0/config.xml 2008-01-21 13:18:27 UTC (rev 5507)
@@ -11,8 +11,6 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
STACKNATIVE=$WORKSPACE/stack-native
-STACKMETRO=$WORKSPACE/stack-metro
-STACKCXF=$WORKSPACE/stack-cxf
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
ENVIRONMENT="-Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss500 -Djboss500.home=$JBOSS_INSTANCE"
@@ -21,22 +19,8 @@
# stop jbossas
#
$FRAMEWORKDIR/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
-
+
#
-# undeploy stack-metro
-#
-cd $STACKMETRO
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss500
-
-#
-# undeploy stack-cxf
-#
-cd $STACKCXF
-cp ant.properties.example ant.properties
-./build.sh $ENVIRONMENT undeploy-jboss500
-
-#
# build and deploy
#
cd $STACKNATIVE
@@ -89,15 +73,7 @@
<hudson.scm.SubversionSCM-ModuleLocation>
<remote>@hudson.native.url@</remote>
<local>stack-native</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.metro.url@</remote>
- <local>stack-metro</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
- <hudson.scm.SubversionSCM-ModuleLocation>
- <remote>@hudson.cxf.url@</remote>
- <local>stack-cxf</local>
- </hudson.scm.SubversionSCM-ModuleLocation>
+ </hudson.scm.SubversionSCM-ModuleLocation>
</locations>
<useUpdate>true</useUpdate>
<browser class="hudson.scm.browsers.FishEyeSVN">
16 years, 11 months
JBossWS SVN: r5506 - stack/native/branches/jbossws-native-2.0.3.QA.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-21 05:48:40 -0500 (Mon, 21 Jan 2008)
New Revision: 5506
Added:
stack/native/branches/jbossws-native-2.0.3.QA/jbossws-native-2.0.3.QA.iml
Modified:
stack/native/branches/jbossws-native-2.0.3.QA/version.properties
Log:
Version 2.0.3.GA
Added: stack/native/branches/jbossws-native-2.0.3.QA/jbossws-native-2.0.3.QA.iml
===================================================================
--- stack/native/branches/jbossws-native-2.0.3.QA/jbossws-native-2.0.3.QA.iml (rev 0)
+++ stack/native/branches/jbossws-native-2.0.3.QA/jbossws-native-2.0.3.QA.iml 2008-01-21 10:48:40 UTC (rev 5506)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module version="4" relativePaths="true" type="JAVA_MODULE">
+ <component name="ModuleRootManager" />
+ <component name="NewModuleRootManager" inherit-compiler-output="true">
+ <exclude-output />
+ <content url="file://$MODULE_DIR$">
+ <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
+ <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="false" />
+ </content>
+ <orderEntry type="inheritedJdk" />
+ <orderEntry type="sourceFolder" forTests="false" />
+ <orderEntryProperties />
+ </component>
+</module>
+
Modified: stack/native/branches/jbossws-native-2.0.3.QA/version.properties
===================================================================
--- stack/native/branches/jbossws-native-2.0.3.QA/version.properties 2008-01-21 10:13:58 UTC (rev 5505)
+++ stack/native/branches/jbossws-native-2.0.3.QA/version.properties 2008-01-21 10:48:40 UTC (rev 5506)
@@ -5,8 +5,8 @@
specification.vendor=JBoss (http://www.jboss.org)
specification.version=jbossws-2.0
-version.id=2.1.0.DEV
-repository.id=snapshot
+version.id=2.0.3.GA
+repository.id=2.0.3.GA
implementation.title=JBoss Web Services - Native
implementation.url=http://www.jboss.org/products/jbossws
@@ -24,9 +24,9 @@
wscommons-policy=1.0
# Dependend integration projects
-jbossws-spi=snapshot
-jbossws-common=snapshot
-jbossws-framework=snapshot
+jbossws-spi=1.0.1.GA
+jbossws-common=1.0.3.GA
+jbossws-framework=2.0.3.GA
jbossws-jboss40=4.0.5.SP2
jbossws-jboss42=4.2.1.GA
16 years, 11 months