Flex 和 ASP.Net-通过 WebORB 获得会员资格
有人这样做过吗? 我将会员逻辑放入 C# .dll 中,并将连接信息放入 app.config 中。
当我尝试将 C# .dll 与另一个 Windows C# 控制台调试项目一起使用时,我将 App.config 放在控制台应用程序目录中,并调用 C# .dll 方法并且成功,我获得了连接并验证了我的用户数据库。
但是,当我尝试将 C# .dll 和 App.config 与 WebOrb 和 Flex 一起使用时,我迷失了方向。 我找不到放置 App.config 的位置,总是收到“无法连接到 SQL 数据库”:(
或者是否有更好的方法在 Adobe Flex 和 Actionscript 中使用 Asp.Net-Membership?
Have anyone done this? I'm putting the membershiplogic in a C# .dll, and the connection info in an app.config.
When I try to use the C# .dll with another Windows C# console debug project I put the App.config in the consoles application directory, and calling the C# .dll-methods and it suceeds, I get a connection and it validates my users in the Database.
However, when I try to use the C# .dll and App.config with WebOrb and Flex, I'm lost. I can't find where to put the App.config, I always get "Could not connect to the SQL-Database" :(
Or is there a better way to use the Asp.Net-Membership in Adobe Flex and Actionscript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是我错过了一个细节。 当我将 .DLL 放入 weborb30/bin 目录中时,DLL 将查找来自 Web.config 的连接! 因此,当我启用 weborb web.config 连接到数据库时,一切都很好。
The problem was that I missed one detail. When I'm putting the .DLL in the weborb30/bin dir, the DLL will look for connections from the Web.config! So when I enabled my weborb web.config to connect to the database, it all worked out just fine.