Hi aggieben,
 
i had the some problem as started with qooxdoo. I will paste a copy of an 
former discussion on this list. Maybe it helps you a bit:
 
 
----------------------------------
Thank you for your prompt reply. I guess my fault was to try to access to the 
rpc (http://localhost/services <http://localhost/services> ) through the source 
file url (file://.../htdocs/project/source/index.html 
<file://.../htdocs/project/source/index.html> ).
 
Sure i tried to run it through the webserver 
(http://localhost/project/source/index.html 
<http://localhost/project/source/index.html> ), but i got just a blank site, i 
thought.
 
My fault was, not to check the HTML Source. So i could not see this: 
<script charset="utf-8" 
src="../../../qooxdoo-0.8.1-sdk/framework/source/class/qx/Bootstrap.js">
But qooxdoo-0.8.1-sdk was not a subfolder of htdocs.
 
I solved the problem, just to copy qooxdoo-0.8.1-sdk to htdocs.
 
I hope this will help to safe some hours of headache for outher semi webcoders 
like me.

 

regards

Mustafa Sak



________________________________

Von: Derrell Lipman [mailto:derrell.lip...@unwireduniverse.com]
Gesendet: Do 08.01.2009 02:30
An: qooxdoo Development
Betreff: Re: [qooxdoo-devel] RPC Call in Source environment


On Wed, Jan 7, 2009 at 7:26 PM, Mustafa Sak <m....@ims24-net.de> wrote:


        Greating,
         
        how can i use RPC calls in Source environment. If i generate a build 
version, i can access easily to my PHP backend on localhost. But in Source mode 
i have no access permisssions i gues.


You can use the source version; you just can't use file:// URLs.  Set up a web 
server on your local machine with a "virtual host" pointing to your development 
directory.  If you're using apache2, you could create an entry something like 
this:



<VirtualHost 127.0.0.1>
    ServerAdmin webmas...@localhost
    
    DocumentRoot /home/derrell/qooxdoo/
    <Directory /home/derrell/qooxdoo/>
        Options FollowSymLinks
        AllowOverride None
                Order Allow,Deny
                Allow from All
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined
    ServerSignature On
</VirtualHost>

Any accesses to your web server via http://localhost/ <http://localhost/>  will 
use the qooxdoo directory as the root.

Derrell



________________________________

Von: aggieben [mailto:aggie...@gmail.com]
Gesendet: So 18.01.2009 07:30
An: qooxdoo-devel@lists.sourceforge.net
Betreff: [qooxdoo-devel] RPC and source-all debugging




Is there a way to run in a development environment (e.g., source-all) and
make use of RPC functionality?
--
View this message in context: 
http://n2.nabble.com/RPC-and-source-all-debugging-tp2176152p2176152.html
Sent from the qooxdoo mailing list archive at Nabble.com.


------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel




<<winmail.dat>>

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to