views:

22

answers:

1

Hy people!

Is there any option to connect from other computer ton my localhost(if i actually run a Visual Studio project --> a Silverlight web application)????

Because i want tu use my local as my own iis server, and i want to test(when actually run) from other computer!!!

Please Help...

A: 

Hi! Generally, it's a bad idea to have 11 exclamation marks in your question title.

Concerning your problem, is it an automatically launched test-server or have you set it up on your IIS under it's own application?

I would recommend that you set up an IIS application and link a virtual directory to your silverlight project source.

If you have IIS installed, you could deploy your project to c:\inetpub\wwwroot\MySilverlightProject or something. Make sure your firewall allows incoming port 80. The easiest way would be to just copy your silverlight project to that folder.

This assumes it's a project which involves some kind of website. This assumption I derived from your wish to host it on a webserver.

Phil