Click here to Skip to main content
16,019,764 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to link web application to windows form..
meaning..... i want to have a link in web application that will call windows form to do branch processing?
Posted

1 solution

Not a good idea. You cannot call a windows form application on the client machine - security will not allow that, it is classed as "probable virus activity" and you don't want to call a winforms app on the server, because there will be no-one there to look at it.

Instead, create the processing class in a DLL, and call that instead.
 
Share this answer
 
Comments
Karwa_Vivek 10-Jun-11 6:08am    
where as Reverse is Possible.
OriginalGriff 10-Jun-11 6:16am    
Sorry? Would you please try to explain that in more detail?
Karwa_Vivek 10-Jun-11 6:26am    
I just mean to say that calling a web service from a windows application is
Possible and it doesn't have any security issues also..am I Right ?
OriginalGriff 10-Jun-11 6:33am    
Calling a web service from a windows application will work fine.
zamani2 13-Jun-11 3:57am    
how can i do that

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