Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. WCF and WF
  4. .net 1.1 client for WCF web service

.net 1.1 client for WCF web service

Scheduled Pinned Locked Moved WCF and WF
csharpwcfhelpquestion
7 Posts 3 Posters 8 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    salaivanamali
    wrote on last edited by
    #1

    Hi We are creating webservices on .net 3.0 using WCF, But since we have our old consumers still not migrated to 3.0/2.0, We need to created proxy for WCF service in .Net 1.1 I tried creating proxy from the with my wcf url http://localhost/myservice.svc?wsdl but it generated everything but not the proxy client inside in it. Any help is appreciated in this area. Thanks, SVM

    L 1 Reply Last reply
    0
    • S salaivanamali

      Hi We are creating webservices on .net 3.0 using WCF, But since we have our old consumers still not migrated to 3.0/2.0, We need to created proxy for WCF service in .Net 1.1 I tried creating proxy from the with my wcf url http://localhost/myservice.svc?wsdl but it generated everything but not the proxy client inside in it. Any help is appreciated in this area. Thanks, SVM

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      Did you expose end points for an old style web service?

      Cheers, Karl » CodeProject 2008 MVP My Blog | Mole's Home Page | How To Create Screen Capture Videos For Your Articles

      Just a grain of sand on the worlds beaches.

      S 2 Replies Last reply
      0
      • L Lost User

        Did you expose end points for an old style web service?

        Cheers, Karl » CodeProject 2008 MVP My Blog | Mole's Home Page | How To Create Screen Capture Videos For Your Articles

        Just a grain of sand on the worlds beaches.

        S Offline
        S Offline
        salaivanamali
        wrote on last edited by
        #3

        <system.serviceModel> <services> <!-- Before deployment, you should remove the returnFaults behavior configuration to avoid disclosing information in exception messages --> <service name="FAService" behaviorConfiguration="FAServiceBehaviour"> <endpoint contract="IFAService" binding="wsHttpBinding" /> </service> </services> <behaviors> <serviceBehaviors> <behavior name="FAServiceBehaviour"> <serviceDebug includeExceptionDetailInFaults="true" /> <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> This is the End point for the new WCF Service, but do I need to set anything for consuming in the old style.

        1 Reply Last reply
        0
        • L Lost User

          Did you expose end points for an old style web service?

          Cheers, Karl » CodeProject 2008 MVP My Blog | Mole's Home Page | How To Create Screen Capture Videos For Your Articles

          Just a grain of sand on the worlds beaches.

          S Offline
          S Offline
          salaivanamali
          wrote on last edited by
          #4

          <system.serviceModel> <services> <!-- Before deployment, you should remove the returnFaults behavior configuration to avoid disclosing information in exception messages --> <service name="FAService" behaviorConfiguration="FAServiceBehaviour"> <endpoint contract="IFAService" binding="wsHttpBinding" /> </service> </services> <behaviors> <serviceBehaviors> <behavior name="FAServiceBehaviour"> <serviceDebug includeExceptionDetailInFaults="true" /> <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> This is the End point for the new WCF Service, but do I need to set anything for consuming in the old style.

          L J 2 Replies Last reply
          0
          • S salaivanamali

            <system.serviceModel> <services> <!-- Before deployment, you should remove the returnFaults behavior configuration to avoid disclosing information in exception messages --> <service name="FAService" behaviorConfiguration="FAServiceBehaviour"> <endpoint contract="IFAService" binding="wsHttpBinding" /> </service> </services> <behaviors> <serviceBehaviors> <behavior name="FAServiceBehaviour"> <serviceDebug includeExceptionDetailInFaults="true" /> <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> This is the End point for the new WCF Service, but do I need to set anything for consuming in the old style.

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #5

            endpoints usually have an address associated with them so that WCF knows where to listen.

            Cheers, Karl » CodeProject 2008 MVP My Blog | Mole's Home Page | How To Create Screen Capture Videos For Your Articles

            Just a grain of sand on the worlds beaches.

            1 Reply Last reply
            0
            • S salaivanamali

              <system.serviceModel> <services> <!-- Before deployment, you should remove the returnFaults behavior configuration to avoid disclosing information in exception messages --> <service name="FAService" behaviorConfiguration="FAServiceBehaviour"> <endpoint contract="IFAService" binding="wsHttpBinding" /> </service> </services> <behaviors> <serviceBehaviors> <behavior name="FAServiceBehaviour"> <serviceDebug includeExceptionDetailInFaults="true" /> <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> This is the End point for the new WCF Service, but do I need to set anything for consuming in the old style.

              J Offline
              J Offline
              James J Foster
              wrote on last edited by
              #6

              We encountered the same problem. The short answer is that you need to either switch to, or also expose, a basicHttpBinding. Clients in .NET 1.1 (ie. non-WCF) cannot communicate with a wsHttpBinding.

              S 1 Reply Last reply
              0
              • J James J Foster

                We encountered the same problem. The short answer is that you need to either switch to, or also expose, a basicHttpBinding. Clients in .NET 1.1 (ie. non-WCF) cannot communicate with a wsHttpBinding.

                S Offline
                S Offline
                salaivanamali
                wrote on last edited by
                #7

                thanks it worked now, I also tried successfully doing the the multiple binding and endpoints.

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups