Hello,

I'm building a super simple web service and am getting the following error:
"Could not perform web service invocation "getRandomFact" because AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: org.xml.sax.SAXParseException: Document root element is
missing....."

So what's my problem?? I've seen dozens of examples just like the one
attached. Any help would be MUCH MUCH appreciated.

CF Version: 6,1,0,63958





Here's my super simple component:
<cfcomponent displayname="randomfact" hints="returns update version for lacie
software">
<cffunction name="getRandomFact" returnType="string" access="remote"
output="no">
<cfset theFact = "A ducks quack doesnt echo.">
<cfreturn theFact>
</cffunction>
</cfcomponent>

Here's my super simple consumer:
<body>
<cfinvoke
webservice="http://*mydomainishere*/testservice/randomfact.cfc?wsdl"
method="getRandomFact" returnvariable="thefact">
</cfinvoke>

<cfoutput>#theFact#</cfoutput>
</body>