Re: newbie to MTOM with Aegis

2007-09-10 Thread tog
Freeman, Thanks, I now get into the right method but get an another weird exception that I did not get time yet to explore deeper. 10 sept. 2007 08:20:21 org.apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose INFO: Outbound Message --

Re: newbie to MTOM with Aegis

2007-09-10 Thread Freeman Fang
Hi Guillaume, Is it possible that you send me your project working copy? It would be easier for me to debug and test it. Best Regards Freeman tog wrote: Freeman, Thanks, I now get into the right method but get an another weird exception that I did not get time yet to explore deeper. 10

Re: newbie to MTOM with Aegis

2007-09-09 Thread Freeman Fang
Hi Guillaume, Try to use Object[] response = client.invoke(op, (Object[])objs, context) but not client.invoke(op, (Object[])objs, context, null) Since in Client.java, there is no api for client.invoke(op, (Object[])objs, context, null), so if you use client.invoke(op, (Object[])objs, context,

Re: newbie to MTOM with Aegis

2007-09-07 Thread tog
Hi Freeman, The stacktrace shows Object[] invoke(BindingOperationInfo oi, Object... params) is invoked, but not the Object[] invoke(BindingOperationInfo oi, Object[] params, MapString, Object context,

Re: newbie to MTOM with Aegis

2007-09-07 Thread Freeman Fang
Comment inline tog wrote: Thanks freeman for the answer, You can do it with jaxb databing which is little tricky, by means of adding jaxb annotation @XmlMimeType(application/octet-stream) on DataHandler you can get more details from

Re: newbie to MTOM with Aegis

2007-09-07 Thread tog
Thanks freeman for the answer, You can do it with jaxb databing which is little tricky, by means of adding jaxb annotation @XmlMimeType(application/octet-stream) on DataHandler you can get more details from