post xml data to a URL

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Costi Stan

    post xml data to a URL

    Hello guys,

    I'm new using xml and services. I need to post xml data to a provided url
    and I can't find any good example. Can you help?

    Kind regards,

    Costi


  • David C

    #2
    RE: post xml data to a URL

    Hi Costi,
    There's at least two common scenarios that your situation might describe.
    The first is when you're attemtping to post data to a web service in SOAP
    format. In this case you should look at the web service tutorials in MSDN,
    create a client proxy from the WSDL that the service provides (don't worry VS
    does it for you) and use that.

    The other scenario is where you posting XML in a non-SOAP kind of way to
    something that isn't a web service - an example might be making WEBDAV
    requests. In this case you should be looking at using HttpWebRequest and the
    various XML classes.

    Can you describe you situation in a little more detail?

    Dave

    "Costi Stan" wrote:
    [color=blue]
    > Hello guys,
    >
    > I'm new using xml and services. I need to post xml data to a provided url
    > and I can't find any good example. Can you help?
    >
    > Kind regards,
    >
    > Costi
    >
    >
    >[/color]

    Comment

    Working...