You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hise-commits@incubator.apache.org by rr...@apache.org on 2010/01/28 14:58:29 UTC

svn commit: r904108 [1/3] - in /incubator/hise/trunk: hise-distro/src/distro/examples/ hise-distro/src/distro/examples/claimsHandling/ hise-docs/src/main/resources/ hise-services/src/main/java/org/apache/hise/engine/jaxws/ hise-web/ hise-web/src/main/r...

Author: rr
Date: Thu Jan 28 14:58:28 2010
New Revision: 904108

URL: http://svn.apache.org/viewvc?rev=904108&view=rev
Log:
Removed Oracle deps for tests, Updated guides, improved distro (it was tested on Apache Tomcat)

Added:
    incubator/hise/trunk/hise-distro/src/distro/examples/addUsers.sql   (with props)
    incubator/hise/trunk/hise-distro/src/distro/examples/claimsHandling/claimsHandling-soapui-project.xml   (with props)
Modified:
    incubator/hise/trunk/hise-docs/src/main/resources/developer-guide.xml
    incubator/hise/trunk/hise-docs/src/main/resources/user-guide.xml
    incubator/hise/trunk/hise-services/src/main/java/org/apache/hise/engine/jaxws/HISEJaxWSClient.java
    incubator/hise/trunk/hise-services/src/main/java/org/apache/hise/engine/jaxws/HISEJaxWSService.java
    incubator/hise/trunk/hise-web/pom.xml
    incubator/hise/trunk/hise-web/src/main/resources/hise-ds.xml
    incubator/hise/trunk/hise-web/src/main/webapp/WEB-INF/web.xml
    incubator/hise/trunk/hise-web/src/test/resources/hise-ds.xml

Added: incubator/hise/trunk/hise-distro/src/distro/examples/addUsers.sql
URL: http://svn.apache.org/viewvc/incubator/hise/trunk/hise-distro/src/distro/examples/addUsers.sql?rev=904108&view=auto
==============================================================================
--- incubator/hise/trunk/hise-distro/src/distro/examples/addUsers.sql (added)
+++ incubator/hise/trunk/hise-distro/src/distro/examples/addUsers.sql Thu Jan 28 14:58:28 2010
@@ -0,0 +1,3 @@
+insert into ORG_ENTITY (name, type, userpassword) values ('user1', 'USER', 'pass1');
+insert into ORG_ENTITY (name, type, userpassword) values ('group1', 'GROUP', null);
+insert into USER_GROUPS (USERGROUPS_NAME, ORGENTITY_NAME) values ('user1', 'group1');

Propchange: incubator/hise/trunk/hise-distro/src/distro/examples/addUsers.sql
------------------------------------------------------------------------------
    svn:eol-style = native