Вот мой веб-сервис coldfusion.Когда я использую инструмент soapUI для вызова «test», я получаю эту ошибку
"<ns1:stackTrace xmlns:ns1="http://xml.apache.org/axis/">org.xml.sax.SAXParseException: Premature end of file."
.
Может кто-нибудь помочь мне в этом вопросе?Я уже работал в сети, но не повезло.Любой вопрос кода?
мне нужно использовать тег <cfproperty>
?
<cfcomponent output="false">
<!--- initialisation --->
<cffunction
name="init"
output="false"
hint="return an initialized object.">
<!--- Return THIS reference. --->
<cfreturn THIS />
</cffunction>
<!--- ping --->
<cffunction
name="test"
access="remote"
returntype="numeric"
output="false"
hint="return an true = 0.">
<!--- declare local variables --->
<cfset var local = 0 />
<!--- Return 0. --->
<cfreturn local />
</cffunction>
</cfcomponent>