how to build a web service I have xml ready to send no serializati

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

    how to build a web service I have xml ready to send no serializati

    I have a wsdl defined for me that i need to build a web service for. I have
    a source of the xml to match teh wsdl outputs that are to be returned.

    How do I build (visual studio 2005, .net 2.0) a web service to return that
    xml. All the wizards and templates and examples have you build your objects
    that then are serialized when they are sent.

    I'm new to web services so maybe I'm missing something.

    --
    The real Michael jackson
  • BitCrazed

    #2
    Re: how to build a web service I have xml ready to send no serializati

    You might want to go take a look at SVCUTIL:

    Learn about the ServiceModel Metadata Utility, which generates WFC service model code from metadata documents and metadata documents from service model code.


    You can point this tool at your WSDL and it'll generate the skeleton code to
    either create a service that exposes the WSDL as a service () or a client
    that consumes a service that looks like your WSDL.

    Alternatively, you can use Visual Studio 2008 to generate services or
    clients of services using integrated tools.

    --- BitCrazed ---

    "MIchael Jackson" <MIchaelJackson @discussions.mi crosoft.comwrot e in
    message news:D84A5993-7B08-4FF3-809A-A2A7D7CEA04D@mi crosoft.com...
    I have a wsdl defined for me that i need to build a web service for. I
    have
    a source of the xml to match teh wsdl outputs that are to be returned.
    >
    How do I build (visual studio 2005, .net 2.0) a web service to return that
    xml. All the wizards and templates and examples have you build your
    objects
    that then are serialized when they are sent.
    >
    I'm new to web services so maybe I'm missing something.
    >
    --
    The real Michael jackson

    Comment

    Working...