Qad - settings - homepage

rumi

Member
hi ,
in .net client is a homepage setting - when you run qad - this homepage is opened .. so my question is - is possible to set this homepage to all our clients from one place? now i have to go to every single client and set it manualy

thanks
 

vinod_home

Member
you should be able to change it on your tomcat server, and the clients should pull it the next time they log into QAD.
 

vinod_home

Member
path-to-tomcat/webapps/qadhome/configurations/<desktopUI>/client-session.xml. Depending on your .Net version, it could be a little different.
 

rumi

Member
we have a 2007.1 .Net - qad im not sure which version.... correction: we have a QAD v. 2.5.170, .NET
 

vinod_home

Member
This is what I found in the QAD Knowledge base

To DISABLE Default Home Web Page:

To disable the default home page for all users:
edit /tomcat/webapps/qadhome/configurations/<environment>/client-session.xml
Look for tag:
<Homepage>
<Enable>True</Enable>
Change from true to false so that no home page appears at all.

or modify the URL to your companys home web page.
Example: from
<Homepage>
<Enable>True</Enable>
<Url> qadsh://menu/invoke?menu-key=A.8&menuitem-key=40.1</Url>
to <Url>www.qad.com</Url>
 
edit /tomcat/webapps/qadhome/configurations/<environment>/client-session.xml
modify the URL to your companys home web page.
Example: from
<Homepage>
..
<Url> qadsh://menu/invoke?menu-key=A.8&menuitem-key=40.1</Url>
to <Url>www.qad.com</Url>
 

rumi

Member
hi, thanks a lot for replies,
we dont have it - its a structure of our xml(i deleted settings):

<?xml version="1.0" encoding="utf-8" ?>
- <Configuration>
<RemoteConfiguration />

<ConnectionProtocol />

<ConnectionSecureProtocol />

<ConnectionHost />

<ConnectionPort />

<ConnectionService />

<ConnectionSecureService />

<ConnectionSecureHost />

<ConnectionSecurePort />

<DesktopProtocol />

<DesktopHost />

<DesktopPort />

<DesktopService />

<DesktopAPI />

<DesktopUsercountServlet />

<WebSpeedService />

<WebSpeedPath />

<WebSpeedProgram></WebSpeedProgram>

<HelpService />

<DesktopHelpService />

<DesktopBaseUrl />

<ProcessViewerUrl />

<MaximumDesktopsPerWorkspace />

<MaximumBrowseRecordsToCount />

<MaximumBrowseRecordsToDownload />

<BrowseRecordsForPrintWarning />

<BrowseRecordsForExcelWarning />

<SshProviderUrl />

<TerminalProtocol />

<TerminalEncoding />

<TerminalAuthentication />

- <!-- The following list corresponds to the values above that need to be updated for this environment $NameServerHost = The name of the machine that is running the Progress Name Server $NameServerPort = The port number that the Progress Name Server is listening on (default is 5162) $AppServerBrokerName = The name of the Progress AppServer created for this configuration $TomcatHostName = The name of the machine that Tomcat is running on $TomcatPort = The port number that Tomcat is listening on (default is 8080) $DesktopWebappName = The name of the Desktop system directory under Tomcat webapp folder $WebSpeedBrokerName = The name of the Progress WebSpeed broker created for this configuration $WebSpeedExecutableName = The name of the WebSpeed cgi-bin executable (default is cgiip.exe on Windows and wspd_cgi.ksh on *nix) If using SSL, set ConnectionSecureProtocol to "AppServerS" and set ConnectionSecureHost, ConnectionSecurePort and ConnectionSecureService to the SSL enabled AppServer instance. A trusted certificate is required as well. -->
</Configuration>
 
Top