An HttpHandler is probably the correct way to go.

However a quicker way to see if it will work is to create a standard ASP.Net
website / project, and to create a normal ASPX page.

>From here you should be able to access data sent to the page as POST data
like this:

Request["SomeFieldName"];


If you don't know what field name the 3rd party app is sending the data as,
you can loop through the Request.Form.Keys collection to see if any of them
look like the one you want.

--Daniel.

-----Original Message-----
From: Discussion of advanced .NET topics.
[mailto:[EMAIL PROTECTED] On Behalf Of Ryan Heath
Sent: 08 July 2008 03:56 PM
To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM
Subject: Re: [ADVANCED-DOTNET] Receiving an http post.

How about setup an HttpHandler which handles the post.

// Ryan

On Tue, Jul 8, 2008 at 3:43 PM, Mark Nicholls <[EMAIL PROTECTED]>
wrote:
> I've got a 3rd party system that can be configured to post XML files via
> http posts.
>
> This sort of thing is a bit over my head. How do I receive an http post?
>
> ===================================
> This list is hosted by DevelopMentor(R)  http://www.develop.com
>
> View archives and manage your subscription(s) at
http://discuss.develop.com
>

===================================
This list is hosted by DevelopMentorR  http://www.develop.com

View archives and manage your subscription(s) at http://discuss.develop.com

===================================
This list is hosted by DevelopMentorĀ®  http://www.develop.com

View archives and manage your subscription(s) at http://discuss.develop.com

Reply via email to