Posts

Showing posts from 2017

Hide Text Fields and Drop down

_spBodyOnLoadFunctionNames.push("hideFields"); function findaTextControl(FieldName) { var arr = document.getElementsByTagName("input");    for (var i=0;i < arr.length; i++ )    {       if (arr[i].id.indexOf(FieldName) == 0)       {         return arr[i];      }    } } function findaSelectcontrol(FieldName) { var arr = document.getElementsByTagName("select");    for (var i=0;i < arr.length; i++ )    {       if (arr[i].id.indexOf(FieldName) == 0)       {         return arr[i];      }    } } function hideFields() { //debugger;    var control = findaSelectcontrol("TeamAssignedWorkFlow");    control.parentNode.parentNode.parentNode.style.display="none";     var control = findaSelectcontrol("St...

Load balancing Concepts

Image
https://docs.citrix.com/en-us/netscaler/11/traffic-management/load-balancing/load-balancing-persistence/source-ip-persistence.html https://docs.citrix.com/en-us/netscaler/11/traffic-management/load-balancing/load-balancing-persistence/http-cookie-persistence.html Netscalar Concepts https://www.citrix.com/blogs/2010/06/01/configuring-verifying-and-monitoring-persistence-on-netscaler/ What is persistence in Server Load Balancing? Before understanding what persistence is, let us get an overview of Server Load balancing (SLB). The SLB feature selects a server (service to be precise) from a set of configured servers to serve a client request based on a load balancing algorithm configured by an administrator. In Figure 1, user B’s first request can be served by one of the servers – Server 1, Server 2, or Server 3. Let us say Server 2 is selected by SLB. Once a server is selected, persistence will tie the user to the selected server, so in this case user B is tied to Server 2...

Netscalar Concepts

Image
Netscalar Concepts https://www.citrix.com/blogs/2010/06/01/configuring-verifying-and-monitoring-persistence-on-netscaler/ What is persistence in Server Load Balancing? Before understanding what persistence is, let us get an overview of Server Load balancing (SLB). The SLB feature selects a server (service to be precise) from a set of configured servers to serve a client request based on a load balancing algorithm configured by an administrator. In Figure 1, user B’s first request can be served by one of the servers – Server 1, Server 2, or Server 3. Let us say Server 2 is selected by SLB. Once a server is selected, persistence will tie the user to the selected server, so in this case user B is tied to Server 2. Why is persistence required? Applications which work based on transaction states (stateful transaction) require persistence. For example, banking portal applications are interactive programs based on user input and selections. User logs on by providing a usernam...

Windows 7 – How to install the Active Directory Users and Computers tools

Image
https://www.itsupportguides.com/knowledge-base/windows-7/windows-7-how-to-install-the-active-directory-users-and-computers-tools/ The Active Directory Users and Computers tools come as part of the Microsoft Server Tools. Once the Server Tools are installed you are able to add the Active Directory Users and Computers tools features to the computer. The steps below detail how to do this. Step 1: Download from Microsoft website Download the package here: http://www.microsoft.com/en-AU/download/details.aspx?id=7887 – make sure to select the correct one for your system, 32-bit or 64-bit Step 2: Install the update package When you run the update package you will see this message, which explains that you are able to install an update – click ‘Yes’ Then after reading and agreeing to the terms, click ‘I Accept’ The installation will take a few minutes, when complete click ‘Close’ Step 3: Turn on the “feature” Open the Windows Start menu and in the search box type ‘Pro...

How to create mount link

Microsoft Windows [Version 6.1.7601] Copyright (c) 2009 Microsoft Corporation.  All rights reserved. C:\Windows\system32>mklink Creates a symbolic link. MKLINK [[/D] | [/H] | [/J]] Link Target         /D      Creates a directory symbolic link.  Default is a file                 symbolic link.         /H      Creates a hard link instead of a symbolic link.         /J      Creates a Directory Junction.         Link    specifies the new symbolic link name.         Target  specifies the path (relative or absolute) that the new link                 refe...

Visual Studio 2013 Corrupted

Visual Studio 2013 Corrupted My Visual Studio 2013 has been corrupted and once I reset user data then issue resolved. C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE>devenv /resetuse rdata

how to connect Eclipse to TFS

Download the latest eclipse from web Download the latest Java and Install it. then Install the latest eclipse Go to help and install the new eclipse  Download the Team Explorer Everywhere Click add and enter the name as "Local TFS plug-in for Eclipse update archive" Click archieve and select the downloaded zip Complete the Installation

How to put where condition for Varchar(16) for BIT DATA in DB2

How to put where condition for Varchar(16) for BIT DATA in DB2 where object_id = x'w2t67rr76787h8h87huh8'

Code Example to Connect to File Net is as Follows:

Code Example to Connect to FileNet is as Follows: public static IObjectStore Connect() {   try   {    // Set connection parameters; substitute for the placeholders.    string uri =  GetConfigValue("FileNetServerURL");    //"http://filenetserverurl:9082/wsi/FNCEWS40MTOM/";        string username = GetConfigValue("FileNetServerAdmin"); //"P8Admin";    string password = GetConfigValue("FileNetServerAdminPassword"); //"Password";    string objectstorename = GetConfigValue("FileNetObjectStore");//ECMStore    // Get client context.    IConnection conn = Factory.Connection.GetConnection(uri);    // UsernameToken     UsernameCredentials creds = new UsernameCredentials(username, password);    ClientContext.SetProcessCredentials(creds);      // Get default domain.    IDomain domain = Factory.Domai...