Re: Apache::ASP problem with post data

2000-12-10 Thread Luc Willems
I think this will be intresting in the future when HTTP servers will be used for other things than just web pages serving. First thing i can think of is XML-RPC and SOAP technologie . Maybe this is something for a future release of the ASP framework ? greetings, luc Joshua

Re: Apache::ASP problem with post data

2000-12-08 Thread Joshua Chamas
Luc Willems wrote: it seems that the "Content-type" must be "application/x-www-form-urlencoded" before we can get anything out of the content() routine from mod_perl :-( #Get posted XML query $len = $Request-{TotalBytes}; $Request-{asp}-{r}-read($i,$len); I'll change the Apache::ASP

Re: Apache::ASP problem with post data

2000-12-07 Thread Luc Willems
the result of $Response- is also empty. i had a look into the Apache::ASP source code and found this : (line 843) $self-{content} = $r-content(); tie(*STDIN, 'Apache::ASP::Request', $self) if defined($self-{content}); this means that it's comming from

Apache::ASP problem with post data

2000-12-06 Thread Luc Willems
hello , i'm working on a project that involves some XML-RPC system. The idea is to POST a XML to a ASP script which will than process this and return a XML back to the client. To do that a send sommething like this (output from ethereal dump) : POST /cp-bin/rc2.asp HTTP/1.0 Host:

Re: Apache::ASP problem with post data

2000-12-06 Thread Joshua Chamas
Luc Willems wrote: hello , i'm working on a project that involves some XML-RPC system. The idea is to POST a XML to a ASP script which will than process this and return a XML back to the client. To do that a send sommething like this (output from ethereal dump) : POST