Re: [google-appengine] Need help

2011-07-24 Thread Madhusudhan G Revankar
app.yaml

application: sample-app
version: 1
runtime: python
api_version: 1

handlers:
- url: /.*
  script: helloworld.py
---
helloworld.py

from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app


class MainPage(webapp.RequestHandler):


def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write('Hello, webapp World!')


application = webapp.WSGIApplication([('/', MainPage)], debug=True)


def main():
run_wsgi_app(application)

if __name__ == "__main__":
main()


On Sun, Jul 24, 2011 at 12:11 PM, Robert Kluin wrote:

> Show us your app.yaml and main.py.
>
> On Jul 22, 2011 3:03 AM, "Madhusudhan G Revankar" 
> wrote:
> >
> >
> > I am experiencing GAE in eclipse.its working fine with java
> programming.But its not happening same with Python.
> >
> > While i run webapp using python.
> > I am getting error as follows :
> >
> > Status: 404 Not Found
> > Content-Type: text/html; charset=utf-8
> > Cache-Control: no-cache
> > Expires: Fri, 01 Jan 1990 00:00:00 GMT
> > Content-Length: 0
> >
> > Please let me know,where i am missing in configuration.
> >
> >
> >
> > On Fri, Jul 22, 2011 at 12:20 PM, Robert Kluin 
> wrote:
> >>
> >> Just a note, if you want help you need to provide enough information
> that someone can help you.
> >>
> >> On Jul 18, 2011 7:50 AM, "Madhusudhan G Revankar" <
> sudhansa...@gmail.com> wrote:
> >> >
> >> > Hi,
> >> >
> >> > I am facing problem in run/debug setting in eclipse for
> python(webapp).
> >> >
> >> > Not able to run on google app engine.
> >> >
> >> > Please help me on this
> >> >
> >> > --
> >> > Thanks & Regards
> >> > Madhusudhan
> >> >
> >> > --
> >> > 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.
> >>
> >> --
> >> 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.
> >
> >
> >
> >
> > --
> > Thanks & Regards
> > Madhusudhan
> >
> > --
> > 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.
>
> --
> 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.
>



-- 
Thanks & Regards
Madhusudhan

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



Re: [google-appengine] Need help

2011-07-22 Thread Madhusudhan G Revankar
I am experiencing GAE in eclipse.its working fine with java programming.But
its not happening same with Python.

While i run webapp using python.
I am getting *error *as follows :

*Status: 404 Not Found
Content-Type: text/html; charset=utf-8
Cache-Control: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Content-Length: 0*

Please let me know,where i am missing in configuration.


On Fri, Jul 22, 2011 at 12:20 PM, Robert Kluin wrote:

> Just a note, if you want help you need to provide enough information that
> someone can help you.
>
> On Jul 18, 2011 7:50 AM, "Madhusudhan G Revankar" 
> wrote:
> >
> > Hi,
> >
> > I am facing problem in run/debug setting in eclipse for python(webapp).
> >
> > Not able to run on google app engine.
> >
> > Please help me on this
> >
> > --
> > Thanks & Regards
> > Madhusudhan
> >
> > --
> > 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.
>
>  --
> 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.
>



-- 
Thanks & Regards
Madhusudhan

-- 
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] Need help

2011-07-18 Thread Madhusudhan G Revankar
Hi,

I am facing problem in run/debug setting in eclipse for python(webapp).

Not able to run on google app engine.

Please help me on this

-- 
Thanks & Regards
Madhusudhan

-- 
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: GAE Beginner

2011-07-18 Thread Madhusudhan G Revankar
I fixed this myself .

On Thu, Jul 14, 2011 at 11:46 PM, Madhusudhan G Revankar <
sudhansa...@gmail.com> wrote:

>
>
> Hi,
>
> I am new to GAE,and experimenting on simple servlet program  Hello,word.
>
> It went fine with 1st run on web application server,but after editing some
> contents in page,i restarted it,but i am getting the same old result,not
> getting updated with data.
>
> Please fix this .
>
>
>
>
> --
> Thanks & Regards
> Madhusudhan
>



-- 
Thanks & Regards
Madhusudhan

-- 
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] GAE Beginner

2011-07-18 Thread Madhusudhan G Revankar
Hi,

I am new to GAE,and experimenting on simple servlet program  Hello,word.

It went fine with 1st run on web application server,but after editing some
contents in page,i restarted it,but i am getting the same old result,not
getting updated with data.

Please fix this .




-- 
Thanks & Regards
Madhusudhan

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