WCF service Appdomain details
        Posted  
        
            by nettguy
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by nettguy
        
        
        
        Published on 2010-04-02T19:42:31Z
        Indexed on 
            2010/04/02
            19:43 UTC
        
        
        Read the original article
        Hit count: 455
        
I am reading WCF book.It states that the client can consume service running on same AppDomain or different application Domain.
Suppose I am creating a service in IIS localhost.
example
localhost\TestService\Service.svc (WCFService Website).
and my client is in
d:\demo\client (windows form)
- Does it mean client is running on different AppDomian and Service is running on different Appdomain?
 - How can i have client and service both running on same AppDomain?
 
© Stack Overflow or respective owner