Creating ASPCOM to consume WCF Web Service
I'm trying to send messages. The process goes something like this :-
ASP ---(server.createobject)--> COM Object ----(invoke method)----> WCF Web Service
All running on IIS.
So i can send messages from ASP COM to WCF Web Service. Typical processes to do this is :
a) Make your DLL ComVisible
b) Sign it
c) regasm (ok to skipped coz VS might register for you automatically)
d) gacutil
e) To place your App.config file during deployment, go and update Web Service Configuration file ----> w3wp.exe.config/aspnet_wp.exe.config.
I did this before. Just couldn't figure out why it slipped my mind.
Comments