Thursday, 22 May 2014


Adding words to dictionaries in Management Center
 
We can add new words or pharases to Management Center spell checker dictionary so that they are no longer flagged as misspelled words.The Management Center spell checker dictionary is case-sensitive.

  • Update /LOBTools/WebContent/WEB-INF/dictionaries/addenda.xml
  • Within the addenda.xml file, add the new words or phrases that you want the spell checker to recognize.
             <?xml version="1.0" encoding="UTF-8" ?>
             <dictionary>
                  <word locale="en-US,fr-FR">sampleword1</word>
                  <word locale="en-US">sampleword2</word>
             </dictionary>

Note: Spell check does not support the following languages:
         Japanese
         Korean
         Romanian
         Simplified Chinese
         Traditional Chinese

Wednesday, 21 May 2014

To renew a self-signed certificate and chained certificate
 
  1. Login to administrative console
  2. Click Security > SSL certificate and key management.
  3. Under Related Items, click Key stores and certificates.
  4. Click the appropriate <keystore name> to which you want to add the new certificate.
  5. Under Additional Properties, click Personal certificates to list the personal certificates.
  6. Select a personal certificate from the list.
  7. Click the Renew button.
  8. Click Apply then OK.

Session Timeout change for Management Center and Sales Center
  • Udpate wc-server.xml for InactivityTimeout and Threshold value
              <ExpiryManagement
                   ExpiryMgmtChannelId="-4"
                   InactivityTimeout="15"
                   Threshold="15"
                   enable="true"
            />

            where
 
            InactivityTimeout
                   The lease time of the session in minutes. The session remains active within this  time(minutes)

           Threshold
                   The allowable time in minutes to renew the lease. If a request comes in within this threshold time and after the lease time, the lease on the activity is renewed. In the sample configuration, for example, the threshold time is 15 minutes. Therefore, the activity remains active for 30 (15 + 15) minutes.
  • Deploy the file to the WebSphere Commerce EAR.
  • Republish the WebSphere Commerce application.