Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
KenichiM #1
HTTPService converts method="DELETE" to GET
When:
var service:HTTPService = new HTTPService();
service.url = "http://xxx";
service.method = "DELETE";
service.send();
The HTTPService does not send a DELETE HTTP request but a GET HTTP request.
This forces all REST calls to go through either GET or POST. Any help is
appreciated. Thanks.
KenichiM Guest
-
Can't locate object method "newFromJpeg" via package "GD::Image"
Hi. I'm trying to execute this Perl simple script: -------- #!/usr/bin/perl use GD; my $srcimage = GD::Image->newFromJpeg("image_news.jpg");... -
Can't locate object method "blocking" via package "IO::Handle"
I am receiving the error message: Can't locate object method "blocking" via package "IO::Handle" at... -
Can't locate object method "new" via package "Net::SMTP"
I'm attempting to use the line: $smtp = Net::SMTP->new("mailhost.myisp.co.uk"); however it generates the error message: Can't locate object... -
Can't locate object method "get" via package "LWP::UserAgent"
#!/usr/bin/perl use strict; use URI; #use HTTP::Request::Common qw(GET); use LWP; #use HTTP::Response; my $browser = LWP::UserAgent->new;... -
Can't not locate object method "isadmin" via package "Noc1"
Hello all, I just added a new method called isadmin to existing and working module Noc1.pm And use this new added method in my index.html... -
KenichiM #2
Re: HTTPService converts method="DELETE" to GET
From what I've read, it seems that a Proxy Server, such as BlazeDS or FDS, is
required if you want to use anything other than GET or POST and set the
useProxy property to true.
What is the motivation of requiring a proxy server to support HTTP PUT or
DELETE?
KenichiM Guest
-
slaingod #3
Re: HTTPService converts method="DELETE" to GET
REST is not fully supported by Flex from what I understand. There are hacks
for Rails and other things out there if you search for Rails Flex REST for
instance. I think they generally just automate putting DELETE and UPDATE as a
param.
slaingod Guest



Reply With Quote

