我正在尝试使用ColdFusion 9中的SOAP Webservice(Java代码)。
<cfset ps = CreateObject("webservice", "MySoapService")>
<cfscript>
ps.login('me@example.com', 'password');
ps.sendEmail('sendto@example.com');
</cfscript>
我在java项目中使用这个SOAP webservice,它运行良好。登录过程运行良好,但使用sendEmail进程,我收到NotAuthenticateException。
我不习惯与CF合作。是否有可能在login和sendEmail进程之间重置对象?