06-19-2006 07:19 AM
06-20-2006 05:14 AM
06-21-2006 05:32 AM
06-24-2006 03:07 PM
07-12-2006 07:06 AM
ALTER TABLE applied_patch MODIFY id varchar(64) not null;included in the mysql update script?07-12-2006 07:13 AM
insert into access_control_entry
(
id, acl_id, permission_id, authority_id, allowed
)
select
id, acl_id, permission_id, authority_id, allowed
from
T_access_control_entry;because the index over (acl_id,permission_id,authority_id) would not be unique.07-13-2006 02:23 PM
07-14-2006 06:24 AM
07-19-2006 05:48 AM
I still had some problems executing the last insert statementbecause the index over (acl_id,permission_id,authority_id) would not be unique.insert into access_control_entry
(
id, acl_id, permission_id, authority_id, allowed
)
select
id, acl_id, permission_id, authority_id, allowed
from
T_access_control_entry;
[…]
07-20-2006 11:42 AM
I've similar problems. I fixed all upper case and quote issues in the upgrade script and it run without any error. After deploying the new war file and setting the correct hybernate/repository-settings the server fails to startup. The first important error is:
Jul 11, 2006 8:58:52 PM net.sf.joott.uno.UnoConnection connect
INFO: connecting using "socket,host=localhost,port=8100,tcpNoDelay=1"…
Jul 11, 2006 8:58:52 PM net.sf.joott.uno.UnoConnection connect
INFO: connected
20:58:56,320 INFO [admin.patch.PatchExecuter] Checking for patches to apply …
20:59:01,299 ERROR [admin.patch.PatchServiceImpl] net.sf.acegisecurity.AuthenticationCredentialsNotFoundException: A valid SecureContext was not provided in the RequestContext
at net.sf.acegisecurity.intercept.AbstractSecurityInterceptor.credentialsNotFound(AbstractSecurityInterceptor.java:477)
at net.sf.acegisecurity.intercept.AbstractSecurityInterceptor.beforeInvocation(AbstractSecurityInterceptor.java:355)
at net.sf.acegisecurity.intercept.method.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:77)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:170)
at org.alfresco.repo.security.permissions.impl.ExceptionTranslatorMethodInterceptor.invoke(ExceptionTranslatorMethodInterceptor.java:41)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:170)
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:170)
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:176)
at $Proxy16.getProperties(Unknown Source)
seems, that the server is unable to login? missing methods? wrong credentials?
environment: winXP, jdk 1.5.0_07, MySQL 5.0.22, alfresco-enterprise-tomcat-1.3.0
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<bean id="inbound" class="org.alfresco.repo.rule.RuleTypeImpl" parent="rule-type-base">
<constructor-arg>
<list>
</list>
</constructor-arg>
</bean>
<bean id="update" class="org.alfresco.repo.rule.RuleTypeImpl" parent="rule-type-base">
<constructor-arg>
<list>
</list>
</constructor-arg>
</bean>
<bean id="outbound" class="org.alfresco.repo.rule.RuleTypeImpl" parent="rule-type-base">
<constructor-arg>
<list>
</list>
</constructor-arg>
</bean>
</beans>
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.