[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

Using Activator.GetObject to get Web Service

Craig Neuwirt

8/28/2003 1:17:00 PM

Is it possible to use the Activator.GetObject interface to access a Web
Service?

e.g.

Activator.GetObject(http://localhost/MyServive.asmx);

If so, what do you get back and how do you configure .Net remoting since the
parameters passed to a web service are XML serializable, but not necessarily
binary serializable?

thanks,
craig


1 Answer

Dino Chiesa [MSFT]

8/29/2003 3:47:00 PM

0

what do you want to do?

Web services and remoting are two different things.

Do you want BOTH?

In this case you might want to stand up your server logic, and then expose
communication points via both webservices (ASMX) and remoting.

-Dino



"Craig Neuwirt" <cneuwirt@emsinet.com> wrote in message
news:ODYc%23aWbDHA.1808@TK2MSFTNGP11.phx.gbl...
> Is it possible to use the Activator.GetObject interface to access a Web
> Service?
>
> e.g.
>
> Activator.GetObject(http://localhost/MyServive.asmx);
>
> If so, what do you get back and how do you configure .Net remoting since
the
> parameters passed to a web service are XML serializable, but not
necessarily
> binary serializable?
>
> thanks,
> craig
>
>