On Thu, Jan 14, 2010 at 7:16 AM, Coder One <[email protected]> wrote:
> serviceClass is your main entry java interface.
> serviceBean is the bean that implements your java interface (serviceClass)

Thanks.
I'm currently stuck now as

  <simple:client
    id="myServiceClient"
    serviceClass="fqn.MyService"
    address="http://localhost:7011/services/MyService"; />

is causing a
  java.lang.ClassCastException: $Proxy50

when I pull out the client service bean to invoke it from my tests:
    MyService client =
        (MyService) applicationContext.getBean("myServiceClient");

I'm googling now to see how I should be using the client side bean.
I couldn't see any examples on the cxf web site.
I'll also double check the sample directory...

Reply via email to