我到处找都找不到这个地址。
我有一个Flash媒体服务器脚本,它在用户连接时将数据写入ASP.Net webservice。它工作得很好,但如果可能的话,我想锁定安全系统。
我能想到的最好的办法是在客户端flv的flashVars中添加一个令牌,然后在进行web服务调用时通过FMS传递它,但如果可能的话,我更喜欢另一种方法。使用SOAP身份验证的东西?
load("webservices/WebServices.asc");
application.onAppStart = function()
{
application.allowDebug = true;
webServiceObj = new WebService('http://webserviceURI.asmx?WSDL');
webServiceObj.onLoad = function(Wsdl){
trace("result string -- " + Wsdl);
}
webServiceObj.onFault = function(fault){
trace("web service fault --" + fault.faultstring);
}
}
application.onConnect = function(client, name, guid, role, sessID)
{
callWebMethod = webServiceObj.MyWebSErviceFunction(parameters...)
callWebMethod.onResult = function(returning){
trace("called back from WebService");
}
}