Dear all

I have a running environment for qooxdoo with an application that uses
remote.Request on locahost
But when I change the URL to the same Servers IP-Address or the one of
another server, it does not even give an entry in the webservers access
or error files.
I suppose in that case the request is not sent.

works fine:
      function GetAddressRequest( e )
      {
          var request = new
qx.io.remote.Request( "http://localhost/search.php";, "POST",
"text/plain" );
          request.addListener( "completed", GetAddressAnswer );
          // request.setParameter( "Adresse", 1 )
          request.setParameter( "Adrrol_nr",
lstAdr.getSelected().getValue() );
          request.send();
      }


does not work:
      function GetAddressRequest( e )
      {
          var request = new
qx.io.remote.Request( "http://10.31.2.100/search.php";, "POST",
"text/plain" );
          request.addListener( "completed", GetAddressAnswer );
          // request.setParameter( "Adresse", 1 )
          request.setParameter( "Adrrol_nr",
lstAdr.getSelected().getValue() );
          request.send();
      }

any help is much appreciated.
Regards
Raymond
------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to