Skip Menu |

This queue is for tickets about the Amazon-SNS CPAN distribution.

Report information
The Basics
Id: 86683
Status: resolved
Priority: 0/
Queue: Amazon-SNS

People
Owner: Nobody in particular
Requestors: jean [...] veronis.fr
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 1.0
Fixed in: 1.2



Subject: Error on special chars and long messages
Call to the Amazon API are made using GET instead of POST. As a result : 1) Messages containing special characters result in a failure because strings are not escaped: Try this for example to reproduce: my $s = '&'; $topic->Publish($s); 2) Long messages result also in a failure, due to the limitations in URL lengths: Try this for example to reproduce: my $s = 'x' x 100000; $topic->Publish($s);
On Wed Jul 03 15:25:37 2013, jeanv wrote: Show quoted text
> Call to the Amazon API are made using GET instead of POST. As a result > : > > 1) Messages containing special characters result in a failure because > strings are not escaped: > > Try this for example to reproduce: > > my $s = '&'; > $topic->Publish($s); > > 2) Long messages result also in a failure, due to the limitations in > URL lengths: > > Try this for example to reproduce: > > my $s = 'x' x 100000; > $topic->Publish($s);