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 = 106731
interpreted = N
texte = This is a multi-part message in MIME format.--------------080201090601000300070705Content-Type: text/plain; charset=ISO-8859-1; format=flowedContent-Transfer-Encoding: 7bitWindows server 2003 / iis 6On 6/13/11 12:09 PM, Olin Lagon wrote:> 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 > --------------------------------------------------------- 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 --------------080201090601000300070705Content-Type: text/html; charset=ISO-8859-1Content-Transfer-Encoding: 7bit Windows server 2003 / iis 6
On 6/13/11 12:09 PM, Olin Lagon wrote: 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
--------------------------------------------------------- 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
--------------080201090601000300070705--
Associated Messages, from the most recent to the oldest:
This is a multi-part message in MIME format.--------------080201090601000300070705Content-Type: text/plain; charset=ISO-8859-1; format=flowedContent-Transfer-Encoding: 7bitWindows server 2003 / iis 6On 6/13/11 12:09 PM, Olin Lagon wrote:> 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 > --------------------------------------------------------- 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 --------------080201090601000300070705Content-Type: text/html; charset=ISO-8859-1Content-Transfer-Encoding: 7bit Windows server 2003 / iis 6
On 6/13/11 12:09 PM, Olin Lagon wrote: 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
--------------------------------------------------------- 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
--------------080201090601000300070705--
Aaron Michael Kaczmarek
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:
PCS Frames (1997)
WebCat2: Items xx to xx shown, etc. (1997)
Removing [showif] makes a big difference in speed (1997)
Autoreturn Submit? (1997)
WC2f3 (1997)
PCS Frames (1997)
WebCat for paper collection, review and coordination ? (1998)
WebMerchant 1.6 and SHTML (1997)
RE: Signal Raised (1997)
WebCatalog 4.0 ? (2000)
Duplicate emails with bcc (2000)
Search (1997)
WebCat2b13MacPlugIn - [shownext method=post] ??? (1997)
WebCat2b13MacPlugIn - [include] (1997)
Multiple Newcarts (1996)
WC2f3 (1997)
Click-through/Referral tracking solution needed (2000)
WebCat B13 Mac CGI -- Frames question (1997)
Decimal/Modulus (2001)
Re[2]: 2nd WebCatalog2 Feature Request (1996)