Simple front-end and xs:anyType

2007-09-07 Thread girish sonber
hi , this is my interface: import com.src.capgemini.javapole.data.model.Party; @SOAPBinding(use=SOAPBinding.Use.LITERAL, style=SOAPBinding.Style.DOCUMENT) @WebService(name=WsParty, targetNamespace=http://idserver.adc.capgemini.com/;) public interface WsParty {

Re: Simple front-end and xs:anyType

2007-08-29 Thread Jacob Marcus
Hi, How do you customize the JAXB when using the simple front end.? The article talks about how to do it with the wsdl2ava tool, if I am not mistaken. Has some one tried this with the simple front end? Thanks, Jacob On 8/27/07, James Mao [EMAIL PROTECTED] wrote: You can customize the jaxb

Re: Simple front-end and xs:anyType

2007-08-27 Thread Dan Diephouse
Hi Jacob, You may have to turn on xsi:type writing for aegis. If you're using the API, it'll probably look something like this: ServerFactoryBean sf ... MapString, Object props = new HashMapString, Object(); props.put(AegisDatabinding.WRITE_XSI_TYPE_KEY, true); sf.setProperties(props); Or in

Re: Simple front-end and xs:anyType

2007-08-27 Thread Jacob Marcus
Thanks Dan! I have got it work. I notice one interesting thing though. If I send a Date from the client, it is getting converted to an XMLGregorianCalendarImpl at the server side. I see that there is an existing JIRA issue open on this. (https://issues.apache.org/jira/browse/CXF-369) I changed