I am trying to access a .net web service with the JaxRpcPortProxyFactoryBean. The issue is I get a file not found when using the following syntax. Has anyone had any luck using the JaxRpcPortProxyFactoryBean and .NET.

<bean id="reportingService" class="org.springframework.remoting.jaxrpc.JaxRpcP ortProxyFactoryBean">
<property name="wsdlDocumentUrl">
<value>http://sqldev/reportserver/ReportService.asmx?WSDL</value>
</property>
<property name="serviceInterface">
<value>rs.beans.ReportingService</value>
</property>
<property name="portInterface">
<value>rs.beans.ReportingRemote</value>
</property>
<property name="namespaceUri">
<value>http://schemas.microsoft.com/sqlserver/2003/12/reporting/reportingservices</value>
</property>
<property name="serviceName">
<value>ReportingService</value>
</property>
<property name="portName">
<value>ReportingServiceSoap</value>
</property>
<property name="serviceFactoryClass">
<value>org.apache.axis.client.ServiceFactory</value>
</property>
</bean>


Thank you in advance.