[google-appengine] billing account suspended

2016-03-28 Thread satish bhoyar
I have created a Project on google cloud console also created a billing 
account , (I was on trial period for google cloud services), recently I 
received and email from google support that my account is being suspended 
and also it says google have right to do that so. 
Note :- I am using Google Cloud services using Google for work email id 
which our company bought services from google.

I have folloing question,
-  what could be the reason Google would discontinue my billing account?
- Does this means my project will not work ? ( But I still see it is 
working , and I am not charged by google yet,after the trial period is 
over).
- Will this work if I create new project and create new billing account?

This is very much urgent for me as this is affecting my work. I tried to 
reach google cloud support but got only half baked information and not 
support further. 

Also if this group is not relevant for this question let me know where I 
can post it?

Thanks,
Satish

-- 
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 google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/fd2fbd3e-6ed3-4e7b-b226-6b2126cbcaea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] I want to upload file to google app engine using struts 1.x

2013-02-10 Thread Satish Kumar
Can any one help how to upload file to google app engine using struts 
1.x..I am getting file upload not supported error.

-- 
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 google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[appengine-java] Re: Namespace not being set from google apps

2011-10-16 Thread Satish
I switched to using App Engine's inbuilt federated identity option and now 
even the above work around is not working. I am logged in properly but the 
namespace value is still blank and the value returned by the following 
method is also blank. I am trying to troubleshoot.

com.google.apphosting.api.ApiProxy

.getCurrentEnvironment()

.getAttributes()

.get(
com.google.appengine.api.users.UserService.user_organization);

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/izmDWZsfrD8J.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Namespace not being set from google apps

2011-10-10 Thread Satish
It's working great so far. It has allowed me to put the core issue on hold 
and move on to other items. I will come back to it later and investigate it 
with a fresh frame of mind. 

Here is the code i am using under case GOOGLE_APPS_DOMAIN:

if (NamespaceManager.getGoogleAppsNamespace().equals()) {

   
Object userOrganizationObject;

String userOrganization;


userOrganizationObject = com.google.apphosting.api.ApiProxy

.getCurrentEnvironment()

.getAttributes()

.get(
com.google.appengine.api.users.UserService.user_organization);


if
(userOrganizationObject == null) {

userOrganization = ;

} else {

userOrganization = userOrganizationObject.toString();

}


NamespaceManager.set(userOrganization);


  } else {


NamespaceManager.set(NamespaceManager

.getGoogleAppsNamespace());

 }

  
  break;

 }

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/YjKjFNL1W2UJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Namespace not being set from google apps

2011-09-28 Thread Satish
I have integrated the app with google apps marketplace. When the app is 
invoked from drop down more link on google apps, i expect the apps 
namespace key to be automatically set to the domain value but it's not 
happening. 

The value returned by NamespaceManager.getGoogleAppsNamespace() is . Any 
idea what I might be doing wrong? Thank you for your help.

 public class NamespaceFilter implements Filter {

.

public void doFilter(ServletRequest request, ServletResponse response, 
FilterChain chain)

  throws IOException, ServletException {

-

  case GOOGLE_APPS_DOMAIN : {

 NamespaceManager.set(
NamespaceManager.getGoogleAppsNamespace());

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/Pelx3vd5MH8J.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: NameSpaceManager getGoogleAppsNamespace()

2011-09-28 Thread Satish
Vishal,

Did you ever find out an answer for this question? Thank you for your help

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/HWiVgK917vgJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Namespace not being set from google apps

2011-09-28 Thread Satish
Update:
I am going to try explicitly setting the namespace value to the value 
carried by com.google.appengine.api.users.UserService.user_organization 
instead of NamespaceManager.getGoogleAppsNamespace() method. I wish the 
latter worked but it's not. user_organization is being set correctly to the 
calling domain on the other hand.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/ykyLWi5raCsJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[google-appengine] Re: AddAppVersion failed: DEADLINE_EXCEEDED

2011-02-13 Thread satish
I just checked again today and the problem is gone. May be, appengine was 
having some problems yesterday

-- 
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-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: AddAppVersion failed: DEADLINE_EXCEEDED

2011-02-12 Thread satish
Jason, Were able to find out the cause of this error? I am seeing the same 
issue.

-- 
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-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Crob Job not getting started

2010-08-05 Thread Satish Kumar Kashi
Check whether any filters are written in your application. make sure
that the cron url not been fall under your filter or it should exclude
this url. then it works fine.

Thanks,
Satish.

On Jul 29, 11:15 pm, Suman sumankandiko...@gmail.com wrote:
 I have configuredcronjobfor my application[Java] as specified in
 the following URL:

 http://code.google.com/appengine/docs/java/config/cron.html

 But when i deploy this to GAE, mycronjobnot getting started.

 Can anybody please help me in solving this problem.

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Is there a way to set custom status message for app's XMPP address?

2009-09-08 Thread satish

I would like to display something like Type ? for help using this
bot as status message for my app's bot. Is it possible? This is
similar to how bot en2hi.trans...@bot.talk.google.com displays Use
transliteration on any website... as status.
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-09 Thread satish

Jeff, thank you for your response. I tried import main but now I get
this error
---
import main
ImportError: No module named main
---

From the shell, i changed to the directory in which i have my loader
file and ran this command

bulkloader.py --config_file=aliascommand_loader.py --
filename=aliascommand.csv --kind=AliasCommand --app_id=app id --
url=app url

My guess is I may need to set up pythonpath. I am new to Mac and
Python (and web development and google app engine :-)). So, i'll
google around to find out how to do this. Thank you for your help. If
I don't find a way to make this work, i'll request for help.



On Apr 9, 10:37 am, Jeff S j...@google.com wrote:
 Hi satish,

 In your aliascommand_loader.py, the following import looks suspicious

 import __main__

 Since your module is main.py, I think this should just be

 import main

 The __main__ module is actually a build in module and I imagine this is not
 what you wanted. (seehttp://docs.python.org/library/__main__.html) Does
 that fix it?

 Thank you,

 Jeff

 2009/4/7 satish satish...@gmail.com



  Help, please! anyone? Thanks

  On Apr 7, 7:04 am, satish satish...@gmail.com wrote:
   if main.py were not in the path, import would've failed. Import
   statement worked fine.

   On Apr 6, 6:52 pm, 秦锋 feng.w@gmail.com wrote:

main.py is in PYTHONPATH?
What's your command looks like?

On 4月7日, 上午6时28分, satish satish...@gmail.com wrote:

 I am trying to use bulkuploader for the first time using the
  procedure
 outlined at this page (http://code.google.com/appengine/docs/python/
 tools/uploadingdata.html) but I am receiving the following error. Can
 someone please help? Thank you.

 No implementation for kind \'%s\'' % kind

 No implementation for kind 'AliasCommand'

 AliasCommand is a entity in main.py

 -aliascommand_loader.py (Loader Class) begin --

 import datetime
 from google.appengine.ext import db
 import __main__

 class AliasCommandLoader(Loader):
   def __init__(self):
 Loader.__init__(self, 'AliasCommand',
 [('alias', str),
  ('command', str)
  ])
 -aliascommand_loader.py (Loader Class) end --

 -main.py (the main module in which AliasCommand entity is
 defined) begin --
 
 
 class AliasCommand(db.Model):
 alias = db.StringProperty(required=False)
 command = db.StringProperty(required=False)
 createdate = db.DateTimeProperty(auto_now_add=True)
 
 
 -main.py (the main module in which AliasCommand entity is
 defined) end --
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-09 Thread satish

I am using bash shell on Mac and I've set PYTHONPATH but i am still
getting No module named main error. I am probably doing something
wrong.



On Apr 9, 6:43 pm, satish satish...@gmail.com wrote:
 Jeff, thank you for your response. I tried import main but now I get
 this error
 ---
 import main
 ImportError: No module named main
 ---

 From the shell, i changed to the directory in which i have my loader
 file and ran this command

 bulkloader.py --config_file=aliascommand_loader.py --
 filename=aliascommand.csv --kind=AliasCommand --app_id=app id --
 url=app url

 My guess is I may need to set up pythonpath. I am new to Mac and
 Python (and web development and google app engine :-)). So, i'll
 google around to find out how to do this. Thank you for your help. If
 I don't find a way to make this work, i'll request for help.

 On Apr 9, 10:37 am, Jeff S j...@google.com wrote:

  Hisatish,

  In your aliascommand_loader.py, the following import looks suspicious

  import __main__

  Since your module is main.py, I think this should just be

  import main

  The __main__ module is actually a build in module and I imagine this is not
  what you wanted. (seehttp://docs.python.org/library/__main__.html) Does
  that fix it?

  Thank you,

  Jeff

  2009/4/7satishsatish...@gmail.com

   Help, please! anyone? Thanks

   On Apr 7, 7:04 am,satishsatish...@gmail.com wrote:
if main.py were not in the path, import would've failed. Import
statement worked fine.

On Apr 6, 6:52 pm, 秦锋 feng.w@gmail.com wrote:

 main.py is in PYTHONPATH?
 What's your command looks like?

 On 4月7日, 上午6时28分,satishsatish...@gmail.com wrote:

  I am trying to use bulkuploader for the first time using the
   procedure
  outlined at this page (http://code.google.com/appengine/docs/python/
  tools/uploadingdata.html) but I am receiving the following error. 
  Can
  someone please help? Thank you.

  No implementation for kind \'%s\'' % kind

  No implementation for kind 'AliasCommand'

  AliasCommand is a entity in main.py

  -aliascommand_loader.py (Loader Class) begin --

  import datetime
  from google.appengine.ext import db
  import __main__

  class AliasCommandLoader(Loader):
def __init__(self):
  Loader.__init__(self, 'AliasCommand',
  [('alias', str),
   ('command', str)
   ])
  -aliascommand_loader.py (Loader Class) end --

  -main.py (the main module in which AliasCommand entity is
  defined) begin --
  
  
  class AliasCommand(db.Model):
  alias = db.StringProperty(required=False)
  command = db.StringProperty(required=False)
  createdate = db.DateTimeProperty(auto_now_add=True)
  
  
  -main.py (the main module in which AliasCommand entity is
  defined) end --
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-07 Thread satish

if main.py were not in the path, import would've failed. Import
statement worked fine.

On Apr 6, 6:52 pm, 秦锋 feng.w@gmail.com wrote:
 main.py is in PYTHONPATH?
 What's your command looks like?

 On 4月7日, 上午6时28分, satish satish...@gmail.com wrote:

  I am trying to use bulkuploader for the first time using the procedure
  outlined at this page (http://code.google.com/appengine/docs/python/
  tools/uploadingdata.html) but I am receiving the following error. Can
  someone please help? Thank you.

  No implementation for kind \'%s\'' % kind

  No implementation for kind 'AliasCommand'

  AliasCommand is a entity in main.py

  -aliascommand_loader.py (Loader Class) begin --

  import datetime
  from google.appengine.ext import db
  import __main__

  class AliasCommandLoader(Loader):
def __init__(self):
  Loader.__init__(self, 'AliasCommand',
  [('alias', str),
   ('command', str)
   ])
  -aliascommand_loader.py (Loader Class) end --

  -main.py (the main module in which AliasCommand entity is
  defined) begin --
  
  
  class AliasCommand(db.Model):
  alias = db.StringProperty(required=False)
  command = db.StringProperty(required=False)
  createdate = db.DateTimeProperty(auto_now_add=True)
  
  
  -main.py (the main module in which AliasCommand entity is
  defined) end --
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-07 Thread satish

Help, please! anyone? Thanks

On Apr 7, 7:04 am, satish satish...@gmail.com wrote:
 if main.py were not in the path, import would've failed. Import
 statement worked fine.

 On Apr 6, 6:52 pm, 秦锋 feng.w@gmail.com wrote:

  main.py is in PYTHONPATH?
  What's your command looks like?

  On 4月7日, 上午6时28分, satish satish...@gmail.com wrote:

   I am trying to use bulkuploader for the first time using the procedure
   outlined at this page (http://code.google.com/appengine/docs/python/
   tools/uploadingdata.html) but I am receiving the following error. Can
   someone please help? Thank you.

   No implementation for kind \'%s\'' % kind

   No implementation for kind 'AliasCommand'

   AliasCommand is a entity in main.py

   -aliascommand_loader.py (Loader Class) begin --

   import datetime
   from google.appengine.ext import db
   import __main__

   class AliasCommandLoader(Loader):
 def __init__(self):
   Loader.__init__(self, 'AliasCommand',
   [('alias', str),
('command', str)
])
   -aliascommand_loader.py (Loader Class) end --

   -main.py (the main module in which AliasCommand entity is
   defined) begin --
   
   
   class AliasCommand(db.Model):
   alias = db.StringProperty(required=False)
   command = db.StringProperty(required=False)
   createdate = db.DateTimeProperty(auto_now_add=True)
   
   
   -main.py (the main module in which AliasCommand entity is
   defined) end --
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-06 Thread satish


I am trying to use bulkuploader for the first time using the procedure
outlined at this page (http://code.google.com/appengine/docs/python/
tools/uploadingdata.html) but I am receiving the following error. Can
someone please help? Thank you.

No implementation for kind \'%s\'' % kind

No implementation for kind 'AliasCommand'

AliasCommand is a entity in main.py

-aliascommand_loader.py (Loader Class) begin --

import datetime
from google.appengine.ext import db
import __main__

class AliasCommandLoader(Loader):
  def __init__(self):
Loader.__init__(self, 'AliasCommand',
[('alias', str),
 ('command', str)
 ])
-aliascommand_loader.py (Loader Class) end --

-main.py (the main module in which AliasCommand entity is
defined) begin --


class AliasCommand(db.Model):
alias = db.StringProperty(required=False)
command = db.StringProperty(required=False)
createdate = db.DateTimeProperty(auto_now_add=True)


-main.py (the main module in which AliasCommand entity is
defined) end --


--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] SMS for verification not reced

2009-02-28 Thread Satish Budholiya
Dear All
Do you have any idea; when signing for Google App no sms received on mobile.
How to proceed further?

Satish Budholiya

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: SMS: through python AIM/gtalk libraries?

2009-01-03 Thread satish

I am interested too. I played around with IM integration using the
services from http://new.imified.com/ and it worked fine for simple
functionality.

On Jan 1, 2:08 pm, mclovin hanoo...@gmail.com wrote:
 I wanted to test out some SMS web app, where I can communicate w/ the
 application from my phone. I was wondering if the App Engine allows me
 to do this through the use of either AIM libraries or Gtalk Libraries
 written in python.

 Thanks

--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] UserProperty() behavior [ [EMAIL PROTECTED] vs [EMAIL PROTECTED] ]

2008-08-28 Thread Satish

We are extracting the crux of the problem from a large system, under
development.

Problem :  db.UserProperty()  behavior with   [EMAIL PROTECTED]  Vs
[EMAIL PROTECTED]

Data model :Class Visitor :
name = db.UserProperty()
...
...

Assignment :   user = users.GetCurrentUser()
Datastore  : visitor = Visitor()
  visitor.name = user
  visitor.put()

Case 1: A user signs in with   :
[EMAIL PROTECTED]
observation  :visitor.name stores
 ( only user.nickname() )

Case 2:A user signs in with:
[EMAIL PROTECTED]
obsrevation : visitor.name stores
[EMAIL PROTECTED]


Subsequent search by  :   q=gqlQuery( Select * from Visitor WHERE
name = :1  , user )
Observation : when signed in with yahoo id  q gets the correct
instance
 while signed with gmail is q gets None

What mistake were we making ?
In SDK  :  The observation is the same, excepting it allows sign in
with  and fetches the record.
After hosting : [EMAIL PROTECTED]  /   just  x makes
no difference ; q gets none.

We solved the problem by storing user.email() in an EmailProperty()
and subsequently matching it with user.email() in the select
statements. But we are not happy with this, as we see expert
directives for not storing  email addresses.

Any help ?
--~--~-~--~~~---~--~~
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-appengine@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---