History |
Case Num: 4955 Description: 12/08/2006 Resolves issue where correct protocol was not getting passed to nested resources in the wsdl. |
Case Num: 5278 Description: 02/21/2007 Fixes issue with uncommitted transactions. |
Case Num: 5469 Description: 05/02/2007 Added the ability for MMDataSource to support connection-time fail-over through the use of setAlternateServers() and getAlternateServer(). The methods take and return a string of comma delimited servers with an optional :port for each server. If :port is not specified the portNumber set on the MMDataSource is used. For example: setServerName(“mymmserver”); setPortNumber(31000); setAlternateServers(“mymmserver:31001,mymmserver2:31000,mymmserver2:31001”); This would allow connections to be attempted mymmserver:31000, mymmserver:31001, mymmserver2:31000, and mymmserver2:31001. Because portNumber has been set to 31000, the following would be the same: setServerName(“mymmserver”); setPortNumber(31000); setAlternateServers(“mymmserver:31001,mymmserver2,mymmserver2:31001”); Note that :31000 was omitted from the setAlternateServers() method. |