[appengine-java] Re: PayPal Payflow Pro Connection Error

2010-09-23 Thread nischalshetty
Are you on Python or Java? I have my app on Java and PayPal provides an official java API for Google Appengine. It works great for me! -N On Sep 23, 6:42 pm, Shaun wrote: > I think that this is due to Google's limitation for allowing > connections to port 443. But when I try to connect to PayPa

Re: [appengine-java] Namespace design issues

2010-09-23 Thread John Patterson
On 24 Sep 2010, at 02:55, Mouseclicker wrote: API. The need to set and later reset a global setting is dangerous and error-prone. Probably that's what Guillaume mentions with "The fear I had was when seeing a static methods being used. I'm always afraid when I see 'static' somewhere." Me too!

[appengine-java] Re: Problem with persist a child class

2010-09-23 Thread lisandrodc
Hi!Cyrille I add a primary key in my child class: @PersistenceCapable(identityType = IdentityType.APPLICATION,detachable="true") public class RegFechaUsuario extends Fecha { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Key id; @Pers

[appengine-java] Access Java appstats data directly

2010-09-23 Thread Michael
In Python applications, accessing appstats data is fairly straightforward. Once you've imported google.appengine.ext.appstats.recording, you can simply call recording.load_summary_protos or recording.load_full_proto. I'm guessing that the key structure or namespace used for Java appstats is diffe

[appengine-java] Namespace design issues

2010-09-23 Thread Mouseclicker
I wanted to start a discussion about lifecycle and threading behavior of the NamespaceManager. Much of this has been answered meanwhile in another thread: http://groups.google.com/group/google-appengine-java/browse_thread/thread/8fec36b2c40f029b# The namespace is really a great feature to have. W

[appengine-java] Re: JSF2

2010-09-23 Thread Daniel
Hi this does not help... same behavior... i got my jsf jars from here : http://javadocs.wordpress.com/2009/10/17/mojarra-jsf-2-0-rc2-and-google-app-engine-sdk-1-2-6/ and followed the setting of web.xml from here https://sites.google.com/a/wildstartech.com/adventures-in-java/Java-Platform-Enterpris

[appengine-java] Re: DataNucleus error on Eclipse plugin windows filename too long

2010-09-23 Thread Stephen Johnson
I've posted this solution somewhere else but can't remember where. Anyway, if you're using eclipse plugin go to Project | Properties, choose Google \ App Engine \ ORM and only include directories that you have classes that you want enhanced. By default it does the entire project so that includes a

[appengine-java] Re: JDO - Update Partial Attributes In a Persistent Object

2010-09-23 Thread luka
Hi Romesh, I do have a detached reference to the actual object with part of the attributes populated. My solution to modify a persistant object today combined from the following steps: Steps to retrie & modificaty the persistant object --- 1. Retr

[appengine-java] AppStats giving very different results to the logged values in Dashboard

2010-09-23 Thread Ashley Schroder
I installed the AppStats tool in a bid to find out why my simple XML parsing requests were using so much CPU/API time - they run in the blink of an eye on my laptop at home so I couldn't understand why the App Engine was reporting each one took as much as 5 seconds. To my surprise the AppStats app

[appengine-java] PayPal Payflow Pro Connection Error

2010-09-23 Thread Shaun
I think that this is due to Google's limitation for allowing connections to port 443. But when I try to connect to PayPal for a payment I get the error: "Transaction Context Errors: Message 1:: [FATAL]RESULT=-1&RESPMSG=Failed to connect to host Input Server Uri= https://pilot-payflowpro.paypal.com

Re: [appengine-java] JSF2

2010-09-23 Thread Jaziel Leandro
I have the same error few times ago. Try this, make you Bean implements Serializable. 2010/9/23 Daniel > I'm want to use the without any luck > > I tried some very simple examples taken from > > http://mkblog.exadel.com/2010/04/learning-jsf-2-ajax-in-jsf-using-fajax-tag/ > > all of them works p

Re: [appengine-java] JDO - Update Partial Attributes In a Persistent Object

2010-09-23 Thread romesh soni
Hi Luka, How are you updating the object without having a reference of actual object to be updated. In such case, you should be first retrieving the actual object from db and then change the attributes and then save that object. This process doesn't result in any loss of data and you get what you

[appengine-java] JDO - Update Partial Attributes In a Persistent Object

2010-09-23 Thread luka
Hi, I have some JDO persistent objects which contains lots of attributes. So in some cases I use specific Fetch Groups and retrieve only some attributes which are relevant. In these cases when I change the attributes which I retrieved and try to update them the rest of the attributes (which I did

[appengine-java] Re: ِApp Engine Quotas

2010-09-23 Thread Ahmed Shoeib
i know that i mean how to control that in other word i want to know if what the range my web site grows up to know how much i will pay so the problem is how can i know what the range my web site grows up ? On Sep 23, 2:34 pm, Didier Durand wrote: > Hi Ahmed, > > If you  exceed the free quota,

[appengine-java] Re: ِApp Engine Quotas

2010-09-23 Thread Didier Durand
Hi Ahmed, If you exceed the free quota, see http://code.google.com/appengine/docs/billing.html#Billable_Quota_Unit_Cost to see the additional costs didier On Sep 23, 12:26 pm, Ahmed Shoeib wrote: > now i want to know > > if my website grows up > > how can i know how much i will pay for this gr

[appengine-java] JSF2

2010-09-23 Thread Daniel
I'm want to use the http://mkblog.exadel.com/2010/04/learning-jsf-2-ajax-in-jsf-using-fajax-tag/ all of them works perfectly on local Tomcat (not GAE) But when i try the same on GAE, nothing works, im not getting any errors.. its just do nothing... Here the simplest example On each char type I'm

[appengine-java] ِApp Engine Quotas

2010-09-23 Thread Ahmed Shoeib
now i want to know if my website grows up how can i know how much i will pay for this grow -- 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 unsubscrib

Re: [appengine-java] Re: Problem with persist a child class

2010-09-23 Thread Cyrille Vincey
There is no primary key in your child class. Add one. On 23/09/10 04:40, "lisandrodc" wrote: > Hi ! I have a problem when persist a chid class. > The parent class: > > @PersistenceCapable > > @Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE) > public abstract class Fecha { > > @P