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. Web Development
  3. ASP.NET
  4. WCF on IIS 6

WCF on IIS 6

Scheduled Pinned Locked Moved ASP.NET
csharpwcfsysadminwindows-adminjson
3 Posts 2 Posters 0 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
    Satish_S
    wrote on last edited by
    #1

    Hi i am running wcf service in IIS, when i make a POST request from the rest client with .net development environment server i am getting the break points hit and the service is responding but when i am accessing through IIS URL(http://localhost//Service/service.msc) it fails and i am not getting break points hit and getting message

    HTTP/1.1 404 Object Not Found

    . i am confused that why the service is not responding when i accessed the iis deployed service. it will be very helpful if i am getting out from this issue. thanks

    K 1 Reply Last reply
    0
    • S Satish_S

      Hi i am running wcf service in IIS, when i make a POST request from the rest client with .net development environment server i am getting the break points hit and the service is responding but when i am accessing through IIS URL(http://localhost//Service/service.msc) it fails and i am not getting break points hit and getting message

      HTTP/1.1 404 Object Not Found

      . i am confused that why the service is not responding when i accessed the iis deployed service. it will be very helpful if i am getting out from this issue. thanks

      K Offline
      K Offline
      Keith Barrow
      wrote on last edited by
      #2

      Are you running the client on the same machine as the server? If not the localhost in the url is wrong. Also the url contains two forward-slashes where they should not be: http://localhost**//**Service/service.msc I assume this is a typo, but thought it worth mentioning just in case.

      Sort of a cross between Lawrence of Arabia and Dilbert.[^]
      -Or-
      A Dead ringer for Kate Winslett[^]

      S 1 Reply Last reply
      0
      • K Keith Barrow

        Are you running the client on the same machine as the server? If not the localhost in the url is wrong. Also the url contains two forward-slashes where they should not be: http://localhost**//**Service/service.msc I assume this is a typo, but thought it worth mentioning just in case.

        Sort of a cross between Lawrence of Arabia and Dilbert.[^]
        -Or-
        A Dead ringer for Kate Winslett[^]

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

        Yes i am accessing client on the same machine. sorry typo error when composing a message but my REST client is having the following URL http://localhost/Service/service.msc Even i tried from different machine with the following http://172.29.xxx.xx/Service/service.msc In both scenarios i am getting the following page saying my service living but not able to post a request.

        You have created a service.

        To test this service, you will need to create a client and use it to call the service. You can do this using the svcutil.exe tool from the command line with the following syntax:

        svcutil.exe http://development.co.in/DWebServices/CDataService.svc?wsdl

        This will generate a configuration file and a code file that contains the client class. Add the two files to your client application and use the generated client class to call the Service. For example:

        C#

        class Test
        {
        static void Main()
        {
        CDataServiceClient client = new CDataServiceClient();

            // Use the 'client' variable to call operations on the service.
        
            // Always close the client.
            client.Close();
        }
        

        }

        Visual Basic

        Class Test
        Shared Sub Main()
        Dim client As CDataServiceClient = New CDataServiceClient()
        ' Use the 'client' variable to call operations on the service.

            ' Always close the client.
            client.Close()
        End Sub
        

        End Class

        when i try to access its method by the following http://172.29.xxx.xx/Service/service.msc/methodcall [method :POST] { "json format inputs" }

        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