<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "blank logon screen after upgrading to 7.5.06"]]></title>
		<link>http://www.ilient.com/Sysforums/posts/list/57.page</link>
		<description><![CDATA[Latest messages posted in the topic "blank logon screen after upgrading to 7.5.06"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>blank logon screen after upgrading to 7.5.06</title>
				<description><![CDATA[ after upgrading from 7.0.05 to 7.5.06 when I go to ther url or ip address of the server, it just shows up as a blank page. This happens on all computers in my network. Please HELP!!!!!]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/6464/27535.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/6464/27535.page</link>
				<pubDate><![CDATA[Sat, 9 Apr 2011 12:06:38]]> GMT</pubDate>
				<author><![CDATA[ help]]></author>
			</item>
			<item>
				<title>Re:blank logon screen after upgrading to 7.5.06</title>
				<description><![CDATA[ Dear help,<br /> <br /> i have opaned for you a service request #363564 please reoly to it ASAP.<br /> <br /> Thanks Inna.    ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/6464/27538.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/6464/27538.page</link>
				<pubDate><![CDATA[Sun, 10 Apr 2011 04:20:15]]> GMT</pubDate>
				<author><![CDATA[ Inna]]></author>
			</item>
			<item>
				<title>Re:blank logon screen after upgrading to 7.5.06</title>
				<description><![CDATA[ We have the same problem. Can you post the steps to fix this on the forum. Seems not like an isolated case.<br /> I took a backup of DB and Sysaid folders. Can I simply restore  and revert back to 7.0.05]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/6464/27563.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/6464/27563.page</link>
				<pubDate><![CDATA[Mon, 11 Apr 2011 17:39:13]]> GMT</pubDate>
				<author><![CDATA[ Plurit]]></author>
			</item>
			<item>
				<title>Re:blank logon screen after upgrading to 7.5.06</title>
				<description><![CDATA[ Once LDAP integration has been configured to import user accounts from your Active Directory domain, you can configure single sign-on to automatically authenticate users using the NTLM protocol according to the credentials they used to login to the domain.<br /> <br /> To configure single sign-on using the built-in Tomcat web-server, please edit the serverConf.xml file located at ...\SysAidServer\root\WEB-INF\conf. Add the following lines after the line &lt;externalLoginClass&gt;none&lt;/externalLoginClass&gt;:<br /> &lt;ntlmAuth&gt;<br /> &lt;ntlmParam&gt;<br /> &lt;ntlmParamName&gt;jcifs.smb.client.domain&lt;/ntlmParamName&gt;<br /> &lt;ntlmParamValue&gt;ACME&lt;/ntlmParamValue&gt;<br /> &lt;/ntlmParam&gt;<br /> &lt;ntlmParam&gt;<br /> &lt;ntlmParamName&gt;jcifs.http.domainController&lt;/ntlmParamName&gt;<br /> &lt;ntlmParamValue&gt;DC1.acme.com&lt;/ntlmParamValue&gt;<br /> &lt;/ntlmParam&gt;<br /> &lt;ntlmParam&gt;<br /> &lt;ntlmParamName&gt;jcifs.smb.client.username&lt;/ntlmParamName&gt;<br /> &lt;ntlmParamValue&gt;username_on_AD&lt;/ntlmParamValue&gt;<br /> &lt;/ntlmParam&gt;<br /> &lt;ntlmParam&gt;<br /> &lt;ntlmParamName&gt;jcifs.smb.client.password&lt;/ntlmParamName&gt;<br /> &lt;ntlmParamValue&gt;password_of_the_above_username&lt;/ntlmParamValue&gt;<br /> &lt;/ntlmParam&gt;<br /> &lt;/ntlmAuth&gt;<br /> <br /> Make sure to replace:<br /> 1. ACME with the NetBIOS domain name (pre-Windows 2000)<br /> 2. DC1.acme.com with the hostname or IP address of your domain controller.<br /> 3. username_on_AD with a user-name on Active Directory (Any domain user should be fine; no administrative permissions are necessary. Make sure to set “password never expires” so that the integration will not break whenever the password expires.)<br /> 4. password_of_the_above_username with the password of the mentioned user account.<br /> <br /> After saving these changes, please restart the SysAid Server service to apply the new integration.<br /> <br /> If all of the above does not help, there is an additional change that has to be made in the Domain Controller Security Settings. Find Local Policies\Security Options and then set the Network Security -&gt; LAN Manger Authentication Level to LM and NTLM responses. Other values may apply as well. This is the one that worked for us.<br /> <br /> In addition, please follow these steps to resolve blank screen issues:<br /> <br /> Please open …\SysAidServer\tomcat\conf\context.xml in a text editor, break a new line above &lt;/Context&gt; and add the following:<br /> <br /> &lt;Manager className='org.apache.catalina.session.PersistentManager'<br /> saveOnRestart='false'<br /> maxActiveSessions='-1'<br /> maxIdleSwap='-1'<br /> maxIdleBackup='-1'&gt;<br /> &lt;Store className='org.apache.catalina.session.FileStore'/&gt;<br /> &lt;/Manager&gt;<br /> <br /> Save the file and stop the SysAid Server service. Delete the …\SysAidServer\tomcat\work\Catalina\localhost\_\SESSIONS.set file and then start SysAid Server again.<br /> <br /> Please make sure that this folder is stays empty, in case it's not, please stop the service again delete all the SESSIONS.set files and only then start the service.<br /> <br /> <br /> *********For SysAid v7 and under*********<br /> <br /> Once LDAP integration has been configured to import user accounts from your Active Directory domain, you can configure single sign-on to automatically authenticate users using the NTLM protocol according to the credentials they used to login to the domain.<br /> <br /> To configure single sign-on using the built-in Tomcat web-server, please edit the serverConf.xml file located at ...\SysAidServer\root\WEB-INF\conf. Add the following lines after the line &lt;externalLoginClass&gt;none&lt;/externalLoginClass&gt;:<br /> &lt;ntlmAuth&gt;<br /> &lt;ntlmParam&gt;<br /> &lt;ntlmParamName&gt;jcifs.smb.client.domain&lt;/ntlmParamName&gt;<br /> &lt;ntlmParamValue&gt;ACME&lt;/ntlmParamValue&gt;<br /> &lt;/ntlmParam&gt;<br /> &lt;ntlmParam&gt;<br /> &lt;ntlmParamName&gt;jcifs.http.domainController&lt;/ntlmParamName&gt;<br /> &lt;ntlmParamValue&gt;DC1.acme.com&lt;/ntlmParamValue&gt;<br /> &lt;/ntlmParam&gt;<br /> &lt;ntlmParam&gt;<br /> &lt;ntlmParamName&gt;jcifs.smb.client.username&lt;/ntlmParamName&gt;<br /> &lt;ntlmParamValue&gt;username_on_AD&lt;/ntlmParamValue&gt;<br /> &lt;/ntlmParam&gt;<br /> &lt;ntlmParam&gt;<br /> &lt;ntlmParamName&gt;jcifs.smb.client.password&lt;/ntlmParamName&gt;<br /> &lt;ntlmParamValue&gt;password_of_the_above_username&lt;/ntlmParamValue&gt;<br /> &lt;/ntlmParam&gt;<br /> &lt;ntlmParam&gt;<br /> &lt;ntlmParamName&gt;jcifs.smb.lmCompatibility&lt;/ntlmParamName&gt;<br /> &lt;ntlmParamValue&gt;3&lt;/ntlmParamValue&gt;<br /> &lt;/ntlmParam&gt;<br /> &lt;/ntlmAuth&gt;<br /> <br /> Make sure to replace:<br /> 1. ACME with the NetBIOS domain name (pre-Windows 2000)<br /> 2. DC1.acme.com with the hostname or IP address of your domain controller.<br /> 3. username_on_AD with a user-name on Active Directory (Any domain user should be fine; no administrative permissions are necessary. Make sure to set “password never expires” so that the integration will not break whenever the password expires.)<br /> 4. password_of_the_above_username with the password of the mentioned user account.<br /> <br /> After saving these changes, please restart the SysAid Server service to apply the new integration.<br /> <br /> If all of the above does not help, there is an additional change that has to be made in the Domain Controller Security Settings. Find Local Policies\Security Options and then set the Network Security -&gt; LAN Manger Authentication Level to LM and NTLM responses. Other values may apply as well. This is the one that worked for us.<br /> <br /> In addition, please follow these steps to resolve blank screen issues:<br /> <br /> Please open …\SysAidServer\tomcat\conf\context.xml in a text editor, break a new line above &lt;/Context&gt; and add the following:<br /> <br /> &lt;Manager className='org.apache.catalina.session.PersistentManager'<br /> saveOnRestart='false'<br /> maxActiveSessions='-1'<br /> maxIdleSwap='-1'<br /> maxIdleBackup='-1'&gt;<br /> &lt;Store className='org.apache.catalina.session.FileStore'/&gt;<br /> &lt;/Manager&gt;<br /> <br /> Save the file and stop the SysAid Server service. Delete the …\SysAidServer\tomcat\work\Catalina\localhost\_\SESSIONS.set file and then start SysAid Server again.<br /> <br /> Please make sure that this folder is stays empty, in case it's not, please stop the service again delete all the SESSIONS.set files and only then start the service.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/6464/27600.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/6464/27600.page</link>
				<pubDate><![CDATA[Wed, 13 Apr 2011 07:11:59]]> GMT</pubDate>
				<author><![CDATA[ erez.shin]]></author>
			</item>
			<item>
				<title>Re:blank logon screen after upgrading to 7.5.06</title>
				<description><![CDATA[ After implementing SSO the website comes up as a blank white page with no errors. Have added all steps to insure no blank page but no luck]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/6464/32822.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/6464/32822.page</link>
				<pubDate><![CDATA[Fri, 27 Jan 2012 16:44:29]]> GMT</pubDate>
				<author><![CDATA[ rm304]]></author>
			</item>
	</channel>
</rss>
