Re: [appengine-java] Re: countEntities() does not return more than 1000

2010-09-02 Thread Yasuo Higa
I filed an issue: http://code.google.com/p/googleappengine/issues/detail?id=3671 Yasuo Higa On Thu, Aug 26, 2010 at 2:18 AM, tomkarren tkar...@gmail.com wrote: Agreed.  We have an example for a fix that does not correspond to the 1.3.6 low level API spec.  Could you please elaborate? On Aug

[appengine-java] JDO @Version not working properly?

2010-09-02 Thread bcottam
I'm trying to find out if I'm using the @Version annotation properly in my project. I read the code snippets that work from Max Ross: http://gae-java-persistence.blogspot.com/2009/10/optimistic-locking-with-version.html ...but perhaps there's a subtle detail I'm missing. I have a class that gets

[appengine-java] Problem while uploading Blob into Blobstore service

2010-09-02 Thread MANISH DHIMAN
Hello Friend, I am facing a problem while uploading data on Blobstore.It works fine when I use simple servlet and html but when I use GWT it raises exception. Development server raises the following problem: h2HTTP ERROR 404/h2 pProblem accessing /_ah/upload/

[appengine-java] Re: How we can read uncommitted data in same transaction.

2010-09-02 Thread Arnold
Subhash, You may want to use JDO if that is possible. It appears that you can read uncommitted data within the same transaction, I presume because the Entity does not get fetched from the Datastore every time you use PersisistenceManager.getObjectById(). The same may be applicable to JPA. On

Re: [appengine-java] Re: How we can read uncommitted data in same transaction.

2010-09-02 Thread John Patterson
On 2 Sep 2010, at 18:48, Arnold wrote: Subhash, You may want to use JDO if that is possible. It appears that you can read uncommitted data within the same transaction, I presume because the Entity does not get fetched from the Datastore every time you use PersisistenceManager.getObjectById().

[appengine-java] Unable to update

2010-09-02 Thread f...@ncky
Hello, I try do deploy with eclipse and i have that message: Unable to update: java.net.ConnectException: Connection timed out: connect at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(Unknown Source) at

[appengine-java] Using Spring and couldn't find any JSPs in subdirectories -- Solution

2010-09-02 Thread Dustin
Just thought I'd share something I figured out. Spent a good 1/2 day hacking my you-know-what off trying to figure it out. ISSUE: On local dev server, I could easily hit any JSP: $ curl http://localhost:8080/somedir/test.jsp IT WORKS! However, once deployed, $ curl

[appengine-java] 2dGraphics for GAE

2010-09-02 Thread Thomas P.
Hello, I have an application which essentially relies on being capable of rendering 2d graphics on the server side. I was quite shocked as I found out that BufferedImage and Graphics2D are in java classes which are not supported. So, I wanted to ask for help if: - is it possible to add

[appengine-java] Spring WS on Google App Engine

2010-09-02 Thread Shweta Deshpande
Hello, I am trying to build a SOAP web service using Spring and deploy it on App Engine. I followed the instructions in an article to build it. Since there is no support for javax.xml.soap, I used AxiomSoapMessageFactory, and also turned payloadCaching to false. When I run the service and send a

[appengine-java] non wanted callback called by mapreduce ?

2010-09-02 Thread Laurent
[sorry about crossposting] Hi I'm just starting with mapreduce. Examples worked fine, so I started doing my stuff. Strange thing happened and I can't figure out what's going on : no problem with this one : public void map(Key key, Entity value, Context context) { if

[appengine-java] Uncaught exception from servlet

2010-09-02 Thread zachariahyoung
I'm working on trying to get Spring Roo 1.1.0.M3 with Google Web Toolkit 2.1.0.M3 working in Google App Engine for Java 1.3.7. I have even had a hard time getting some of the samples to work. I was hope someone could help me with the follow error and direct me on how I need to fix it. Error

[appengine-java] App Engine Cloud Cover Testing

2010-09-02 Thread mobileQAguru
Hi, I am getting following error when I am trying to run unit tests using clound cover javax.servlet.ServletContext log: Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract

Re: [appengine-java] pm.store() failing silently

2010-09-02 Thread Ikai L (Google)
Does this consistently fail every 1/3 times, or at certain times? Not that it should matter, but how are you creating the PersistenceManager? On Wed, Sep 1, 2010 at 6:21 PM, John demowee...@gmail.com wrote: This one is for App Engine team. Random silent failures, no explanation. I have a

Re: [appengine-java] Uncaught exception from servlet

2010-09-02 Thread Ikai L (Google)
I'm not a Spring Roo expert, but this seems to offer a clue: java.lang.IllegalStateException: Unable to locate the default servlet for serving static content. Please set the 'defaultServletName' property explicitly. Does that property mean anything to you? On Wed, Sep 1, 2010 at 8:11 PM,

Re: [appengine-java] App Engine Cloud Cover Testing

2010-09-02 Thread Ramesh Ottikunta
Hi, The problem described in my first email got solved after adding junit.jar, which seems to added manually to lib folder but now I'm getting following exception on string the New Run: 09-02 12:30PM 23.617 /cloudcover/queueAction/completionNotification/4001 java.lang.NullPointerException

[appengine-java] Re: What is entity detached yet this operation requires it to be attached?

2010-09-02 Thread nksi
I also have a similar problem. in my exsample: @Entity class Test { @Id @Column(name = ID) @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(nullable = false) private Boolean isLatest; } # service Test test = TestDao.getByCode(code) test.setIsLatest(false)

[appengine-java] Does JSF Session Bean are supported ?

2010-09-02 Thread hadf
I'm a newbie in JSF and AppEngine technology. I've created a simple form which redirect to a summary page that displays the form data. The trouble is that form data is lost during redirect as if session beans were not supported. So I would like to know how to deal with session data. Here is my

[appengine-java] Re: Uncaught exception from servlet

2010-09-02 Thread zachariahyoung
When will this issue be fixed? This maybe be my issue. http://code.google.com/p/googleappengine/issues/detail?id=1506 JSP spec. App Engine SDK supports is different between API JAR (geronimo-jsp_2.1_spec-1.0.1.jar) and implementation JAR (jasper- runtime-5.0.28.jar). Though

[appengine-java] Re: Does JSF Session Bean are supported ?

2010-09-02 Thread Chris (Google Employee)
Hi Hadrien, You should definitely make sure you've turned on session support in your app: ?xml version=1.0 encoding=utf-8? appengine-web-app xmlns=http://appengine.google.com/ns/1.0; application/application version1/version sessions-enabledtrue/sessions-enabled !-- Configure

[appengine-java] Re: Uncaught exception from servlet

2010-09-02 Thread zachariahyoung
Ikai, I have posted the same issue on the Spring Roo forums. Below is the reply I got from them. With the Roo 1.1 M3 release we have changed the way we map the Spring DispatcherServlet following Spring Framework improvements. We are also using a new MVC resources handler (configured in

[appengine-java] Re: Applets in GAE

2010-09-02 Thread Chris (Google Employee)
Applets should be fine as long as the applet jar file(s) are not too big. (10M) If they are bigger, you'll need to upload and deploy your app via the command line appcfg with option --enable_jar_splitting specified. For networking you should be able to send REST request from your applet to your

Re: [appengine-java] can we use Web-services in Gooogle app engine

2010-09-02 Thread Ronmell Fuentes
Hi. As far as I know and have tried, GAE supports but Rest-type web services only, called RESTLETs. R. Fuentes. 2010/8/23 aptest1 actiprocess apte...@gmail.com Hi, We are planning to use web-services in Google app to communicate with SAP-system. 1.Is Google app engine supports the

[appengine-java] Inheritance

2010-09-02 Thread lisandrodc
Hi! Someone has some code working correctly that uses inheritance? Since in the link: http://code.google.com/intl/es/appengine/docs/java/datastore/relationships.html#Owned_One_to_Many_Relationships He does not say anything in the matter... Regards Lisandro -- You received this message because

[appengine-java] Google app engine not activated

2010-09-02 Thread Saurabh
Hi , I have registered two applications 2 weeks back but still haven't received any mail for my account activation from google.I am not able to deploy my application through eclipse deploy option. Kindly advise how long it takes to get app engine account activation. Thanks Regards, Saurabh --