Results 1 to 4 of 4

Thread: [RESOLVED] WCF - Web Service

  1. #1

    Thread Starter
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Resolved [RESOLVED] WCF - Web Service

    I have a WCF web service that I wrote that talks to a backend API. It works great for a lot of our projects, but we are now looking at exposing this API to some of our customers. Our customers use a wide variety of web technologies including Java and Cold Fusion.

    What I am looking for is, what is a good approach to give them access to the WCF services that will make them usable? Do we write a non-WCF wrapper around the web service, to make it easier for them to call? From looking at the WSDL generated by the WCF web service, it can be rather difficult to follow.

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: WCF - Web Service

    You don't have to. Each of your clients should have their own platform specific APIs that let them talk to SOAP web services. A quick search tells me that Java already has SOAP libraries. I know that PHP has SOAP libraries. CF - since there are articles on it, must be a way.

    If you want to make it easiest for them, then expose the service as a basicHttpBinding so that it's a SOAP 1.1 service. wsHttpBinding would be SOAP 1.2 and you don't know for sure whether all of your clients can deal with it.

  3. #3
    Frenzied Member Lightning's Avatar
    Join Date
    Oct 2002
    Location
    Eygelshoven
    Posts
    1,611

    Re: WCF - Web Service

    I agree with mendhak, the basichttp binding works with any technology that can make a http request, even VB6
    VB6 & C# (WCF LINQ) mostly


    If you need help with a WPF/WCF question post in the NEW WPF & WCF forum and we will try help the best we can

    My site

    My blog, couding troubles and solutions

    Free online tools

  4. #4

    Thread Starter
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Re: WCF - Web Service

    OK thanks guys, you gave me a push in the right direction. I think I am understanding the bindings much better now after doing a bit of reading.

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