Retrieving document at 'null'. ------------------------------ Key: XFIRE-1088 URL: http://jira.codehaus.org/browse/XFIRE-1088 Project: XFire Issue Type: Bug Components: Spring Affects Versions: 1.2.6 Environment: Spring 2.1-m3, Eclipse SDK Version: 3.3.0, Java 6 (jdk 1.6.0_02), Tomcat 6.x Reporter: Manfred Quasten Assignee: Dan Diephouse Priority: Trivial Attachments: SimpleClientTestWithoutSpring.java, SpringClientTest.java, wsdl.xml
I use the XFireClientFactoryBean within a JUnitTest and Spring. The webservice works, but I get the text message Retrieving document at 'null'. My bean-configuration is: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> <bean id="phoneClient" class="org.codehaus.xfire.spring.remoting.XFireClientFactoryBean" > <property name="serviceClass"> <value>de.mq.xfire.service.PhoneService</value> </property> <property name="wsdlDocumentUrl"> <value>http://localhost:8080/wsdemo/services/PhoneService?WSDL</value> </property> </bean> </beans> Without using spring (SimpleClientTestWithoutSpring see attachement), I will not get this message . It seams that this message is been printed, when the ClientFactoryBean is created initializing the applicationcontext. The message is is printed, before the setter of the SpringUnitTest is executed and it is printed when testit is emphty too... Both client did work, and I can access the data...But what is the reason for the message. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email