I found out yesterday that i cant consume a web service with WSE 3.0 capabilities. Well actually it's not that i cant consume, but that when i am adding a Web Reference to the web service i see only the proxy class without the WSE support. So how do trick my VS.NET 2008 to know my proxy class ( lets say the name of this class is ServiceWse) Here is how: In order to trick VS.NET 2008 I am creating a simple project in VS.2005 , it can a Windows form project or a Console Application project. I then...
I am writing some code now days that does an extensive use with the WCE 2.0, don't ask why. Anyway the consumer of the web service is a .NET 3.5 application (Windows app and web app) so I tried adding a web reference in the only way I know, using the "Add web reference" from the project's context menu. I was amazed to see that the menu option disappeared. If you don't remember what i am talking about, here is the menu from vs.net 2005: So I understood that the reason for that...
I have been asked these days to find a solution of how to call WCF service from old asp 3 code , Not ASP.NET, but asp 3. you know: VBScript, option explicit, dim..... :-) Apparently this is not trivial task at all. If you try to read about it on the net the following "buzzwords" will come up: Pox, REST, RestFull service, WebGet, WebInvoke.... In simple words, POX is a "plain old xml" meaning messages that consist solely of XML payloads without any enclosing SOAP envelope.We will...