Re: [WebDNA] how can i grab the contents of a post?

This WebDNA talk-list message is from

2011


It keeps the original formatting.
numero = 106730
interpreted = N
texte = This is a multi-part message in MIME format. --------------030703050107050003090209 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Am running 6 on Linux. What platform are you using to get what you have? That would make it possible to piece back the XML. Am using an API from The Energy Detective (not published on their site) which is a real time energy monitor. Aaron Michael Kaczmarek wrote: > Could this potentially be a matter of webDNA version? > > I'm running 6 and am able to receive xml callbacks to a dna page just > fine; getting xml contents with formvariables. > > With formvariables, I get a single variable that is broken at the > first "=", so formvars returns this: > [name] = [value] = "1.0" encoding="UTF-8"?>......and so on with the rest of xml > > > what API are you working with by the way? > > > > > > On 6/13/11 11:32 AM, Olin Lagon wrote: >> I had already written and tested the XML logic in webdna so to save >> time I just wrote the following lines of PHP that grabbed the post >> contents, assigned it to a form variable, and redirected it to a >> webdna script for processing. The parse.tpl returns XML and this PHP >> script sends it back to the requestor with the correct HTTP header. >> >> > if ( $_SERVER['REQUEST_METHOD'] === 'POST' ){ >> $postText = file_get_contents('php://input'); >> } >> $content = >> file_get_contents("http://www.kanuhawaii.org/ted/parse.tpl?thisxml=" >> .urlencode($postText)); >> >> header("Content-type: text/xml"); >> echo $content; >> ?> >> >> This could probably be collapsed to two lines but what I have above >> works and it is good enough :) >> >> > header("Content-type: text/xml"); >> echo file_get_contents("http://yourserver/parse.tpl?thisxml=" >> .urlencode(file_get_contents('php://input'))); >> >> ?> >> >> >> Psi Prime Inc, Matthew A Perosi wrote: >>> Since I'm completely ignorant when it comes to PHP, what is the code >>> you used? >>> Did you grab the incoming content, save it as a file then had WebDNA >>> trigger occasionally for the written file? >>> >>> Matt >>> >> --------------------------------------------------------- This >> message is sent to you because you are subscribed to the mailing list >> . To unsubscribe, E-mail to: archives: >> http://mail.webdna.us/list/talk@webdna.us Bug Reporting: >> support@webdna.us > > --------------------------------------------------------- This message > is sent to you because you are subscribed to the mailing list . To > unsubscribe, E-mail to: archives: > http://mail.webdna.us/list/talk@webdna.us Bug Reporting: > support@webdna.us --------------030703050107050003090209 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Am running 6 on Linux. What platform are you using to get what you have? That would make it possible to piece back the XML.

Am using an API from The Energy Detective (not published on their site) which is a real time energy monitor.

Aaron Michael Kaczmarek wrote:
Could this potentially be a matter of webDNA version? 

I'm running 6 and am able to receive xml callbacks to a dna page just fine; getting xml contents with formvariables. 

With formvariables, I get a single variable that is broken at the first "=", so formvars returns this:
[name] = <?xml version
[value] = "1.0" encoding="UTF-8"?>......and so on with the rest of xml


what API are you working with by the way?





On 6/13/11 11:32 AM, Olin Lagon wrote:
I had already written and tested the XML logic in webdna so to save time I just wrote the following lines of PHP that grabbed the post contents, assigned it to a form variable, and redirected it to a webdna script for processing. The parse.tpl returns XML and this PHP script sends it back to the requestor with the correct HTTP header.

<?php
if ( $_SERVER['REQUEST_METHOD'] === 'POST' ){
    $postText = file_get_contents('php://input');
}
$content = file_get_contents("http://www.kanuhawaii.org/ted/parse.tpl?thisxml=".urlencode($postText));
header("Content-type: text/xml");
echo $content;
?>

This could probably be collapsed to two lines but what I have above works and it is good enough :)

<?php
header("Content-type: text/xml");
echo file_get_contents("http://yourserver/parse.tpl?thisxml=".urlencode(file_get_contents('php://input')));
?>
 


Psi Prime Inc, Matthew A Perosi wrote:
Since I'm completely ignorant when it comes to PHP, what is the code you used? 
Did you grab the incoming content, save it as a file then had WebDNA trigger occasionally for the written file?

Matt

--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.us

--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.us
--------------030703050107050003090209-- Associated Messages, from the most recent to the oldest:

    
  1. Re: [WebDNA] how can i grab the contents of a post? ("Brian B. Burton" 2011)
  2. Re: [WebDNA] how can i grab the contents of a post? (Aaron Michael Kaczmarek 2011)
  3. Re: [WebDNA] how can i grab the contents of a post? (Olin Lagon 2011)
  4. Re: [WebDNA] how can i grab the contents of a post? (Aaron Michael Kaczmarek 2011)
  5. Re: [WebDNA] how can i grab the contents of a post? (Olin Lagon 2011)
  6. Re: [WebDNA] how can i grab the contents of a post? ("Psi Prime Inc, Matthew A Perosi " 2011)
  7. Re: [WebDNA] how can i grab the contents of a post? (Olin Lagon 2011)
  8. Re: [WebDNA] how can i grab the contents of a post? ("Psi Prime Inc, Matthew A Perosi " 2011)
  9. Re: [WebDNA] how can i grab the contents of a post? (Olin Lagon 2011)
  10. Re: [WebDNA] how can i grab the contents of a post? (Stuart Tremain 2011)
  11. Re: [WebDNA] how can i grab the contents of a post? (Olin Lagon 2011)
  12. Re: [WebDNA] how can i grab the contents of a post? (Stuart Tremain 2011)
  13. Re: [WebDNA] how can i grab the contents of a post? (Olin Lagon 2011)
  14. Re: [WebDNA] how can i grab the contents of a post? (Stuart Tremain 2011)
  15. Re: [WebDNA] how can i grab the contents of a post? (Olin Lagon 2011)
  16. Re: [WebDNA] how can i grab the contents of a post? (Stuart Tremain 2011)
  17. [WebDNA] how can i grab the contents of a post? (Olin Lagon 2011)
This is a multi-part message in MIME format. --------------030703050107050003090209 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Am running 6 on Linux. What platform are you using to get what you have? That would make it possible to piece back the XML. Am using an API from The Energy Detective (not published on their site) which is a real time energy monitor. Aaron Michael Kaczmarek wrote: > Could this potentially be a matter of webDNA version? > > I'm running 6 and am able to receive xml callbacks to a dna page just > fine; getting xml contents with formvariables. > > With formvariables, I get a single variable that is broken at the > first "=", so formvars returns this: > [name] = [value] = "1.0" encoding="UTF-8"?>......and so on with the rest of xml > > > what API are you working with by the way? > > > > > > On 6/13/11 11:32 AM, Olin Lagon wrote: >> I had already written and tested the XML logic in webdna so to save >> time I just wrote the following lines of PHP that grabbed the post >> contents, assigned it to a form variable, and redirected it to a >> webdna script for processing. The parse.tpl returns XML and this PHP >> script sends it back to the requestor with the correct HTTP header. >> >> > if ( $_SERVER['REQUEST_METHOD'] === 'POST' ){ >> $postText = file_get_contents('php://input'); >> } >> $content = >> file_get_contents("http://www.kanuhawaii.org/ted/parse.tpl?thisxml=" >> .urlencode($postText)); >> >> header("Content-type: text/xml"); >> echo $content; >> ?> >> >> This could probably be collapsed to two lines but what I have above >> works and it is good enough :) >> >> > header("Content-type: text/xml"); >> echo file_get_contents("http://yourserver/parse.tpl?thisxml=" >> .urlencode(file_get_contents('php://input'))); >> >> ?> >> >> >> Psi Prime Inc, Matthew A Perosi wrote: >>> Since I'm completely ignorant when it comes to PHP, what is the code >>> you used? >>> Did you grab the incoming content, save it as a file then had WebDNA >>> trigger occasionally for the written file? >>> >>> Matt >>> >> --------------------------------------------------------- This >> message is sent to you because you are subscribed to the mailing list >> . To unsubscribe, E-mail to: archives: >> http://mail.webdna.us/list/talk@webdna.us Bug Reporting: >> support@webdna.us > > --------------------------------------------------------- This message > is sent to you because you are subscribed to the mailing list . To > unsubscribe, E-mail to: archives: > http://mail.webdna.us/list/talk@webdna.us Bug Reporting: > support@webdna.us --------------030703050107050003090209 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Am running 6 on Linux. What platform are you using to get what you have? That would make it possible to piece back the XML.

Am using an API from The Energy Detective (not published on their site) which is a real time energy monitor.

Aaron Michael Kaczmarek wrote:
Could this potentially be a matter of webDNA version? 

I'm running 6 and am able to receive xml callbacks to a dna page just fine; getting xml contents with formvariables. 

With formvariables, I get a single variable that is broken at the first "=", so formvars returns this:
[name] = <?xml version
[value] = "1.0" encoding="UTF-8"?>......and so on with the rest of xml


what API are you working with by the way?





On 6/13/11 11:32 AM, Olin Lagon wrote:
I had already written and tested the XML logic in webdna so to save time I just wrote the following lines of PHP that grabbed the post contents, assigned it to a form variable, and redirected it to a webdna script for processing. The parse.tpl returns XML and this PHP script sends it back to the requestor with the correct HTTP header.

<?php
if ( $_SERVER['REQUEST_METHOD'] === 'POST' ){
    $postText = file_get_contents('php://input');
}
$content = file_get_contents("http://www.kanuhawaii.org/ted/parse.tpl?thisxml=".urlencode($postText));
header("Content-type: text/xml");
echo $content;
?>

This could probably be collapsed to two lines but what I have above works and it is good enough :)

<?php
header("Content-type: text/xml");
echo file_get_contents("http://yourserver/parse.tpl?thisxml=".urlencode(file_get_contents('php://input')));
?>
 


Psi Prime Inc, Matthew A Perosi wrote:
Since I'm completely ignorant when it comes to PHP, what is the code you used? 
Did you grab the incoming content, save it as a file then had WebDNA trigger occasionally for the written file?

Matt

--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.us

--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.us
--------------030703050107050003090209-- Olin Lagon

DOWNLOAD WEBDNA NOW!

Top Articles:

Talk List

The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...

Related Readings:

RE:It just Does't add up!!! (1997) BUG REPORT: numeric ge, le, gr & ls comparisons don't work ... (1999) [cart]'s ever get recycled? (2000) Errata: WCS Newbie question (1997) WebCat2b13MacPlugIn - [showif][search][/showif] (1997) [WebDNA] Installing Webdna 6.2 in Lion (2013) old problem (2001) Limit on nested [ShowIf]'s? (1997) WebCat2b13MacPlugIn - syntax to convert date (1997) Help! WebCat2 bug (1997) using showpage and showcart commands (1996) authorize.net hex coded variables (2002) New command suggestion (was Modifying databasesmanually) (1997) [WebDNA] Image resizing on the fly (2012) webmerch and serials - almost there (1997) unable to launch acgi in WebCat (1997) Location of Browser Info.txt file (1997) Nested tags count question (1997) Ok here is a question? (1997) [WebDNA] sendmail time stamp (2013)