Hi I'm new with google app engine.

I just deployed my Application "molwind" to the engine.
In my web.xml i described a parameter for the

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd";>


 <web-app>
  <servlet>
    <servlet-name>
     Server
    </servlet-name>
    <servlet-class>
     com.emd.worldwind.servlet.Server
    </servlet-class>
    <init-param>
          <param-name>configurl</param-name>
<param-value>http://localhost:8080/files/config.txt</param-value>
   </init-param>
  </servlet>
  <servlet-mapping>
    <servlet-name>
     Server
    </servlet-name>
    <url-pattern>
   /MolWind
    </url-pattern>
  </servlet-mapping>
 </web-app>


That param-value is the path to the config-file on my Jetty-Server,
where i developed the app.
The config- file is located like:

MyApp
..........WEB-INF
          ..........web.xml
          ..........appengine-web.xml
..........META-INF
         ..............
..........data
         .............config.txt
..........frontend


Now my question is: Whats the location or url to acces my config-file

thanks a lot

nice regards

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to