File: README

package info (click to toggle)
openid4java 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,912 kB
  • sloc: java: 14,510; xml: 2,402; jsp: 865; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 728 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

This directory contains a simple example for how to run an
openid4java-based OpenID Relying Party on Google AppEngine.

First, create the WAR directory:

$ mvn package

Now, test the server locally:

$ $PATH_TO_APPENGINE/dev_appserver.sh -a <your-host-name> -p 8080 \
  target/appengine-consumer

Point your browser to http://<your-host-name>:8080 to test.

Finally, to deploy on AppEngine, you have to first claim an application
name for yourself, and then edit the configuration file
src/main/webapp/WEB-INF/appengine-web.xml. Change the name of the
application from "openid4java" to the name you own. Then, rebuild and
upload the application: 

$ mvn package
$ $PATH_TO_APPENGINE/appcfg.sh update target/appengine-consumer