Daniel ,
Would you mind posting the sample code. OR the link to the samples
that helped you code the application
On Sep 19, 7:24 am, Daniel Florey wrote:
> I've been able to access spreadsheets from GAE without problems.
> The only problem is the limited upload size for URLFetch that makes it
>
I tried and gave up because:
1. Google spreadsheets requires Oauth2.0
2. Google AppEngine does not support Oauth2.0
It is possible to write to spreadhseets via GWT - client side - not
via appengine
On Sep 17, 2:40 pm, Gerald Tan wrote:
> It should
> be:http://code.google.com/apis/spreadsheets/d
Would love it if you could post your experience in a blog. The site
is neatly done.
A few questions
1. Did you use pure GWT or something like GXT on top of GWT
2. Challenges you faced.
3. AppEngine gotcha's etc
On Jan 30, 1:09 pm, Michael Weinberg wrote:
> Wanted to share our project called Cit
I dont think you can. I had posted the same question about an year
ago. At that time you could not.
I believe there were some java.io.file and ClassLoader dependencies
that did not work
On Sep 12, 8:47 am, Maxim Veksler wrote:
> Can I run Drools on app engine ?
--
You received this message bec
I have implemented a JSON based RPC framework - refer
http://code.google.com/p/amazingapis/wiki/JsonServlet_JsonClient_mechanism
So basically , This is cmd framework where you can send request string
as Json streams on HTTP and your JSONServlet on the server will read
client requests and pass inv
Can the SpringRoo be included into the GAE core as a replacement for
LocalDataStore Viewer at http://localhost:/_ah/admin/datastore.
Why can the GAW code look at the Domain class and then create a
springroo based GUI by default in the background
--
You received this message because you are s
full words as tokens)
>
> >> i would recommend low-level datastore api for that, also, your index
> >> term entities will blow up beyond 1MB, i built mindash-datastore to
> >> handle that
>
> >> :) or you can wait for a few months for Google
>
> >>
getObjectsByIds(List Keys) is not of much use if you are using
Memcache.
there is no way to know for which keys you have an entry in Memcache
and for which keys you dont.
Vote on the issue here -
http://code.google.com/p/googleappengine/issues/detail?id=3052
for feature request
On Apr 3, 1:36
I keep on getting this error - net.sf.jsr107cache.CacheException:
Could not find class: 'ri.cache.BasicCacheFactory'
Where is the jar file for this.
I have jsr107-cache.1.1.jar on the path and I am running GAEJ 1.3.2
--
You received this message because you are subscribed to the Google Groups
, niraj wrote:
> My code on the server is
> if(userPrincipal != null){
> String name = userPrincipal.getName();
> site.setNickName(name);
> site.setLoginLogOutURL(userService.createLogoutURL(thisURL));
> sit
My code on the server is
if(userPrincipal != null){
String name = userPrincipal.getName();
site.setNickName(name);
site.setLoginLogOutURL(userService.createLogoutURL(thisURL));
site.setLoggedIn(true);
}else{
si
I am debating if I should use Compass or wait for Google to release
something.
I can wait for 3-4 months as my website is going to take that amount
of time to complete.
Niraj
On Mar 16, 3:16 am, Toby wrote:
> I am using compass as well and it works fine. The indexing part is
> costly a
My case:
I am building a website that has several searchable fields from
various entities (example Artist names from artist entity , Album
names from album entity). To have an efficient search capability I
have defined another Entity - SearchType which carries the Searchable
string and the Foreign
My app seems to be getting an Error in Loading Spring. Note the
exception below.
Conditions:
1. The Code works fine in Local Environment - No problem.
2. the Problem is only on the AppEngine Physical instance.
3. Seems like there is a new Security Constraint introduced that is
causing the problem
Getnextid was referred to by max ross in his google io talk in april
2009
On Feb 7, 11:48 am, datanucleus wrote:
> What getNextID feature on JDO ? i.e please make reference to the JDO
> API and which particular API Method you're referring to
--
You received this message because you are subscr
when is the getNextID feature on jdo going to be available.
--
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-j...@googlegroups.com.
To unsubscribe from this group, send email to
If the Last URL does not work use this
http://www.elance.com/job?jobid=19035975&rid=1KDB9
On Feb 2, 7:26 am, niraj wrote:
> If anyone on this group is interested in AppEngine-Java-JDO work and
> make some quick bucks please look at the posting on elance
>
> http://shar.e
If anyone on this group is interested in AppEngine-Java-JDO work and
make some quick bucks please look at the posting on elance
http://shar.es/aM73b
--
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
Is there a good book / Tutor / Article available for Appengine Data
stuff.
I know about http://gae-java-persistence.blogspot.com. Any more
resources- I am mainly struggling with Mapping issues and Entity Group
related transaction issues.
--
You received this message because you are subscribed t
I use GWT with GXT has the layer above it
http://www.extjs.com/products/gxt/
On Dec 23, 9:56 am, itsnotvalid wrote:
> I tried Django the other day and find that its feature set needs some
> polishing (especially in the forms, or newforms if you have been a
> long user of Django)
>
> The situation
I have three classes
Album{
Artist albumArtist;
@Persistent(mappedBy = "parent")
@Element(dependent = "true")
List songs;
}
Song{
Artist singer;
Album parent;
}
Artist{
String name;
}
If I use the Artist instance I create for Album for Song(singer) - I
get an error
javax.jd
Based on query on this forum on Drools seems like DROOLS does not work
on AppEngine.
Is there any other Rule Engine that works on AppEngine
--
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 googl
I have implemented a JSONServlet that accepts JSON and returns JSON. I
use GSON as the java-JSON binding framework.
Link here- http://code.google.com/p/amazingapis/
Note the documentation for GAE stuff is poor but the package of
interest is org.webscale.json.* There is servlet framerwork and a
c
If I cannot store JDO Extent in the HTTPSession , how do I implement
paging behavior. Is there a token somewhere I can refer to
Please advice
On Sep 7, 12:55 am, datanucleus wrote:
> Why should a javax.jdo.Extent be Serializable ? JDO doesn't define it
> to be so. Shouldn't be hard to put the o
My need is to implement database rowset paging behaviour.
i.e I want to create an Extent when session created and then on page
request browse the dataset from the last point.
The problem:
JDOExtent is not serializable and hence the code below throws an
extent.
Please suggest an alternative appr
25 matches
Mail list logo