Web Service Catalog

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?U2Vs?=

    Web Service Catalog

    When we create a web service in .Net 2.0, after deploying the web service and
    browse the service in IIS we will get the statement as

    Name of the Web Service
    "The following operations are supported. For a formal definition, please
    review the Service Description"

    Can we able to customize the quoted lines through coding.

    URGENT

    Thanks in advance
  • John Saunders [MVP]

    #2
    Re: Web Service Catalog

    "Sel" <Sel@discussion s.microsoft.com wrote in message
    news:31659DE5-3145-4107-9279-C70401B04435@mi crosoft.com...
    When we create a web service in .Net 2.0, after deploying the web service
    and
    browse the service in IIS we will get the statement as
    >
    Name of the Web Service
    "The following operations are supported. For a formal definition, please
    review the Service Description"
    >
    Can we able to customize the quoted lines through coding.
    >
    URGENT
    >
    Thanks in advance
    You can configure that as follows:

    <configuratio n>
    <system.web>
    <webServices>
    <wsdlHelpGenera tor href="docs/MyServiceHelpPa ge.aspx"/>
    </webServices>
    </system.web>
    </configuration>
    --
    --------------------------------------------------------------------------------
    John Saunders | MVP - Windows Server System - Connected System Developer


    Comment

    • =?Utf-8?B?U2Vs?=

      #3
      Re: Web Service Catalog

      Hi Jhon,

      Thanks for your reply.

      In the web service catalog in microsoft format, I just want to change the
      following line only "The following operations are supported. For a formal
      definition, please
      review the Service Description"

      Is this possible?



      "John Saunders [MVP]" wrote:
      "Sel" <Sel@discussion s.microsoft.com wrote in message
      news:31659DE5-3145-4107-9279-C70401B04435@mi crosoft.com...
      When we create a web service in .Net 2.0, after deploying the web service
      and
      browse the service in IIS we will get the statement as

      Name of the Web Service
      "The following operations are supported. For a formal definition, please
      review the Service Description"

      Can we able to customize the quoted lines through coding.

      URGENT

      Thanks in advance
      >
      You can configure that as follows:
      >
      <configuratio n>
      <system.web>
      <webServices>
      <wsdlHelpGenera tor href="docs/MyServiceHelpPa ge.aspx"/>
      </webServices>
      </system.web>
      </configuration>
      --
      --------------------------------------------------------------------------------
      John Saunders | MVP - Windows Server System - Connected System Developer
      >
      >
      >

      Comment

      • John Saunders [MVP]

        #4
        Re: Web Service Catalog

        "Sel" <Sel@discussion s.microsoft.com wrote in message
        news:D9CA471C-901B-4155-ADDE-432C6242BBBA@mi crosoft.com...
        Hi Jhon,
        >
        Thanks for your reply.
        >
        In the web service catalog in microsoft format, I just want to change the
        following line only "The following operations are supported. For a formal
        definition, please
        review the Service Description"
        >
        Is this possible?
        You can change the whole thing.
        --
        --------------------------------------------------------------------------------
        John Saunders | MVP - Windows Server System - Connected System Developer


        Comment

        • =?Utf-8?B?U2Vs?=

          #5
          Re: Web Service Catalog

          thanks jhon..I got it

          "John Saunders [MVP]" wrote:
          "Sel" <Sel@discussion s.microsoft.com wrote in message
          news:D9CA471C-901B-4155-ADDE-432C6242BBBA@mi crosoft.com...
          Hi Jhon,

          Thanks for your reply.

          In the web service catalog in microsoft format, I just want to change the
          following line only "The following operations are supported. For a formal
          definition, please
          review the Service Description"

          Is this possible?
          >
          You can change the whole thing.
          --
          --------------------------------------------------------------------------------
          John Saunders | MVP - Windows Server System - Connected System Developer
          >
          >
          >

          Comment

          Working...