Click here to Skip to main content
15,885,546 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to use CSS template with MVC 3 applications? [Solved] Pin
nik12129-Aug-11 10:50
nik12129-Aug-11 10:50 
QuestionRemote control a vb.net application from the Internet? is this possible? [modified] PinPopular
per7828-Aug-11 5:28
per7828-Aug-11 5:28 
AnswerRe: Remote control a vb.net application from the Internet? is this possible? Pin
Shameel28-Aug-11 9:09
professionalShameel28-Aug-11 9:09 
GeneralRe: Remote control a vb.net application from the Internet? is this possible? Pin
super28-Aug-11 22:19
professionalsuper28-Aug-11 22:19 
GeneralRe: Remote control a vb.net application from the Internet? is this possible? Pin
Keith Barrow28-Aug-11 22:53
professionalKeith Barrow28-Aug-11 22:53 
GeneralRe: Remote control a vb.net application from the Internet? is this possible? Pin
Shameel28-Aug-11 23:07
professionalShameel28-Aug-11 23:07 
GeneralRe: Remote control a vb.net application from the Internet? is this possible? Pin
Keith Barrow28-Aug-11 23:25
professionalKeith Barrow28-Aug-11 23:25 
AnswerRe: Remote control a vb.net application from the Internet? is this possible? Pin
Keith Barrow28-Aug-11 23:13
professionalKeith Barrow28-Aug-11 23:13 
Yes you can do this, but not from ASP.NET directly. With ASP.NET the web server is exactly that: a server that takes requests from the client so the client must initiate communication, this is the opposite of what you want to achieve. You have two basic courses of action

1) Make the client poll the server periodically for actions it must perform. This has the advantage of not needing to open up any ports or other firewall settings, but has the disadvantage that actions are queued until polled, so there is a time delay. You could write a custom .HttpHandler[^] to take process Http posts requests which get the instruction to be processed by the client. The handler is registered on the web server it and you call it directly from your VB app.

2) Allow your application to take RPC (remote procedure calls): The client registers itself with the website and acts as a server, the "Web Server" then becomes a client: it calls a method on the Player app remotely from the asp.net interface. The main disadvantage of this is that you open up the client as a server, and users may not want this. The easiest way is to use WCF: you include a WCF service with your Player that calls the player functionality. The Web Server has a set of proxy classes (easy to generate) that call the service from the web-page.

GeneralRe: Remote control a vb.net application from the Internet? is this possible? Pin
per7829-Aug-11 8:50
per7829-Aug-11 8:50 
GeneralRe: Remote control a vb.net application from the Internet? is this possible? Pin
Keith Barrow29-Aug-11 10:08
professionalKeith Barrow29-Aug-11 10:08 
Questionwhois - registration "history" Pin
devvvy27-Aug-11 22:15
devvvy27-Aug-11 22:15 
AnswerRe: whois - registration "history" Pin
Gregory Gadow29-Aug-11 5:56
Gregory Gadow29-Aug-11 5:56 
QuestionAccessing DB2 physical file from ASP.NET Pin
Member 322226426-Aug-11 17:33
Member 322226426-Aug-11 17:33 
QuestionAdding dotfuscated assembly to websetup project. Pin
Pritish Sahoo26-Aug-11 4:11
Pritish Sahoo26-Aug-11 4:11 
QuestionHow to register and use MyCustomControl? [modified] Pin
Savun Cheam25-Aug-11 18:48
Savun Cheam25-Aug-11 18:48 
AnswerRe: How to register and use MyCustomControl? Pin
Pravin Patil, Mumbai25-Aug-11 21:32
Pravin Patil, Mumbai25-Aug-11 21:32 
GeneralRe: How to register and use MyCustomControl? Pin
prabhatkumartiwari28-Aug-11 19:23
prabhatkumartiwari28-Aug-11 19:23 
GeneralRe: How to register and use MyCustomControl? Pin
Savun Cheam30-Aug-11 17:09
Savun Cheam30-Aug-11 17:09 
QuestionRepeat table onclick Pin
Nannab24-Aug-11 14:12
Nannab24-Aug-11 14:12 
AnswerRe: Repeat table onclick Pin
Not Active24-Aug-11 16:36
mentorNot Active24-Aug-11 16:36 
GeneralRe: Repeat table onclick Pin
Nannab25-Aug-11 3:28
Nannab25-Aug-11 3:28 
GeneralRe: Repeat table onclick Pin
Not Active25-Aug-11 4:08
mentorNot Active25-Aug-11 4:08 
GeneralRe: Repeat table onclick Pin
Nannab26-Aug-11 15:13
Nannab26-Aug-11 15:13 
GeneralRe: Repeat table onclick Pin
Not Active27-Aug-11 3:53
mentorNot Active27-Aug-11 3:53 
GeneralRe: Repeat table onclick Pin
Nannab27-Aug-11 15:16
Nannab27-Aug-11 15:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.