[google-appengine] Re: Security Certificate on Appspot Servers

2008-08-27 Thread Satish

Thank you, very much.

On Aug 21, 4:41 pm, Wooble <[EMAIL PROTECTED]> wrote:
> On Aug 21, 12:46 am,Satish<[EMAIL PROTECTED]> wrote:
>
> > We recently deployed a web application on appspot domain.
> > However, on accessing we get an obsolete Security Certificate message.
>
> > Whom should we contact on deployment issues like this ?
>
> It's not a deployment issue.  GAE doesn't support SSL at all.  Stop
> trying to make https: requests and your message will go away.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[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
-~--~~~~--~~--~--~---



[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: HTTPS Support for appspot.com

2008-10-17 Thread Satish

Thank you !

On Oct 17, 4:15 pm, conman <[EMAIL PROTECTED]>
wrote:
> Oh Boy!!
>
> That are great news!! Thanks for your _excellent_ work!
>
> Regards,
> Constantin
>
> On 17 Okt., 00:03, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote:
>
> > One of the most frequently requested features for App Engine has been HTTPS
> > serving capabilities.  Today we're excited to announce that App Engine now
> > supports incoming HTTPS connections using a certificate valid for all
> > appspot.com URLs.  Here's how it works:
>
> > * app.yaml files now support a new handler attribute, called "secure":
>
> > - url: /accounts/.*
> >   script: admin.py
> >   login: admin
> >   *secure: always*
>
> > *This attribute can be either "always", "optional", or "never" (default),
> > and determines the behavior of the handler for HTTP and HTTPS requests.  See
> > our documentation for more 
> > details:http://code.google.com/appengine/docs/configuringanapp.html#Secure_URLs
>
> > * HTTPS requests have their own bandwidth quotas, but also count toward your
> > total bandwidth quotas.  You can monitor these quotas on your dashboard.
>
> > You may be wondering why we're only supporting appspot.com right now, and
> > not arbitrary Google Apps domains.  This has to do with fundamental
> > limitations in the SSL protocol 
> > (see:http://en.wikipedia.org/wiki/Https#Limitations).  We're currently
> > investigating workarounds for this using e.g.
> > SNI 
> > (http://en.wikipedia.org/wiki/Server_Name_Indication), which provides a
> > viable solution for newer browsers--we'll keep you posted!
>
> > This functionality is already available starting with the 1.1.5 SDK.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[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  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] 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] 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, 秦锋  wrote:
> main.py is in PYTHONPATH?
> What's your command looks like?
>
> On 4月7日, 上午6时28分, satish  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  wrote:
> if main.py were not in the path, import would've failed. Import
> statement worked fine.
>
> On Apr 6, 6:52 pm, 秦锋  wrote:
>
> > main.py is in PYTHONPATH?
> > What's your command looks like?
>
> > On 4月7日, 上午6时28分, satish  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

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= --
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  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 
>
>
>
> > Help, please! anyone? Thanks
>
> > On Apr 7, 7:04 am, satish  wrote:
> > > if main.py were not in the path, import would've failed. Import
> > > statement worked fine.
>
> > > On Apr 6, 6:52 pm, 秦锋  wrote:
>
> > > > main.py is in PYTHONPATH?
> > > > What's your command looks like?
>
> > > > On 4月7日, 上午6时28分, satish  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  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= --
> 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  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/7satish
>
> > > Help, please! anyone? Thanks
>
> > > On Apr 7, 7:04 am,satish wrote:
> > > > if main.py were not in the path, import would've failed. Import
> > > > statement worked fine.
>
> > > > On Apr 6, 6:52 pm, 秦锋  wrote:
>
> > > > > main.py is in PYTHONPATH?
> > > > > What's your command looks like?
>
> > > > > On 4月7日, 上午6时28分,satish 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: AddAppVersion failed: DEADLINE_EXCEEDED

2011-02-12 Thread satish
Were you able to find out the cause of this error? I am seeing the same 
issue as well

-- 
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: 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] 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.




[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] 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: 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  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.