[appengine-java] Re: child of the same class

2009-09-02 Thread mar_novice
Since it is not yet supported, what is the possible approache in the meantime to solve this? Can i use unowned one-to-many relationship? And when the one-to-many same class relationship bug is already fixed, is there a way to convert the unowned one-to-many to owned? On Sep 2, 8:29 am,

[appengine-java] Re: issues with compass for GAE apps

2009-09-02 Thread Vik
Hie here is the code I am using: package vik.sakshum.sakshumweb.jsp.model.jdo; import javax.jdo.JDOHelper; import javax.jdo.PersistenceManagerFactory; import org.compass.core.Compass; import org.compass.core.config.CompassConfiguration; import org.compass.core.config.CompassEnvironment; import

[appengine-java] Re: GAE Eclipse plugin - Uploading 0 files.

2009-09-02 Thread barak
No, the files were uploaded, I just wondering regarding the wording... On Sep 1, 5:50 pm, Jason Parekh jasonpar...@gmail.com wrote: Hm, and when you hit your web app on app engine, it was still the old version? jason On Tue, Sep 1, 2009 at 3:02 AM, barak barak.ya...@gmail.com wrote:

[appengine-java] Re: who can help me

2009-09-02 Thread leszek
Look into this file: WEB-INF/web.xml. It looks like XML-syntax problem. --~--~-~--~~~---~--~~ 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

[appengine-java] Reg-What Java Frameworks supports With Google Java App Engine

2009-09-02 Thread kanth
Hi, I am new to Google Java App Engine.Is Google Java App Engine supports Java Frame works like Struts1.x Struts2,JSF,etc? OR just one can develop by using servlets and jsps with Google Java App Engine? Please give information on this? Regards Rao

[appengine-java] Problem while using Gilead for Hibernate and Gwt

2009-09-02 Thread Rajitha
Hi All, Im currently working on Sim Applications using Hibernate,Gwt,mysql in eclipse 3.4.im using Gilead for this. When im running my Application im getting following errors: SEVERE: [125187460050] javax.servlet.ServletContext log: Exception while dispatching incoming RPC call

[appengine-java] Re: A matter in local time

2009-09-02 Thread leszek
If you delete double declaration (String formattedDate) and add proper imports and declaration 'Calendar cal = Calendar.getInstance()); it should work. But you are having this problem while running in local environment (in your machine) or it does not work after deploying to google (production)

[appengine-java] xmpp support

2009-09-02 Thread asianCoolz
May i know when GAE mentioned will support XMPP for next version of GAE, does that mean, it will support all features of xmpp? can we use BOSH to replace comet feature? the reason i asking is because i'm very interested to use comet in my application but found out GAE doesn't support it. So, I

[appengine-java] Re: self join in google app engine

2009-09-02 Thread leszek
Read this thread - could be helpfull : http://groups.google.co.uk/group/google-appengine-java/browse_frm/thread/3affdf1441f864b6/99a166946ad0ef61?lnk=gstq=self#99a166946ad0ef61 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[appengine-java] Re: xmpp support

2009-09-02 Thread Roberto Saccon
last time I asked (a few months back, before wave announcement) and got an answer from a Google employee, BOSH was not intended to be part of the GAE supported XMPP subset. -- Roberto On Sep 2, 5:47 am, asianCoolz second.co...@gmail.com wrote: May i know when GAE mentioned will support XMPP

[appengine-java] Re: Exception while deploying JSP Tag Lib Files

2009-09-02 Thread Jim McCabe
Klaus - I had the same problem, but there is a way to fix it. Take a look at the link suggested by Rajeev: http://groups.google.com/group/google-appengine-java/browse_thread/thread/175e70cc0c93ded9 About 75% of the way deep into the thread you'll start to find some solutions. For me, there

[appengine-java] Re: Log4J vs. java.util.logging in App Engine projects

2009-09-02 Thread Rajeev Dayal
Hi Bill, Would you mind filing an issue for this: http://code.google.com/p/googleappengine/issues/list Thanks, Rajeev On Tue, Sep 1, 2009 at 10:12 PM, Bill Higgins billh...@gmail.com wrote: Thanks again for the explanation Rajeev. I would politely suggest beefing up the header comments in

[appengine-java] Re: bigtable allow external connection?

2009-09-02 Thread Jason (Google)
In general, you'll have to set up an HTTP-based interface to your data (e.g. handlers to create, retrieve, update, etc.) -- you won't be able to connect to and interface directly with the datastore service in particular. That said, you might find the remote_api module (Python-only, for now)

[appengine-java] Re: http duration 30seconds

2009-09-02 Thread Jason (Google)
Yes, as long as you can retrieve if from the datastore within 30 seconds. Remember that each datastore entity can be at most 1 MB, so you'll have to split large files into several entities and stitch them together on retrieval. - Jason On Mon, Aug 31, 2009 at 6:17 PM, CoolDude

[appengine-java] Re: Unowned relationships

2009-09-02 Thread Jason (Google)
I haven't tested this, but I believe this should work, yes. Let me know if/when you try it. As an aside, the object you return here won't actually be detached since you're not using transactions (and hence, not committing). You'll want to use something like the following or use a transaction.

[appengine-java] Re: Sign in to security constraint enabled page programmatically

2009-09-02 Thread Jason (Google)
You will have to use the ClientLogin API to get a token and use the token to get a cookie from App Engine which you can then use for all subsequent requests. The general process (for Python) is written up here:

[appengine-java] Re: java.lang.NoClassDefFoundError

2009-09-02 Thread Jason (Google)
Please post the full stack trace. - Jason On Mon, Aug 31, 2009 at 9:17 PM, g gigi...@gmail.com wrote: I use freemarker as my template engine. I have the freemarker.jar under the \war\WEB-INFO\lib from this morning all my pages return 500 error: java.lang.NoClassDefFoundError: Could not

[appengine-java] Re: bigtable allow external connection?

2009-09-02 Thread Erik Bengtson
You can also use DataNucleus REST. http://www.datanucleus.org/products/accessplatform_2_0/rest/api.html On 1 sep, 09:33, asianCoolz second.co...@gmail.com wrote: possible to only utitlieze bigtable for storing data ? may i know is it possible to connect to certain port on google app engine to

[appengine-java] Re: When create a multiple module entry in a project?

2009-09-02 Thread Jason (Google)
I'm not sure what you mean by module entry. Can you explain what you're trying to do in more detail? If you're new to server-side programming, you will probably find the App Engine tutorial helpful: http://code.google.com/appengine/docs/java/gettingstarted/ - Jason On Tue, Sep 1, 2009 at 8:56

[appengine-java] Re: how to serialize correctly the VectorMyType member in @PersistenceCapable class

2009-09-02 Thread Jason (Google)
Hi Dmitry. After fetching the MyClassA entity, is the Vector object empty (i.e. the Vector has been instantiated but has 0 items) or null? - Jason On Tue, Sep 1, 2009 at 9:28 AM, Dmitry Anipko dmitry.ani...@gmail.comwrote: Hi, I'm stuck with an issue I hope someone can help with (googling

[appengine-java] Re: test unit doesn't work more

2009-09-02 Thread Jason (Google)
If you're running JUnit tests that rely on the local datastore, you have to add these JARs to your build path manually. - Jason On Tue, Sep 1, 2009 at 4:02 PM, OliBye oliver@gmail.com wrote: I also had this issue using the Eclipse plug-in. This does not appear to be the original issue

[appengine-java] Re: non-google authentication like in taskless

2009-09-02 Thread Filipe AlvesFerreira
Hi George, I'm using taskless.appspot for Economy 4G3W notes at : https://sites.google.com/a/datevalors1.com/mywebjurispersonquality/home/bem-vindo-a-wuwtools4g3w Any ideas anyone? https://sites.google.com/a/datevalors1.com/mywebjurispersonquality/home/bem-vindo-a-wuwtools4g3w Thanks 2009/9/2

[appengine-java] Re: Errors while uploading the application

2009-09-02 Thread Jason (Google)
What is your application's ID? I'm guessing it isn't 'example'. :) Which version of the SDK are you using? Are you trying to deploy from Eclipse or the command line? Are you seeing a more descriptive error, and if so, can you paste it here? - Jason On Tue, Sep 1, 2009 at 7:13 AM, Mita Sakhalkar

[appengine-java] Re: java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration

2009-09-02 Thread Hani Naguib
The exception has now changed to: (what is going on!) org.springframework.web.servlet.FrameworkServlet initServletBean: Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'freemarkerConfig' defined in ServletContext resource

[appengine-java] Re: Image Upload

2009-09-02 Thread Mike
GWT and java app engine eclipse galileo 3.5 On Sep 2, 6:13 pm, Travis J Warren travisjwar...@gmail.com wrote: What environment are you developing in? On Sep 3, 8:03 am, Michael Ring michaeljr...@gmail.com wrote: I'm trying to use apache file upload per the example in the app engine

[appengine-java] java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration

2009-09-02 Thread Hani Naguib
Has any thing changed today. My java app stopped working after a redeploy today. I get the following error: org.springframework.web.servlet.FrameworkServlet initServletBean: Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name

[appengine-java] Re: java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration

2009-09-02 Thread 鱼雷导弹
I have the same problem, too. What happened? 09-02 05:49PM 42.341 Error for /home java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration at jtweet.web.HomeServlet.getHomeTimeline(HomeServlet.java:82) at

[appengine-java] Re: GAE down? Response Error 500

2009-09-02 Thread Xlorep DarkHelm
I should note: http://showsort.appspot.com There should be 2 things that happen, a line drawn down the middle of a big square, and a set of radio buttons are loaded. Only the line is drawn. On Sep 2, 4:47 pm, Xlorep DarkHelm ch...@darkhelm.org wrote: yeah, noticing a lot of weirdness as of a