Pages

Thursday 23 July 2009

How to enable longer call recordings in GVP ?

To enable longer call recordings in GVP, you need to change the configuration value in GVP and procedure is as follows:

1. Open IIS.
2. Right-click the server, and then select Properties.
3. Select the Enable Direct Metabase Edit check box, and then click OK.
4. Open the MetaBase.xml file, which is located in “C:\WINNT\System32\Inetsrv”
5. Locate the line AspMaxRequestEntityAllowed, and change it to 524288000.

Please note that the above steps was tested in IIS 6.0 version and above

Tuesday 21 July 2009

Hyperion Installation issues with SQL Server 2005

During my current implementation, I faced issues in installing Hyperion with SQL Server 2005. Finally, figured out solution to install Hyperion with SQL Server 2005

In order to install Hyperion Repository on SQL Server 2005 Hyperion 8.5. (SP3) installer should be used as it contains updated MS SQL JDBC drivers which function correctly with SQL Server 2005. The Hyperion Performance Suite 8.5 SP1 and up does support SQL Server 2005 just the installer does not. There are several workarounds available such as installing Hyperion Repository on SQL Server 2000 then following the procedure migrating it to SQL Server 2005, or to use Hyperion Installer 8.5 SP1 and above with updated JDBC driver in override directory.

To install HpSu SP3 on SQL Server 2005 repository given the latest Genesys CD availability you needs to use the HpSu 8.5 SP3 installer.

Please use 'Full Hyperion INTELLIGENCE SERVER 8.5.0.3' for installation

Thursday 16 July 2009

How to access Java applications using Windows?

You can’t control Java applications directly using windows. However, you can use JAB (Java Accessibility Bridge) provided by Sun Microsystems to inspect Java application.

You can download tools from Sun Website. Click the link below

http://java.sun.com/javase/technologies/accessibility/docs/jaccess-1.2/doc/examples.html

Thin client is buzz word and often, major players use Java applet to achieve the same. If you still want your softphone to be installed locally and integrate with customer applications, I prefer to do this in this way.

If you have any other solutions, please feel free to let us know.

Is GAD Supports Internet Explorer 7 (IE7)?

Typical question from customer for any Genesys upgrade. From release 7.6.001.11, GAD Supports Internet Explorer 7.

  • Microsoft Internet Explorer 7 is now supported. (ER#s 138027636, 149666751)

Source: GAD 7.6 Release note from Genesys

Monday 13 July 2009

How to determine which version of SQL Server 2005 is running

Whenever I raise SR with Genesys, they request for DB Version (exact version) to troubleshoot the problem. Here, I listed one easy way to find SQL Server 2005 version :-)

To determine which version of Microsoft SQL Server 2005 is running, connect to SQL Server 2005 by using SQL Server Management Studio, and then run the following Transact-SQL statement.

SELECT  SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')

The following results are returned:

  • The product version (for example, 9.00.1399.06)
  • The product level (for example, RTM)
  • The edition (for example, Enterprise Edition)

Reference: http://support.microsoft.com/kb/321185