Simple types are returning correctly.  I have four methods on the service
below... methods returning Strings are working... other methods return
business objects.  I can step through the service on the server and those
methods are returning the correct values.  No exceptions are thrown and the
object contains all null values in the client.

Spring Wiring:
   <!-- Local -->
    <bean id="PricingServiceImpl" class="
com.gdservices.service.thirdparty.PricingServiceImpl">
        <property name="daoFactory">
            <ref bean="hibernateDAOFactory"/>
        </property>
    </bean>
    <!-- Web -->
    <jaxws:endpoint
      id="pricingService"
      implementor="#PricingServiceImpl"
      address="/pricingService" />


I'm currently only using the @Webservice annotation and no method level
annotations.   Anyone else seen this?

Reply via email to