JBWS-1797 port to JBossAS 4.2.3 causes jaxrpc test to fail
by Richard Opalka
Hi Alessio,
today I was investigating why our JBWS-1792 test is failing on JBoss
AS 4.2.3
(see e.g.:
http://jbws.dyndns.org:8180/hudson/job/Native-Core-AS-4.2.3/29/testReport/)
I discovered, that this problem is caused by your commit in JBoss AS
4.2.3 branch:
Index:
src/main/org/jboss/wsf/container/jboss42/JSEArchiveMetaDataAdapter.java
===================================================================
---
src/main/org/jboss/wsf/container/jboss42/JSEArchiveMetaDataAdapter.java
(revision 68729)
+++
src/main/org/jboss/wsf/container/jboss42/JSEArchiveMetaDataAdapter.java
(revision 68730)
@@ -81,6 +81,11 @@
webMetaData.setServletClassNames(getServletClassMap(wmd));
webMetaData.setConfigName(wmd.getConfigName());
webMetaData.setConfigFile(wmd.getConfigFile());
+ Map contextParams = wmd.getContextParams();
+ if (contextParams.containsKey("jbossws-config-name"))
+
webMetaData.setConfigName((String)contextParams.get("jbossws-config-name"));
+ if (contextParams.containsKey("jbossws-config-file"))
+
webMetaData.setConfigFile((String)contextParams.get("jbossws-config-file"));
webMetaData.setSecurityDomain(wmd.getSecurityDomain());
webMetaData.setPublishLocationAdapter(getPublishLocationAdpater(wmd));
webMetaData.setSecurityMetaData(getSecurityMetaData(wmd.getSecurityContraints()));
I created conditional statement there to do this stuff for JAX-WS
endpoints only on JBoss AS 4.2.3.
However this needs further investigation and allows JAX-RPC endpoints to
work properly
on JBoss AS 4.2.3 as well with your fix.
Just for your information this JAX-RPC test passes on JBoss AS 5.0.0.
--
B.Sc. Richard Opalka
Senior Software Engineer
JBoss, a division of Red Hat
Mobile: +420 731 186 942
Mail: ropalka(a)redhat.com
17 years
jbossxb snapshot
by Heiko Braun
I cannot reveal why we are using jbossxb snapshot.
Does anyone know what issues should solved with it?
/Heiko
17 years
jbossws-framework snapshot
by Alessio Soldano
Hi,
FYI I've just created a new snapshot of the framework to include some
changes to the MemoryBufferRecorder (-r 5457, -r 5458).
The binary also has the patch Thomas committed to prevent NPE when
endpoint is not set (-r5455), thus no further snapshot re-creation is
now required to include this.
Cheers
Alessio
17 years
2.0.3 progress
by Heiko Braun
Ladies and gentlemen,
this is quick heads up on the 2.0.3 release:
* Hudson is doing fine. There's only a single issue left on AS 4.2.3 and
AS 5. Richard takes a look at them
* That mean I can go ahead and create branch 2.0 by tomorrow.
* I am looking for someone who can help me with the J2EE 1.4 TCK runs.
Volunteers please step forward. It's an important and challenging task.
* There is still a bunch of snapshot dependencies: spi, framework,
common and jbossxb. Does someone know what issue is fixed in jbossxb
snapshot? We need to have all of them as tagged versions.
* There's a week to go before code freeze and only 12 issues left.
If you have any concerns regarding the schedule please let me know asap.
Regards,
Heiko
17 years