in reply to Re^2: CGI and web services
in thread CGI and web services
Google checkout is going to send you a POST to your CGI script. It has to be a name/value pair. One of those name value pairs is going to contain your XML document.
This should dump any data that you receive from a POST request. Use this as your script that Google Checkout will call; it will tell you what name/values you are receiving from them.
#!/usr/bin/perl use CGI; my $q = new CGI; my @names = $q->param(); for my $name (@names) { warn "$name => " . $q->param($name) . "\n"; }
Note:This data will be sent to the Apache error_log file.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: CGI and web services
by dshahin (Pilgrim) on Jan 30, 2007 at 05:19 UTC | |
by spatterson (Pilgrim) on Jan 30, 2007 at 13:23 UTC | |
by EvanK (Chaplain) on Jan 30, 2007 at 17:11 UTC | |
by dshahin (Pilgrim) on Jan 30, 2007 at 22:53 UTC | |
by EvanK (Chaplain) on Jan 30, 2007 at 23:03 UTC | |
|
Re^4: CGI and web services
by dshahin (Pilgrim) on Jan 30, 2007 at 05:05 UTC |