CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2011
    Location
    State of Israel
    Posts
    4

    Smile Question on ASP.NET web services

    Hi guys.

    I have a dilemma, I'm currently working on web-services system, the architecture is smth like this: I have one web service that runs on my server, it receives data from client, stores it in my local database and then passes all the data to another web service whose address (url of wsdl) is taken from my database depending on data that I received before (there is a list of outer services that is needs to be updated dynamically in runtime)

    It means I need to dynamically create a proxy object of outer web service in runtime. Let's say there are 10-15 outer services. I also want to add and remove services in runtime. So I think I need to use something like "factory" design pattern.

    May be someone has any idea or link to useful article or tutorial?

    Thanx for the assistance!

  2. #2
    Join Date
    Jan 2012
    Posts
    2

    Re: Question on ASP.NET web services

    Hi, i've met that question before, and i found the answer on
    http://www.keepautomation.com/produc...arcode_aspnet/
    you can got detailed imformation on it. it's really helpful.
    Good Luck!

Tags for this Thread

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