Hallo Tobias,

ok, from the client-side, it normally wouldn't be the localhost (except the 
rare case that your webbapp runs on one machine) and didn't you always call a 
file? When you want to POST (or GET) params, there must be a script etc. that 
takes these parameters or not? Or do you want to "hand over" the user 
completely to another application / website with parameters? I am just asking 
out of my own interest and apologize if i'd bother you...

Regards,
-- 
Andreas Tepper
Softwareentwicklung

Animationsfabrik GmbH
Donnerstrasse 20
D-22763 Hamburg

Tel:    +49 40 398415-10
Fax:    +49 40 398415-32
E-Mail: [EMAIL PROTECTED]
Web:    www.animationsfabrik.de  

Amtsgericht Hamburg
HRB 75488
Geschäftsführer: Jörn Radel
Sitz der Gesellschaft: Hamburg
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tobias Koller 
(GERMO GmbH)
Sent: Friday, December 14, 2007 11:11 AM
To: qooxdoo Development
Subject: Re: [qooxdoo-devel] silly question: how to postdatatoanother 
application?

Hi andreas,

cause from the client-side it is not "localhost" and I think 
qx.io.remote.Request calls only( I guess) a File in your Serverside application.

Thanks
Tobias




-----Ursprüngliche Nachricht-----
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Andreas Tepper
Gesendet: Freitag, 14. Dezember 2007 10:52
An: qooxdoo Development
Betreff: Re: [qooxdoo-devel] silly question: how to post datatoanother 
application?

Hi,

maybe i did not get the point, but why not just using the Request-Object:

                        var req = new 
qx.io.remote.Request("http://localhost:9876","POST","text/plain";);

                        req.setParameter("paramName", "paramValue");

                        req.addEventListener("completed", function(e){
                                var content = e.getContent();
                        });

                        req.send(); 

HTH,
-- 
Andreas Tepper
Softwareentwicklung

Animationsfabrik GmbH
Donnerstrasse 20
D-22763 Hamburg

Tel:    +49 40 398415-10
Fax:    +49 40 398415-32
E-Mail: [EMAIL PROTECTED]
Web:    www.animationsfabrik.de  

Amtsgericht Hamburg
HRB 75488
Geschäftsführer: Jörn Radel
Sitz der Gesellschaft: Hamburg
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fa. Linstep, 
Stefan Volbers
Sent: Friday, December 14, 2007 10:32 AM
To: qooxdoo Development
Subject: Re: [qooxdoo-devel] silly question: how to post data toanother 
application?

Hi Tobias,

try using a PHP RPC as a proxy, which then triggers the POST to your 
alternate site.
See
http://netevil.org/blog/2006/nov/http-post-from-php-without-curl

on how to create a POST call to another (maybe PHP) script from the rpc.

Good luck;-)

Stefan

Tobias Koller (GERMO GmbH) schrieb:
> Hi,
> 
>  
> 
> in my qooxdoo application I want to call another webside on the same 
> server (http://localhost:9876) and send some data via "post".
> 
>  
> 
> How can I do this?
> 
>  
> 
> Thanks
> 
> Tobias

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to