JBossWS SVN: r13955 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-03-29 12:12:23 -0400 (Tue, 29 Mar 2011)
New Revision: 13955
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3228] Restore passing tests
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-03-29 07:51:15 UTC (rev 13954)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-03-29 16:12:23 UTC (rev 13955)
@@ -1008,10 +1008,6 @@
<!-- # [JBWS-3227] handles config file not found on classpath -->
<exclude>org/jboss/test/ws/jaxws/jbws3034/**</exclude>
- <!-- # [JBWS-3228] seems we need to use woodstox for WS endpoints? -->
- <exclude>org/jboss/test/ws/jaxws/samples/provider/ProviderJAXBTestCase*</exclude>
- <exclude>org/jboss/test/ws/jaxws/samples/httpbinding/HttpJAXBTestCase*</exclude>
-
<!-- # [JBWS-3229] DOMUtils issue on test classpath - probably missing xercesImpl on CP? -->
<exclude>org/jboss/test/ws/jaxws/jbws2960/**</exclude>
13 years, 9 months
JBossWS SVN: r13954 - in stack/native/trunk/modules/resources/src/main/resources: resources and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-03-29 03:51:15 -0400 (Tue, 29 Mar 2011)
New Revision: 13954
Removed:
stack/native/trunk/modules/resources/src/main/resources/modules/org/codehaus/woodstox/
Modified:
stack/native/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
Log:
do not create woodstox artifact - it's present in AS7 upstream now
Modified: stack/native/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
===================================================================
--- stack/native/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2011-03-29 07:50:17 UTC (rev 13953)
+++ stack/native/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2011-03-29 07:51:15 UTC (rev 13954)
@@ -339,11 +339,6 @@
<include name="**/jettison.jar"/>
</fileset>
</copy>
- <copy todir="@{targetdir}/org/codehaus/woodstox/main" flatten="false" overwrite="true">
- <fileset dir="@{thirdpartydir}/lib">
- <include name="**/wstx.jar"/>
- </fileset>
- </copy>
<copy todir="@{targetdir}/org/jboss/jaxbintros/main" flatten="false" overwrite="true">
<fileset dir="@{thirdpartydir}/lib">
<include name="**/jboss-jaxb-intros.jar"/>
13 years, 9 months
JBossWS SVN: r13953 - stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2011-03-29 03:50:17 -0400 (Tue, 29 Mar 2011)
New Revision: 13953
Modified:
stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ProviderImpl.java
Log:
[JBWS-3254]:Add the missed jaxws2.2 methods
Modified: stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ProviderImpl.java
===================================================================
--- stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ProviderImpl.java 2011-03-29 02:37:53 UTC (rev 13952)
+++ stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ProviderImpl.java 2011-03-29 07:50:17 UTC (rev 13953)
@@ -32,6 +32,7 @@
import javax.xml.transform.Source;
import javax.xml.ws.Binding;
import javax.xml.ws.Endpoint;
+import javax.xml.ws.EndpointContext;
import javax.xml.ws.EndpointReference;
import javax.xml.ws.WebServiceFeature;
import javax.xml.ws.spi.Invoker;
@@ -403,6 +404,20 @@
setContextClassLoader(origClassLoader);
}
}
+
+ @Override
+ //jaxws2.2 api
+ public void setEndpointContext(EndpointContext ctxt)
+ {
+ delegate.setEndpointContext(ctxt);
+ }
+
+ @Override
+ //jaxws2.2 api
+ public void publish(javax.xml.ws.spi.http.HttpContext context)
+ {
+ delegate.publish(context);
+ }
}
}
13 years, 9 months
JBossWS SVN: r13952 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2011-03-28 22:37:53 -0400 (Mon, 28 Mar 2011)
New Revision: 13952
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java
Log:
JBWS-3251:Add check owner document in addChild(SOAPElement child)
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java 2011-03-28 21:46:51 UTC (rev 13951)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java 2011-03-29 02:37:53 UTC (rev 13952)
@@ -274,8 +274,17 @@
*/
public SOAPElement addChildElement(SOAPElement child) throws SOAPException
{
- SOAPElementImpl soapElement = (SOAPElementImpl)child;
- soapElement = (SOAPElementImpl)appendChild(soapElement);
+ SOAPElementImpl soapElement = (SOAPElementImpl) child;
+
+ if (soapElement.domNode.getOwnerDocument() != element.getOwnerDocument())
+ {
+ Document oldDoc = DOMUtils.peekOwnerDocument();
+ DOMUtils.setOwnerDocument(element.getOwnerDocument());
+ soapElement = (SOAPElementImpl) SOAPFactoryImpl.newInstance().createElement((Element) (soapElement.domNode));
+ DOMUtils.setOwnerDocument(oldDoc);
+
+ }
+ soapElement = (SOAPElementImpl) appendChild(soapElement);
return soapElement.completeNamespaceDeclaration();
}
13 years, 9 months
JBossWS SVN: r13951 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-03-28 17:46:51 -0400 (Mon, 28 Mar 2011)
New Revision: 13951
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3227][JBWS-3228][JBWS-3229] updating native excludes
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-03-28 21:07:03 UTC (rev 13950)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-03-28 21:46:51 UTC (rev 13951)
@@ -837,16 +837,6 @@
<exclude>org/jboss/test/ws/jaxws/jbws3182/**</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/jmstransport/**</exclude>
- <!-- # [JBWS-3227] handles config file not found on classpath -->
- <exclude>org/jboss/test/ws/jaxws/jbws3034/**</exclude>
-
- <!-- # [JBWS-3228] seems we need to use woodstox for WS endpoints? -->
- <exclude>org/jboss/test/ws/jaxws/samples/provider/ProviderJAXBTestCase*</exclude>
- <exclude>org/jboss/test/ws/jaxws/samples/httpbinding/HttpJAXBTestCase*</exclude>
-
- <!-- # [JBWS-3229] DOMUtils issue on test classpath - probably missing xercesImpl on CP? -->
- <exclude>org/jboss/test/ws/jaxws/jbws2960/**</exclude>
-
<!-- # [JBWS-3232] javax.naming.NameNotFoundException: Name 'service' not found in context 'env' -->
<exclude>org/jboss/test/ws/jaxws/jbws3140/**</exclude>
13 years, 9 months
JBossWS SVN: r13950 - in stack/native/trunk/modules: resources/src/main/resources/resources and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-03-28 17:07:03 -0400 (Mon, 28 Mar 2011)
New Revision: 13950
Modified:
stack/native/trunk/modules/dist/management/pom.xml
stack/native/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
stack/native/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3225] resuscitating JBossWS native console
Modified: stack/native/trunk/modules/dist/management/pom.xml
===================================================================
--- stack/native/trunk/modules/dist/management/pom.xml 2011-03-28 02:34:44 UTC (rev 13949)
+++ stack/native/trunk/modules/dist/management/pom.xml 2011-03-28 21:07:03 UTC (rev 13950)
@@ -89,6 +89,11 @@
<filtering>true</filtering>
</resource>
</webResources>
+ <archive>
+ <manifestEntries>
+ <Dependencies>org.jboss.as.webservices services,org.jboss.ws.native.jbossws-native-core services,org.jboss.ws.common</Dependencies>
+ </manifestEntries>
+ </archive>
</configuration>
</plugin>
</plugins>
Modified: stack/native/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
===================================================================
--- stack/native/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2011-03-28 02:34:44 UTC (rev 13949)
+++ stack/native/trunk/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2011-03-28 21:07:03 UTC (rev 13950)
@@ -410,6 +410,8 @@
<fail message="installserver must be specified" unless="installserver"/>
<fail message="thirdpartydir must be specified" unless="thirdpartydir"/>
<macro-deploy-jbossws-modules targetdir="${installserver}/modules" thirdpartydir="${thirdpartydir}"/>
+ <macro-deploy-jbossws-deployment targetdir="${installserver}/standalone/deployments/jbossws-console.war" thirdpartydir="${thirdpartydir}"/>
+ <touch file="${installserver}/standalone/deployments/jbossws-console.war.dodeploy"/>
</target>
<!-- ================================================================== -->
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-03-28 02:34:44 UTC (rev 13949)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-03-28 21:07:03 UTC (rev 13950)
@@ -830,9 +830,6 @@
<exclude>org/jboss/test/ws/jaxws/smoke/tools/*ScriptTestCase*</exclude>
<exclude>org/jboss/test/ws/jaxws/smoke/tools/WSRunClientTestCase*</exclude>
- <!-- # [JBWS-3225] jbossws console not yet available -->
- <exclude>org/jboss/test/ws/console/**</exclude>
-
<!-- # [JBWS-3226] jboss-service.xml not matching AS7 format -->
<exclude>org/jboss/test/ws/jaxws/jbws1854/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws1988/UsernameAuthTestCase*</exclude>
13 years, 9 months
JBossWS SVN: r13949 - stack/native/tags.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2011-03-27 22:34:44 -0400 (Sun, 27 Mar 2011)
New Revision: 13949
Added:
stack/native/tags/jbossws-native-3.4.0.SP1/
Log:
Retag again to inlcude the fix for addChild issue
13 years, 9 months
JBossWS SVN: r13948 - stack/native/tags.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2011-03-27 22:23:07 -0400 (Sun, 27 Mar 2011)
New Revision: 13948
Removed:
stack/native/tags/jbossws-native-3.4.0.SP1/
Log:
Remove this tag
13 years, 9 months
JBossWS SVN: r13946 - stack/native/branches/jbossws-native-3.4.0.SP1/modules/core/src/main/java/org/jboss/ws/core/soap.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2011-03-26 23:17:27 -0400 (Sat, 26 Mar 2011)
New Revision: 13946
Modified:
stack/native/branches/jbossws-native-3.4.0.SP1/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java
Log:
[JBWS-3251]:Check the owner document in addChildElement(SOAPElement child)
Modified: stack/native/branches/jbossws-native-3.4.0.SP1/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java
===================================================================
--- stack/native/branches/jbossws-native-3.4.0.SP1/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java 2011-03-25 16:17:45 UTC (rev 13945)
+++ stack/native/branches/jbossws-native-3.4.0.SP1/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java 2011-03-27 03:17:27 UTC (rev 13946)
@@ -274,8 +274,17 @@
*/
public SOAPElement addChildElement(SOAPElement child) throws SOAPException
{
- SOAPElementImpl soapElement = (SOAPElementImpl)child;
- soapElement = (SOAPElementImpl)appendChild(soapElement);
+ SOAPElementImpl soapElement = (SOAPElementImpl) child;
+
+ if (soapElement.domNode.getOwnerDocument() != element.getOwnerDocument())
+ {
+ Document oldDoc = DOMUtils.peekOwnerDocument();
+ DOMUtils.setOwnerDocument(element.getOwnerDocument());
+ soapElement = (SOAPElementImpl) SOAPFactoryImpl.newInstance().createElement((Element) (soapElement.domNode));
+ DOMUtils.setOwnerDocument(oldDoc);
+
+ }
+ soapElement = (SOAPElementImpl) appendChild(soapElement);
return soapElement.completeNamespaceDeclaration();
}
13 years, 9 months