[google-appengine] I need to build a very custom application upon google applications and enterprise

2010-03-10 Thread Ali
Hi - I've been doing a bit of reading on google applications and the idea of integrating their applications such to form a complete product. Especially after reading case studies of small companies shifting to google and 'customising' google applications. Basically I have a strong php background a

[google-appengine] Re: Validation code

2010-07-20 Thread Saqib Ali
I have a similar problem: I had already used my cell phone number for SMS Verification for App Engine (consumer edition). But now when I try to use the same phone for App Engine for Business it complains, "The phone number has been sent too many messages or has already been used to confirm an acco

Re: [google-appengine] Validation code

2010-07-21 Thread Ali, Saqib
Hi Nick, This links seems to be broken. It just redirects me to the main appengine page (http://appengine.google.com/) Saqib On Wed, Jul 21, 2010 at 3:06 AM, Nick Johnson (Google) wrote: > Hi, > > If you are having trouble with SMS verification, or want an additional > account activated, please

[google-appengine] Java files not compiling upon Run As -> Web Application

2010-07-21 Thread Saqib Ali
I just configured Eclipse on Linux machine. However whenever I do Run As -> Web Application, it doesn't recompile the java files, even though I have Project -> Build Automatically checked. The java files get compiled only when I do a "Deploy Project to Google App Engine" What gives? Any ideas wha

[google-appengine] How to check if the user is logged in using Javascript?

2010-07-30 Thread Saqib Ali
How do I check if the user is currently logged in using their Google Account in Javascript? I can set some hidden field to do that, but is there a more elegant way to do this? saqib -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post t

[google-appengine] Re: How to check if the user is logged in using Javascript?

2010-08-02 Thread Saqib Ali
thank ya'll for the responses. so it seems that without making further trips to the server, the only way to check to see if the user is logged in is to set some cookie/hidden fields... -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Unable to access the Datastore Viewer

2010-08-02 Thread Saqib Ali
I am getting the following err msg when trying to access the Datastore Viewer in the appengine console: Server Error A server error has occurred. Return to Applications screen » Anyone else seeing this issue? -- You received this message because you are subscribed to the Google Groups "Google

[google-appengine] ArrayList users.contains(user) stops working after switching to Federated Login

2010-08-02 Thread Saqib Ali
ArrayList users = new ArrayList(); if (users.contains(user)){ } stops working after switching to Federated Login. What gives? (the ArrayList of users is populated at the time of "if" stmt) I get the following output: Uncaught exception from servlet java.lang.NullPointerException

[google-appengine] Re: Unable to access the Datastore Viewer

2010-08-02 Thread Saqib Ali
hmmm. had to programmatically empty out the datastore before i could use the Datastore Viewer again. good thing this was just a test app :) On Aug 2, 9:47 am, Saqib Ali wrote: > I am getting the following err msg when trying to access the Datastore > Viewer in the appengine console: >

[google-appengine] Verisign's PIP OpenID and the Federated Logon in GAE

2010-08-03 Thread Saqib Ali
Hello All, I am trying to make the Verisign's PIP OpenID work with the Federated Logon in GAE, but to no avail. Anyone else running into the same issue? Other OpenID providers work fine for the app. You can try it out at: http://crowdedintelligence.appspot.com Thanks, Saqib -- You received thi

[google-appengine] Re: Verisign's PIP OpenID and the Federated Logon in GAE

2010-08-05 Thread Saqib Ali
any thoughts on this On Aug 3, 11:03 am, Saqib Ali wrote: > Hello All, > > I am trying to make the Verisign's PIP OpenID work with the Federated > Logon in GAE, but to no avail. Anyone else running into the same > issue? Other OpenID providers work fine for the app. &g

[google-appengine] check for existence of a entity (object) in the datastore?

2010-08-08 Thread Saqib Ali
How do I check if an entity (object) exist in the datastore? I am using an application generated Unencoded String for the key... -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@goog

[google-appengine] Unable to getFederatedIdentity() for stored user objects

2010-08-08 Thread Saqib Ali
I am storing all the users who have logged in as user objects in the datastore. however, whenever i try to getFederatedIdentity() for a stored user object, it fails. i can do a getNickname() but not getFederatedIdentity() what gives saqib -- You received this message because you are

[google-appengine] Re: check for existence of a entity (object) in the datastore?

2010-08-08 Thread Saqib Ali
> there is any other way than actually performing a query. > > Stephen > > On Aug 8, 9:04 am, Saqib Ali wrote: > > > > > How do I check if an entity (object) exist in the datastore? I am > > using an application generated Unencoded String for the key... --

[google-appengine] Re: check for existence of a entity (object) in the datastore?

2010-08-08 Thread Saqib Ali
yup Java/JDO. Thanks in advance! :) On Aug 8, 11:17 am, Stephen Johnson wrote: > Hi Saqib, > It depends on what your using. If your using Java/JDO, then I can > write something up for you. > Stephen > > On Aug 8, 10:50 am, Saqib Ali wrote: > > > > > Stephen,

[google-appengine] Persistent ArrayList of Serialized Object resulting in " is not a supported property type" exception

2010-08-08 Thread Saqib Ali
I have an object defined Serializable as follows: public class comment implements Serializable { /** * */ private static final long serialVersionUID = 1L; private String commentText; private String commenterFedID; public comment (){ this.comme

[google-appengine] Re: check for existence of a entity (object) in the datastore?

2010-08-08 Thread Saqib Ali
            if (pm != null) pm.close(); >             } >         } > > So, if this is in a class called Utility and you have an entity class > Employee and you want to check for an unencoded key string of > "EMP-1234" just call it like this: > >    if (Utility.doesEntityExi

[google-appengine] Re: Persistent ArrayList of Serialized Object resulting in " is not a supported property type" exception

2010-08-08 Thread Saqib Ali
Stephen, had already tried that earlier. tried it now again. no luck :( On Aug 8, 3:42 pm, Stephen Johnson wrote: > Hi Saqib, > Try this: >   �...@persistent(serialized = "true") > > Stephen > > On Aug 8, 2:52 pm, Saqib Ali wrote: > > > > > I

[google-appengine] Re: Persistent ArrayList of Serialized Object resulting in " is not a supported property type" exception

2010-08-09 Thread Saqib Ali
Thanks Stephen!!! The blog post was super helpful. I got to work! :) Saqib On Aug 8, 5:38 pm, Stephen Johnson wrote: > Check out: > > http://gae-java-persistence.blogspot.com/2009/10/serialized-fields.html > > Perhaps re-writing like that will work. > > On Aug 8, 4:59

[google-appengine] Re: Unable to access the Datastore Viewer

2010-08-14 Thread Saqib Ali
seems like if I use Federated Identity for authentication, and store user objects in the entities, I will invariably cause the Server Error (500) on the Datastore Viewer. Is this something that Google can address? -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: OpenID + SSL give ssl_error_rx_record_too_long

2010-08-16 Thread Saqib Ali
OpenID is not supported if your app runs in secure mode using HTTPS See: http://code.google.com/appengine/articles/openid.html On Aug 16, 6:15 am, MLTrim wrote: > Hi to all the group > > I'm developing a small webapp with Gae and i have enabled OpenID to > test it as primary login. > Has anyone

[google-appengine] Re: Unable to access the Datastore Viewer

2010-08-16 Thread Saqib Ali
On Aug 16, 11:40 am, "Ikai L (Google)" wrote: > That sounds like a different topic. Can you describe which Users are causing > the error? > > > > > > On Sat, Aug 14, 2010 at 1:52 PM, Saqib Ali wrote: > > seems like if I use Federated Identity for authe

[google-appengine] Unable to rollback GAE Deployment Transaction

2010-08-24 Thread Saqib Ali
I am trying to use the appcfg.sh in the GAE Java SDK to rollback a stuck (in progress) deployment. However the rollback is failing because I have an space character in the Folder name for the Project: appengine-java-sdk-1.3.5/bin/appcfg.sh rollback "workspace/Crowded\ Intelligence/war/" (fails) ap

[google-appengine] Re: Unable to rollback GAE Deployment Transaction

2010-08-24 Thread Saqib Ali
Not sure if renaming to remove space will break something else. I use eclipse. Any thoughts? On Aug 24, 12:42 pm, Robert Kluin wrote: > On Tue, Aug 24, 2010 at 13:40, Saqib Ali wrote: > > I am trying to use the appcfg.sh in the GAE Java SDK to rollback a > > stuck (in progr

[google-appengine] Re: Unable to rollback GAE Deployment Transaction

2010-08-24 Thread Saqib Ali
handle updating all of > your references etc > > Robert > > > > On Tue, Aug 24, 2010 at 16:19, Saqib Ali wrote: > > Not sure if renaming to remove space will break something else. I use > > eclipse. Any thoughts? > > > On Aug 24, 12:42 pm, Robert Kluin wrot

[google-appengine] Reports, backups for Java?

2010-09-06 Thread Ali Laith
needs to be addressed if serious business application is to be created... Regards, Ali -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this g

[google-appengine] AppEngine MapReduce in Java

2010-10-01 Thread Lusana Ali
Hi, Ive just started using the Appengine mapreduce. Everything is running gravy, I can run it via the Mapper Console. My next requirement is that i must be able to run it via a URL, so that I may create Chron jobs which will execute the mapreduction every night. Every night -> run -> mapreduce A

Re: [google-appengine] Re: HTTP ERROR 403

2010-11-02 Thread ramis ali
You know where to look for server logs ? Thanks On Mon, Nov 1, 2010 at 9:28 PM, MasterGaurav wrote: > Did you look at the server logs? > > > > -- > Happy Hacking, > Gaurav Vaish > http://www.mastergaurav.com > > On Nov 1, 4:01 am, jargon wrote: > > I was following the jsp tutorial for google a

Re: [google-appengine] Re: HTTP ERROR 403

2010-11-02 Thread ramis ali
/. Reason:FORBIDDEN 2-Nov-2010 4:29:08 PM com.google.appengine.tools.development.LocalResourceFileServlet doGet WARNING: No file found for: /favicon.ico On Tue, Nov 2, 2010 at 4:26 PM, ramis ali wrote: > You know where to look for server logs ? Thanks > > > On Mon, Nov 1, 2010 at 9:28 PM, Master

Re: [google-appengine] High rate for errors of type 500 ?

2010-11-03 Thread ramis ali
It's the most useless forum ever , nobody ever replies . G'luck with your questions . On Wed, Nov 3, 2010 at 4:12 PM, Ice13ill wrote: > It's just me (and my app) or the 500 type errors are extremely > often ?? Is there anyone who didn't experienced this problem in the > last horurs ? > > -- > Yo

[google-appengine] Re: Valid class not persisting

2011-09-26 Thread Juzer Ali
Got it! Kindly ignore this. There was some other part of code which was failing. In the class Contacts I hadn't wrote a primary key. But I have another problem. I am storing keys as Long, but when I retrieve those keys by calling getKey() they come back as String. My code is giving the following

[google-appengine] Re: Can't get a SMS message to activate google app engine servise

2012-04-06 Thread Ali makhion
Hi, > > I can't verify my account by SMS from > http://appengine.google.com/permissions/smssend.do, tried many times > with > friends' mobile phone no, > i'm from egypt tried every thing please heelp > > > Thanks, > Ali makhion >

[google-appengine] Client Certificate Authentication in GAE

2013-12-05 Thread waqas ali
I want to know is client certificate authentication is possible in GAE. I have an application that have to request client certificates to the user. I already have created an application in tomcat server which perfectly perform mutual authentication of client and server. I also want to know is t

[google-appengine] Re: Test delete using JPA

2014-01-21 Thread waqas ali
share the code for proper answering. I was getting this exception because In my delete function i was using this query " DELETE LC FROM LoginConfiguration LC ". While the correct one is " DELETE FROM LoginConfiguration LC ". On Thursday, January 17, 2013 8:04:14 PM UTC+5, Werney Ayala wrote:

[google-appengine] Bitnami Wordpress Login

2018-04-02 Thread Mir Ali
e are facing some file permission issue but unable to resolve as we don't have the required credentials. How can I resolve this issue? Regards, Mir Ali. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from

[google-appengine] Invalid Static JS Content Type on Google AppEngine Standard Environment

2018-12-06 Thread Ali Koc
I have a simple java application running on Google App Engine Standard environment, which along with servlets, also contains static html, css and js files. It seems js files are always served with "content-type: text/plain". Even when I create a new Hello App Engine application (doing this i

[google-appengine] Re: Invalid Static JS Content Type on Google AppEngine Standard Environment

2018-12-07 Thread Ali Koc
text/plain. Between these dates, there has been no change to the build or deployment, just modifications to the contents of static files. But we regularly update the google cloud sdk on the deployment machine. So I suspect this is a bug introduced in one of the sdks. [image: screenshot.png]

[google-appengine] Re: Invalid Static JS Content Type on Google AppEngine Standard Environment

2018-12-08 Thread Ali Koc
eclipse, - install Google Cloud Tools for Eclipse, - create hello world application (add a dummy js file) - deploy to app engine standard environment. Do you js files being served as text/plain or application/javascript? - Ali On Friday, December 7, 2018 at 5:18:29 PM UTC-5, George (Cloud

[google-appengine] when we can expect the java 11 in appengine standard?

2019-03-22 Thread Saif Ali
When the Java 11 available for AppEngine Standard environment and will it be having any license issues? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to go

[google-appengine] java.lang.OutOfMemoryError: Java heap space while creating ZIP archives in Google App Engine

2019-05-17 Thread Ibrahim Ali
Creating ZIP archives in Google App Engine (Java) I am got this error in the gae cloud logs: java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf(Arrays.java:2271) at java.io.ByteArrayOutputStream.grow(ByteArrayOutputStream.java:113) at java.io.ByteArrayOutputStream.ensure

[google-appengine] java.lang.outofmemoryerror: java heap space when creating ZIP archives in Google App Engine ( Java)

2019-05-17 Thread Ibrahim Ali
Creating ZIP archives in Google App Engine (Java) I am got this error in the gae cloud logs: java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf(Arrays.java:2271) at java.io.ByteArrayOutputStream.grow(ByteArrayOutputStream.java:113) at java.io.ByteArrayOutputStream.ensure

Re: [google-appengine] Re: java.lang.outofmemoryerror: java heap space when creating ZIP archives in Google App Engine ( Java)

2019-05-19 Thread Ibrahim Ali
Hello, Thanks for your reply. Can I save zip file in the storage, then add files to it dynamically on run time ? it will help and prevent this error, but how can i do it using app engine services ? On Sat, May 18, 2019 at 10:18 PM 'George (Cloud Platform Support)' via Google App Engine wrote: >

[google-appengine] ServletContext.getServerInfo() method

2010-02-05 Thread Ali Ok
e. Thanks, Ali [1] https://issues.apache.org/jira/browse/MYFACES-2504 -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, s

[google-appengine] Filter's static variable is lost

2010-03-18 Thread Ali Ok
Hi all, I am trying to run Myfaces on App Engine. I wrote a filter for initialization of the framework, since current ServletContextListener initializer is not working correctly because of appengine issue 1828 (http://code.google.com/p/googleappengine/issues/detail?id=1828). It works like: * Chec

[google-appengine] Re: Creating an app which could handle 100,000 users

2009-01-29 Thread Hussain Ali
Thanks guys, your replies have so far been really insightful. I totally agree with that Google App won't be able to handle that many requests at this stage (being free and all) but I haven't even started developing the app, so reaching a hundred thousand users is still far away, but what I would

[google-appengine] Could not sign in. Check that your computer's date and time are correct; sign-in errors can occur if your computer's time is significantly different from the server's time.

2011-11-07 Thread Ali Al-Ogaili
Hello guys, I just downloaded a fresh copy of eclipse 3.7.1 and I tried to install the Google Plugin. However, when I hit the deploy button or "Sing in to Goolge" I get the following error: Could not sign in. Check that your computer's date and time are correct; sign-in errors can occur if yo

[google-appengine] Re: Could not sign in. Check that your computer's date and time are correct; sign-in errors can occur if your computer's time is significantly different from the server's time.

2011-11-09 Thread Ali Al-Ogaili
Any suggestions? I am still having troubles and I can't use App Engine to deploy my app. On Oct 31, 8:47 am, Ali Al-Ogaili wrote: > Hello guys, > > I just downloaded a fresh copy of eclipse 3.7.1 and I tried to install the > Google Plugin. However, when I hit the deploy butt

[google-appengine] Using App Engine to Create Endpoints for Google Cloud SQL (MySQL) Database

2018-07-23 Thread Syed Ali Naqi
Hi! I have a Google Cloud SQL MySQL Instance. In it I have a Database. I want to use that Database and create necessary (GET, POST, DELETE, UPDATE) API or Endpoints for Every Table in that Database and Deploy it on the App Engine. I do have IntelliJ IDEA And I Installed the Google Cloud SDK and

Re: [google-appengine] How does google_apps_namespace() work?

2011-01-26 Thread Syed Ali Saim
You can use django non-rel and save users in namespaces based on domain. The trick is to interpret the apps domain and redirect datastore request to the namespace In my case: I have namespace that provides dedicated django admin too for the specific namespace. try it out on dev-server On Tue

Re: [google-appengine] Google Apps domain and Namespace API

2011-01-26 Thread Syed Ali Saim
Ok dude I am doing it as follows using the example, python , and django-nonrel Its pretty ugly but works, I am only using the datastore but i am pretty sure it can be used with both taskqueue and mem cache. Have patience and read following. ok 1st things first I have a django-nonrel application

[google-appengine] compressing GWT application on google-appengine

2011-02-10 Thread Syed Ali Saim
Hi, I have an application with django non-rel backend, and GWT front end. My application front end files are statically served, and I am facing some difficulty with compressing the content. here is what my response header looks like in firebug -- Etag"z4VwiA"DateTh

Re: [google-appengine] everything is down

2011-02-13 Thread Syed Ali Saim
We live in your neighbourhood aka Pakistan, and its working perfectly :), hurray hurray, just kidding I feel for you man, and updating google-appengine team :) know your work is appreciated in every corner of the world On Mon, Feb 14, 2011 at 11:46 AM, Girish wrote: > I live in India and app

[google-appengine] app.yaml settings for caching GWT application

2011-03-08 Thread Syed Ali Saim
Hi, Can any one paste here a GWT application caching example, running on appengine. I want to insure *.cache are cached and *.nocache are never cached. Thanks for the help Saim -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to thi

[google-appengine] Re: help with finding something that was in my virgin mobile phone cloud . m

2018-07-30 Thread 'Ali T (Cloud Platform Support)' via Google App Engine
Hi Adam, This issue is not related to Google Cloud Platform. I would suggest you contact your phone company or post this question on Quora or Yahoo Answers . On Monday, July 30, 2018 at 9:01:43 AM UTC-4, Adam Weaver wrote:

[google-appengine] Re: How export BiqQuery data to google Storage bucket either using with API or Java SDK automatically ?

2018-09-28 Thread 'Ali T (Cloud Platform Support)' via Google App Engine
It’s possible to do so. This would be like any other application that does some manipulation on data from BigQuery . Your application can be done using the client libraries[1] or through the rest API using extract property[2]. Once the application setup, you can use Cron jobs[3] to schedule y

Re: [google-appengine] Re: How export BiqQuery data to google Storage bucket either using with API or Java SDK automatically ?

2018-10-01 Thread 'Ali T (Cloud Platform Support)' via Google App Engine
There are currently no predefined templates from BigQuery to Google Cloud Storage. However, Dataflow does allow you to create your own templates to fit your use case. You can find information pertaining to creating your own template at the following documentation[1]. Information regarding the r

[google-appengine] Re: Is there any way of triggering DataPrep based flow from AppEngine?

2019-07-23 Thread 'Ali T (Cloud Platform Support)' via Google App Engine
Hi, When you launch a Dataprep job, it actually creates a Dataflow template. That being said, once the Dataprep job is launched at least once, you can run it as a Dataflow template . Thus, from your app, when the butt

[google-appengine] Re: Google Speech-to-Text

2019-07-30 Thread 'Ali T (Cloud Platform Support)' via Google App Engine
Hi, The model used should be decided in accordance from where the audio being transcribed originates. If the audio is not specific to one of the alternatives models, choosing the default model would be appropriate. You can find a breakdown of each model

[google-appengine] Re: mounting buckets or accessing gcp storage from AI platform notebook instance

2019-09-23 Thread 'Ali T (Cloud Platform Support)' via Google App Engine
Hi, One way to do this is through gcsfuse . Once you create an AI Platform notebook, click on the notebook’s name, ssh into the VM and follow the gcsfuse installation instructions for Ubuntu and Debian