As a followup.  I changed the serviceRegistryDao to 

<bean
                id="serviceRegistryDao"
        class="org.jasig.cas.services.InMemoryServiceRegistryDaoImpl">


And I was able to get to the services.  I even tried manually entering the
rows from the InMemory to the database manually and still no go.  

<bean class="org.jasig.cas.services.RegisteredServiceImpl">
                        <property name="id" value="0" />
                        <property name="name" value="HTTP" />
                        <property name="description" value="Only Allows HTTP
Urls" />
                        <property name="serviceId" value="http://**"; />
                        <property name="evaluationOrder" value="10000001" />
                    </bean>

                    <bean
class="org.jasig.cas.services.RegisteredServiceImpl">
                        <property name="id" value="1" />
                        <property name="name" value="HTTPS" />
                        <property name="description" value="Only Allows
HTTPS Urls" />
                        <property name="serviceId" value="https://**"; />
                        <property name="evaluationOrder" value="10000002" />
                    </bean>

I see no errors on startup and the configuration I am using is:

<bean id="serviceRegistryDao"
class="org.jasig.cas.services.JpaServiceRegistryDaoImpl"
p:entityManagerFactory-ref="entityManagerFactory" />
        
        <bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
                <property name="dataSource" ref="dataSource"/>
                <property name="jpaVendorAdapter">
                <bean
class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
                        <property name="generateDdl" value="true"/>
                        <property name="showSql" value="true" />
                </bean>
                </property>
                <property name="jpaProperties">
                        <props>
                        <prop
key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                        <prop key="hibernate.hbm2ddl.auto">update</prop>
                        </props>
                </property>
        </bean> 

<jee:jndi-lookup id="dataSource" jndi-name="java:comp/env/jdbc/hf" />

Any suggestions?

--
View this message in context: 
http://jasig.275507.n4.nabble.com/Service-Manager-tp4283725p4284026.html
Sent from the CAS Users mailing list archive at Nabble.com.

-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

Reply via email to