vote up 1 vote down star
1

So, here is a deal. I have client-server application(dotNet remoting). Client side has few trackbars, checkboxes, buttons and picturebox. Server is a console application and does only calculation from client. Client's picturebox make some visualisation of calculation in picturebox. All calulations and relative classes are in dll file.

Now I have to embed client application in web site. All kind of technologies are accepted, but I want to minimize forces applied to embedding. So, what is the best way to do embedding?

flag
your question makes no sense. Pleas eclarify wehat you are trying to do... – Mitch Wheat Jun 14 at 11:50
my task makes no sense=( i need to embed c# application in web site. I can make java applet, but I have to rewrite a lot of code. Thats why i'm looking for alternative ways – flufferok Jun 14 at 11:54

2 Answers

vote up 0 vote down

What about SilverLight or Flash?

link|flag
i've alreade thought about flash. it also requires code rewriting. and what about silverlight, do I need to rewrite code in some way? – flufferok Jun 14 at 12:01
@flufferok: I would expect so. – Mitch Wheat Jun 14 at 12:08
vote up 0 vote down

You need to create a web site that accesses your remoting server and renders output as HTML. I seriously doubt that you will be able to get remoting working inside a browser environment, even using something like Silverlight.

If you don't want to use a full blown web server then use the .net class HttpListener in your server application to create an embedded web server.

link|flag
the main problem is embedding c# controls in web. i can use another server to parse the requests. i just need the easiest way(no code rewriting, or just minimizing it). – flufferok Jun 14 at 12:14
I presume you mean Winforms controls. To my knowledge there is no way of displaying winforms controls in a browser. If your UI was based on WPF you would have more options but with Winforms you are screwed. You really need to ask whoever is setting this requirement, why they want it in a browser. That will help you get to a solution. – Darrel Miller Jun 14 at 12:17
thanks a lot, it's just a task in my university. looks like i hava to rewrite all code to make an Japplet – flufferok Jun 14 at 12:25
Nooooooooo!!!! Anything but! :-) Seriously though, nobody uses Java Applets to deliver content in the web browser. Try Javascript, or Silverlight or even flash, but not Java Applets. Deploy your app as ClickOnce application and it will deploy from the web just as easy as a web application. – Darrel Miller Jun 14 at 12:37
are you sure that silverlight can work with some kind of server application? – flufferok Jun 14 at 12:51
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.