Hi, with a multi tiers project, I am using spring mvc 3.1, CXF 2.
When I submit data via a submit-form, I meet the following exception:

[code]
22:43:29,916 FINE  [org.apache.cxf.phase.PhaseInterceptorChain]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3) Invoking handleMessage on
interceptor org.apache.cxf.ws.policy.PolicyOutInterceptor@24250536
22:43:29,917 FINE  [org.apache.cxf.phase.PhaseInterceptorChain]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3) Invoking handleMessage on
interceptor org.apache.cxf.jaxws.interceptors.HolderOutInterceptor@1d867c00
22:43:29,917 FINE  [org.apache.cxf.jaxws.interceptors.HolderOutInterceptor]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3) op: [OperationInfo:
{http://service.vendor.houseware/}create]
22:43:29,917 FINE  [org.apache.cxf.jaxws.interceptors.HolderOutInterceptor]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3) op.hasOutput(): true
22:43:29,917 FINE  [org.apache.cxf.jaxws.interceptors.HolderOutInterceptor]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3) op.getOutput().size(): 1
22:43:29,918 FINE  [org.apache.cxf.phase.PhaseInterceptorChain]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3) Invoking handleMessage on
interceptor org.apache.cxf.jaxws.interceptors.SwAOutInterceptor@5b7fe066
22:43:29,918 FINE  [org.apache.cxf.phase.PhaseInterceptorChain]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3) Invoking handleMessage on
interceptor
org.apache.cxf.jaxws.interceptors.WrapperClassOutInterceptor@28657778
*22:43:29,920 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)
*java.lang.IllegalArgumentException: argument type mismatch*
22:43:29,920 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at*
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
22:43:29,921 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
22:43:29,921 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
22:43:29,921 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
java.lang.reflect.Method.invoke(Method.java:597)
22:43:29,921 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.apache.cxf.databinding.AbstractWrapperHelper.createWrapperObject(AbstractWrapperHelper.java:99)
22:43:29,921 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.apache.cxf.jaxws.interceptors.WrapperClassOutInterceptor.handleMessage(WrapperClassOutInterceptor.java:105)
22:43:29,922 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:263)
22:43:29,922 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:531)
22:43:29,922 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:461)
22:43:29,922 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:364)
22:43:29,923 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:317)
22:43:29,923 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:88)
22:43:29,923 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:134)
22:43:29,923 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
*$Proxy109.create(Unknown Source)
22:43:29,924 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
ix.vendor.AddressManagerBean.create(AddressManagerBean.java:185)*
22:43:29,924 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
22:43:29,924 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
22:43:29,924 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
22:43:29,924 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
java.lang.reflect.Method.invoke(Method.java:597)
22:43:29,925 ERROR [stderr]
(http-portal.ixsystems.com.au-192.168.1.20-8080-3)  at
org.jboss.as.ee.component.ManagedReferenceMethodInterceptorFactory$ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodInterceptorFactory.java:72)
[/code]

Is there any way I can track down the error?
Any suggestion is well appreciated.
Thanks
Sam



--
View this message in context: 
http://cxf.547215.n5.nabble.com/java-lang-IllegalArgumentException-argument-type-mismatch-tp5712055.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to