Question
.NET Web Service
I created a web service using VB.net that is used to access a
handful of .dbf files. The VB.net code works, the files are read
and data is returned. I want to be able to access the web service
using CF so I can manipulate the data and move it to SQL Server to
be accessed via a web application. However, when I try to access
the web service I get the following:
Cannot perform web service invocation GetData.
The fault returned when invoking the web service operation is:
AxisFault
faultCode: { http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: org.xml.sax.SAXException: Deserializing parameter 'GetDataResult': could not find deserializer for type { http://www.w3.org/2001/XMLSchema}anyType
faultActor:
faultNode:
faultDetail:
{ http://xml.apache.org/axis/}stackTrace:org.xml.sax.SAXException: Deserializing parameter 'GetDataResult': could not find deserializer for type { http://www.w3.org/2001/XMLSchema}anyType
at org.apache.axis.message.RPCHandler.onStartChild(RPCHandler.java:277)
at org.apache.axis.encoding.DeserializationContext.startElement(DeserializationContext.java:1035)
at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:165)
at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
at org.apache.axis.client.Call.invo... ''
The data is being returned from the web service as xml. The web service converts the DataSet to xml and then returns it to the calling cfc.
I have racked my mind and scoured the internet looking for information. Any help is greatly appreciated.
Thanks.
Cannot perform web service invocation GetData.
The fault returned when invoking the web service operation is:
AxisFault
faultCode: { http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: org.xml.sax.SAXException: Deserializing parameter 'GetDataResult': could not find deserializer for type { http://www.w3.org/2001/XMLSchema}anyType
faultActor:
faultNode:
faultDetail:
{ http://xml.apache.org/axis/}stackTrace:org.xml.sax.SAXException: Deserializing parameter 'GetDataResult': could not find deserializer for type { http://www.w3.org/2001/XMLSchema}anyType
at org.apache.axis.message.RPCHandler.onStartChild(RPCHandler.java:277)
at org.apache.axis.encoding.DeserializationContext.startElement(DeserializationContext.java:1035)
at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:165)
at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
at org.apache.axis.client.Call.invo... ''
The data is being returned from the web service as xml. The web service converts the DataSet to xml and then returns it to the calling cfc.
I have racked my mind and scoured the internet looking for information. Any help is greatly appreciated.
Thanks.
