When i try to create a metadata using workflow but couldn’t to do so ? I am getting an error “MetadataRetrieveException”.
Hello Harika,
Could you share the Helical Insight Version you are using ? ( you can find details in the “About” tab at the top-right )
Regards,
Helical Inisight Team
Thank you for the details.
For solving the issue, you need to go to file system of Helical Insight. Then,
spring-security.xml
file needs to be configured.
File Path:
C:\Helical Insight\apache-tomcat-7\webapps\hi\WEB-INF
Steps :
- Open the spring-security.xml file in a text editor.
- Add the following code given below :
- Now, save the file.
- Restart the Helical Insight Server.
- Once the server gets started, then try to create a meatadata using workflow.
<beans:bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
< beans:property name="targetClass" value="org.springframework.security.core.context.SecurityContextHolder"/>
<beans:property name="targetMethod" value="setStrategyName"/>
<beans:property name="arguments">
<beans:list>
<beans:value>MODE_INHERITABLETHREADLOCAL</beans:value>
</beans:list>
</beans:property>
</beans:bean>
Regards,
Helical Insight Team
How to restart the Helical Insight Server ?
Following are the steps to restart Helical Insight Server :
- Open run.exe
- enter "services.msc"
- Search "HIApplication"
- Right Click and then select restart
Regards,
Helical Insight Team