开发者

Types of connecting SQLServer database to flex3 application

开发者 https://www.devze.com 2023-03-21 10:58 出处:网络
I connected flex application to SQLServer using .NET web service as a mediator. I wanted to know what are the other methods to connect flex with database using .net?

I connected flex application to SQLServer using .NET web service as a mediator. I wanted to know what are the other methods to connect flex with database using .net? that is how i can use remote service and data service instead of web service ?.

Im using webservice like:

<mx:WebService id="flextosql" wsdl="http://localhost:2209/Service1.asmx?WSDL" showBusyCursor="true"/>开发者_JAVA技巧;


You can also use an HTTPService to call any web page to load information. Doing this you can use flashvars (discouraged) or XML or of course just parse the contents (as either text or bytes)

More info on HTTPService here:

http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_2.html

You can also use AMF with RemoteObjects - There are a few providers of RemoteObjects for .NET such as WebOrb

More info on WebOrb here:

http://www.themidnightcoders.com/weborb/

0

精彩评论

暂无评论...
验证码 换一张
取 消