1. If I read the JIRA right http://jira.jboss.com/jira/browse/JBAS?report=com.atlassian.jira.plugin.system.project:roadmap-panel
JBoss 4.0.4 final should be released on 10/Dec/05. 2. Yes the ws4ee-deployment file gets merged with the WSDD file. basically if there is a mapping int both the WSDD and the ws4ee-deployment for the same element the ws4ee one will be written over the WSDD one. | <typeMapping | qname='ns2:CustomerArray' xmlns:ns2='http://com.artisnet.nscp.om.endpoint/types' | type='java:com.artisnet.nscp.om.endpoint.CustomerArray' | serializer='com.artisnet.nscp.wsserializer.ObjectGraphSerializerFactory' | deserializer='com.artisnet.nscp.wsserializer.ObjectGraphDeserializerFactory' | encodingStyle=''> | <typeDesc> | <elementDesc fieldName='array' xmlName='array'/> | <elementOrder> | <element name='array'/> | </elementOrder> | </typeDesc> | </typeMapping> | | is an example of a ws4ee entry. What you would need to change in it is the xmlName for elementDesc by adding the namespace before it's name. So something like ns1:array. Note: I did not manage to use this for my needs(did not try extremely hard), after a lot of troubles I managed to compile the webservice module from JBoss 4.0 HEAD and replace it in 4.0.3(which broke some other web service apps due to library dependencies) but the namespace was fixed. This should however work, you will just need to figure exactly how to "tinker" with the xmlName. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3906876#3906876 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3906876 ------------------------------------------------------- SF.Net email is sponsored by: Tame your development challenges with Apache's Geronimo App Server. Download it for free - -and be entered to win a 42" plasma tv or your very own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
