Author: thomas.diesler(a)jboss.com
Date: 2007-08-13 13:06:55 -0400 (Mon, 13 Aug 2007)
New Revision: 4346
Modified:
stack/native/branches/native-2.0/ant-import/build-thirdparty.xml
stack/native/branches/native-2.0/src/test/java/org/jboss/test/ws/jaxrpc/marshall/MarshallTest.java
Log:
[JBWS-1617] JAXRPC doc/literal trims empty string. Temporarily using jbossxb snapshot
Modified: stack/native/branches/native-2.0/ant-import/build-thirdparty.xml
===================================================================
--- stack/native/branches/native-2.0/ant-import/build-thirdparty.xml 2007-08-13 16:39:50
UTC (rev 4345)
+++ stack/native/branches/native-2.0/ant-import/build-thirdparty.xml 2007-08-13 17:06:55
UTC (rev 4346)
@@ -127,9 +127,12 @@
<unzip dest="${thirdparty.dir}/jbpm-bpel"
src="${thirdparty.dir}/jbpm-bpel.sar"/>
<unzip dest="${thirdparty.dir}"
src="${thirdparty.dir}/ejb3.deployer.zip"/>
- <get
src="http://snapshots.jboss.org/maven2/org/jboss/jbossxb/2.0.0-SNAPS...
dest="${thirdparty.dir}/jbossxb-2.0.0-20070620.094346-1.jar"
usetimestamp="true" verbose="true"/>
- <get
src="http://snapshots.jboss.org/maven2/jboss/jbossxb/jbossxb/1.0.0-S...
dest="${thirdparty.dir}/jbossxb-1.0.0-20070620.100638-1.jar"
usetimestamp="true" verbose="true"/>
-
+ <!--
+ [JBWS-1617] JAXRPC doc/literal trims empty string
+ -->
+ <get
src="http://snapshots.jboss.org/maven2/org/jboss/jbossxb/1.0.0-SNAPS...
dest="${thirdparty.dir}/jbossxb-1.0.0-snapshot.jar"
usetimestamp="true" verbose="true"/>
+ <copy tofile="${thirdparty.dir}/jboss-xml-binding.jar"
file="${thirdparty.dir}/jbossxb-1.0.0-snapshot.jar"/>
+
<checksum file="${core.dir}/version.properties"
fileext=".md5"/>
</target>
Modified:
stack/native/branches/native-2.0/src/test/java/org/jboss/test/ws/jaxrpc/marshall/MarshallTest.java
===================================================================
---
stack/native/branches/native-2.0/src/test/java/org/jboss/test/ws/jaxrpc/marshall/MarshallTest.java 2007-08-13
16:39:50 UTC (rev 4345)
+++
stack/native/branches/native-2.0/src/test/java/org/jboss/test/ws/jaxrpc/marshall/MarshallTest.java 2007-08-13
17:06:55 UTC (rev 4346)
@@ -608,10 +608,15 @@
String out = stringTest(in);
assertEquals(in, out);
- System.out.println("FIXME: [JBWS-1617] JAXRPC doc/literal trims empty
string");
- //in = " ";
- //out = stringTest(in);
- //assertEquals(in, out);
+ if (isTargetJBoss50())
+ {
+ System.out.println("FIXME: [JBWS-1617] JAXRPC doc/literal trims empty
string");
+ return;
+ }
+
+ in = " ";
+ out = stringTest(in);
+ assertEquals(in, out);
}
public void testStringSpecialChars() throws Exception