CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2002
    Posts
    146

    dual - comunication between two applications

    Hi all,
    I have two applications (A , B) exposing both one web service.
    Application A needs to call th webservice exposed by application B and application B needs to expose the web service exposed by application A.
    Do you know any good patter (i.e. dispatcher) to implement this?

    Many thanks

  2. #2
    Join Date
    Jul 2006
    Posts
    297

    Re: dual - comunication between two applications

    If you're using the standard SOAP web services through .NET then this is easy.

    Application A needs to add web service B as a "web reference" in the project.
    Application B needs to add web service A as a "web reference" in the project.

    If either of the web services return a user defined class then you must also add that class to the application that is consuming the web service. This should be done by adding the required classes to a DLL that can be shared by both of the web applications.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured