1

My client have an application built on Flex and .NET technologies. Flex calls the .NET code through the Flex Florine service. I need to to convert this application into HTML5. For this task, how do I call .NET code in HTML5?

3
  • You have DLL install with your application? Commented Apr 1, 2012 at 15:07
  • Yes..I've a data layer DLL built in c#. Commented Apr 1, 2012 at 19:16
  • HTML5 is not a programming language and cannot "call" anything. Since .NET stuff is Windows only, there is no interface for it. Obviously, there needs to be some other plug-in to do such a thing. Commented Apr 1, 2012 at 20:17

2 Answers 2

1

My first advice to you is to learn about the "Holy Trinity" - HTML5, CSS & JavaScript,
If you want to load your own dll you have some options:

  1. Create your DLL as COM - read about it at http://p2p.wrox.com/javascript/17313-how-call-dll-method-javascritp-urgent.html
  2. Use WPF browser or Silverlight to build xbap or xap file that you can implement in your web site.
  3. Use WCF or web service to expose your dll, so your web site could make http requests.
Sign up to request clarification or add additional context in comments.

Comments

0

I’m not familiar with Flex Florine, but in HTML5, you use JavaScript — specifically, XMLHTTPRequest — to communicate with the server.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.