Yes, you could use MSXML in .NET.
Yes, you could use Web Services (which performs an HTTP Post under the covers).

But there are classes and methods in .NET that let you do this without
having to monkey around with instantiating the MSXML COM object or
diving into Web Services.  All you need to use is the WebRequest
class.

Here's an example from MS that is pretty straightforward:

http://winfx.msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_fxnetwork/html/66686878-38ac-4aa6-bf42-ffb568ffc459.asp

Instead of the demo string used in the example, send out the XML you
want to deliver as the post data.


On 5/26/05, msilver99 <[EMAIL PROTECTED]> wrote:
> I'm required to write a program which needs to send XML data in a
> specific format to a URL in the form of "a direct POST of XML data to
> the URL".
> 
> I've been doing some searching and found you can send XML over a HTTP
> POST request using 'MSXML'. All the examples I've seen have been using
> traditional ASP or VB, however mine will be written in VB.NET and I've
> seen no examples of this in VB.NET or ASP.NET.
> 
> My question is - can you still use these methods in .NET or has XML
> HTTP POST been replaced/superceeded by XML Web Services with .NET? Or
> are they two seperate things?
> 
> I can't seem to find any info on this. So any tips/advice is welcome.
> 
> Thanks,
> 
> Mike
> 
> 
> 
> 
> 
> Yahoo! Groups Links
> 
> 
> 
> 
> 
> 
> 


-- 
Dean Fiala
Very Practical Software, Inc
http://www.vpsw.com


 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to