[appengine-java] Re: Can't get .gif image to show in app engine

2011-03-03 Thread Charms Styler
try something like this inside static files

  include path=/images/**.* /

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



[appengine-java] Re: Can't get .gif image to show in app engine

2011-03-02 Thread i3k
Thanks, but this makes no change - have given up on this one and placed my 
image in the root directory...

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



[appengine-java] Re: Can't get .gif image to show in app engine

2011-02-27 Thread Didier Durand
Hi,

Did you try specifically include path=/images/*.gif / in your
config file ? If I were you, I would.

didier

On Feb 28, 6:15 am, i3k paulncornw...@gmail.com wrote:
 I must be missing something simple here,  I have a static gif file that I
 have uploaded to my app engine application with Eclipse.  When I try to
 access it, it is not available on the server.  
 The requested URL /images/iLinkProgress.gif was not found on this server.The
 location ishttps://myapp.appspot.com/images/iLinkProgress.gif...

 I have checked that I can open the following OK

 https://myapp.appspot.com/images/Test.html

 my appengine.web.xml is as follows

 ?xml version=1.0 encoding=utf-8?
 appengine-web-app xmlns=http://appengine.google.com/ns/1.0;
   applicationilinkengine/application
   version1/version

   !-- Configure serving/caching of GWT files --
   static-files
     include path=** /

     !-- The following line requires App Engine 1.3.2 SDK --
     include path=**.nocache.* expiration=0s /

     include path=**.cache.* expiration=365d /
     exclude path=**.gwt.rpc /
   /static-files

   !-- Configure java.util.logging --
   system-properties
     property name=java.util.logging.config.file
 value=WEB-INF/logging.properties/
   /system-properties

 /appengine-web-app

 Any help is appreciated on this one.

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