Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
i want to show a program that is running in a server to users that visit my site, something like browserstack
how can i do this work?
Posted
Comments
[no name] 30-Mar-14 7:26am    
That website is not doing what you say it's doing. If this is really not SPAM, create some requirements, do some research and write some code.
Member 10710202 30-Mar-14 7:33am    
i didnt find anything...
it opens browsers and show your link on it...
i think browsers are program...!!!
Raul Iloc 31-Mar-14 1:35am    
I gave you a solution for showing reports in your web application about the applications that are executing on your server.
I saw that first you have accepted it then UnDo the acceptance. Do you encounter any problem or my solution is not that you want?
Member 10710202 1-Apr-14 6:55am    
thank you raul... but i cant still test your solution. if it works i will accept your solution for helping other users.
Raul Iloc 1-Apr-14 7:31am    
OK, no problem! The solution should work because I am using something similar in some project.

1 solution

First all web application are running on web servers and they have limited controls and access on the servers. The users of the web application are using web browsers to access the web pages of the web application.

In order to show reports in your web application about the applications that are executing on your servers you could use the next solution:

1.Implement a windows service supplication that must be installed on your server that you want to monitor, and implement in the service application the logic that read the information about the application that are running on the server. This service application should communicate with the web application by implementing a web service (or better by implementing a WCF service);

2.Your web application must be extended to can access the web service (or must be the WCF client) and then to use the results (provided by the service application) into a report that will be shown at the user request.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900