[appengine-java] can I use Google maps in my Google Appengine java Application

2011-04-18 Thread Ram
I am new Google AppEngineI start developing Java Application using Servlet and Jsp and Eclipse helios can I use Google maps in my ApplicationHow to do thisplz help me -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

[appengine-java] Re: Facing problem while xsl transformation

2011-04-18 Thread Vaclav Bartacek
Hello, have you put XSLT implementation jar(s) to WEB-INF/lib ?? For example xalan.jar. Vaclav On Apr 12, 8:49 am, amitingle...@gmail.com amitingle...@gmail.com wrote: Hi All, I'm getting Prematureend of file while xsl transform JAVA CODE: // load xslt fromxsltFilePath             url

[appengine-java] How to log user generated traffic per user

2011-04-18 Thread mJay
Hello, I'm new at google app engine and I try to find a solution for a problem. I was searching the past days on the web but didn’t find anything that suits. Do anybody know a possibility to log traffic that is generated by a user (logged in with its google-account) when using an app on

[appengine-java] Re: How to log user generated traffic per user

2011-04-18 Thread Didier Durand
Hi, You should have your own implementation of the class Servlet Then, you should derive all your own servlets from this child of Servlet So, when a call a made to your central server is made, this child of Servlet will be instantied and you can get which url was called, the input parameters,

[appengine-java] Re: can I use Google maps in my Google Appengine java Application

2011-04-18 Thread Didier Durand
Hi, yes, you can. If you use Google Webtoolkit, the simplest way is to use the Java api for GWT at http://code.google.com/p/gwt-google-apis/ else, you have to generate your html via java to respect the google maps api requirements: script line, etc. regards didier On Apr 18, 8:44 am, Ram

[appengine-java] Re: How to log user generated traffic per user

2011-04-18 Thread Simon Knott
Hi, Didier's solution will definitely do the job for servlets. Alternatively, you could use a servlet filter to wrap all calls to specific URL mappings that allows you to capture the same data, without the need for a common base class, as well as capturing data for dynamic pages as well. You

[appengine-java] How to Read gmail inbox

2011-04-18 Thread Ramesh
Hi All, Can any one of you please tell me if it is possible read gmail inbox using Imap or pop3, preferably Imap. Please provide any useful links or sample code for reading gmail inbox. Thanks, Ramesh.V -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Re: can I use Google maps in my Google Appengine java Application

2011-04-18 Thread Ram
Thank You Didier for quick reply Also I am new to AppEngine development and Enterprise java...I am using Eclipse helios for developmentcan you say clearly where i want to write GWT codings, where i want to write servlet codings, also where i want to write JSP codings in a project.

[appengine-java] Re: How to Read gmail inbox

2011-04-18 Thread Drew Spencer
I would think you need to start here: http://code.google.com/appengine/docs/java/mail/overview.html -- 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

[appengine-java] How to give path name to servlet from index.html of a Application

2011-04-18 Thread Ram
https://lh4.googleusercontent.com/_pFEdVMtkqNs/TawvIEO3XOI/AAU/lEpOhNWInNk/18-4-2011%2018.4.43%201.jpg Hi all, I am using Eclipse Helios for Java AppEngine Application DevelopmentMy Project location is like above image My doubt is, In the index.html file, how to give path name

[appengine-java] JSP markup/code highlighting

2011-04-18 Thread Drew Spencer
Hi coders, just wondering if anyone knows an easy way to get JSPs recognised in some way by eclipse. I have downloaded the eclipse Web Development Tools (WDT) plugin/package v3.2.3 - I understand it's the best way to achieve proper highlighting of JSPs but it doesn't seem to have any support

[appengine-java] Re: How to Read gmail inbox

2011-04-18 Thread Ramesh
Ok Thanks -- 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

[appengine-java] Re: How to give path name to servlet from index.html of a Application

2011-04-18 Thread Ramesh
Check your web.xml, if it is well configured or not -- 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

[appengine-java] Re: How to give path name to servlet from index.html of a Application

2011-04-18 Thread Ram
This is my web.xml fileupto my knowledge all are correctwhat is the problem here... ?xml version=1.0 encoding=utf-8? web-app xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xmlns=http://java.sun.com/xml/ns/javaee; xmlns:web=http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd;

[appengine-java] Re: How to give path name to servlet from index.html of a Application

2011-04-18 Thread Ramesh
See the url pattern in web.xml and in index.html, it differs index.html: form action=*/ServletCheckServlet* method=get web.xml: url-pattern*/servletCheck*/url-pattern -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

[appengine-java] Re: How to give path name to servlet from index.html of a Application

2011-04-18 Thread Ram
Yes I tried that also, Web.xml: url-pattern/ServletCheckServlet/url-pattern but again slo same error occurs On Apr 18, 6:34 pm, Ramesh ramesh.v1...@gmail.com wrote: See the url pattern in web.xml and in index.html, it differs index.html: form action=*/ServletCheckServlet* method=get

[appengine-java] Re: How to give path name to servlet from index.html of a Application

2011-04-18 Thread Ramesh
It should work if url pattern is correctly matched. Check in case if you are running more than one instance of the same web application as shown in the attachment. Try restarting your server or restarting your eclipse. -- You received this message because you are subscribed to the Google

[appengine-java] Can't deploy app

2011-04-18 Thread Matt
I am getting a 500 error when I try to deploy my app. I have read about this problem, and it sounds like the solution is to use a gmail account instead of one registered through google domains, but I can't use my gmail account because I already registered my phone number with my google domain

Re: [appengine-java] JSP markup/code highlighting

2011-04-18 Thread Matthew Prestifilippo
I use eclipse 3.6.0 (I think 3.6.2 is out) and for syntax highlighting, I use this: http://www.eclipsecolorthemes.org/?view=plugin. There are a couple of options to choose from. Hope that helps. On Mon, Apr 18, 2011 at 9:15 AM, Drew Spencer slugmand...@gmail.com wrote: Hi coders, just

Re: [appengine-java] JSP markup/code highlighting

2011-04-18 Thread Drew Spencer
Hmmm... thanks for the tip, as it seems like a good plugin but I don't think it supports JSP :( Unless I'm doing something wrong. It just changes the text color and the background color. I want the text to be marked like HTML to make it more readable. Any ideas? -- You received this message

Re: [appengine-java] JSP markup/code highlighting

2011-04-18 Thread Matthew Prestifilippo
Oh, it sounds like your version of eclipse doesn't have a jsp editor. Check out this info from stack overflow... http://stackoverflow.com/questions/211841/is-there-a-good-jsp-editor-for-eclipse. On Mon, Apr 18, 2011 at 1:53 PM, Drew Spencer slugmand...@gmail.com wrote: Hmmm... thanks for

Re: [appengine-java] Re: How to give path name to servlet from index.html of a Application

2011-04-18 Thread Hariharan Anantharaman
Hi ram, What is the fully constructed url the form isgetting submitted to(onsubmit goto a javascript function?there alert the url for debugging and then submit). In the form action tag, try giving the path to ./ServletCheck. Prefixing with . Tries to look for resource in the same context. Thanks

[appengine-java] Re: How to give path name to servlet from index.html of a Application

2011-04-18 Thread Ram
Thank you Mr.RameshToday it is working well.just I have restarted eclipse and systemThank again for your quick responses Also i have another doubtI want to create a servlet which will run in particular time interval(every 5 minutes) and it will get some values and store it in

[appengine-java] explaination of stat

2011-04-18 Thread Vik
Hie Can some explain what all the terms means here? URI Requestslast 22 hrs Avg CPU (API)last hr % CPUlast 22 hrs

[appengine-java] Re: How to log user generated traffic per user

2011-04-18 Thread Nichole
Or you could use a ServletContextListener or a ServletFilter. They're components so easy to swap in an out of your architecture. On Apr 18, 4:04 am, Simon Knott knott.si...@gmail.com wrote: Hi, Didier's solution will definitely do the job for servlets.  Alternatively, you could use a servlet

[appengine-java] Re: How to give path name to servlet from index.html of a Application

2011-04-18 Thread Ramesh
You can do this by using cron jobs http://code.google.com/appengine/docs/java/config/cron.html On Apr 19, 8:59 am, Ram ram...@gmail.com wrote: Thank you Mr.RameshToday it is working well.just I have restarted eclipse and systemThank again for your quick responses Also i

[appengine-java] how to store these two values(s1s2) in data store of AppEngine....

2011-04-18 Thread Ram
Hi all, I have a Servlet in my AppEngine Application public class ServletCheckServlet extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.setContentType(text/plain); PrintWriter

[appengine-java] Re: can I use Google maps in my Google Appengine java Application

2011-04-18 Thread Ram
Please anybody reply... -- 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