When enabling Patch bulletins, a timeout will potentially occur
| Article:HOWTO7460 | | | Created: 2007-06-05 | | | Updated: 2007-06-05 | | | Article URL http://www.symantec.com/docs/HOWTO7460 |
Problem
The latest Administrator Software Development Kit 1.4 includes the ability to enable and distribute Patch Management bulletins. As the number of bulletins increases there is potential for a timeout to occur in the Web layer.
Environment
Cause
Resolution
The information on increasing the timeout is in the ASDK documentation but here is the reminder. This information is in the Contents under Altiris ASDK > Programming Guides > Web Service Programming Guide > Using a Proxy Class > Creating and Using Proxy Classes.
If you want to change the default timeout setting for the connection to the Web server, set the value of the Timeout property of the service object. (The default timeout setting is 100000 milliseconds (1.67 minutes).) Use a number representing milliseconds to set a new value. To make the timeout an infinite length set the value to -1. For example, use this code in C# to set the timeout to five minutes:
itemMS.Timeout = 300000;
Or something like the following should help illustrate doing this within a VB Script:
set SoftwareBulletins = CreateObject("Altiris.ASDK.PatchManagement.SoftwareBulletins")
SoftwareBulletins.TargetServer = "localhost"
SoftwareBulletins.Authenticate()
SoftwareBulletins.SetTimeout(300000)
This is also described in the documentation under the section labeled "Setting Up COM Objects" under
"Altiris ASDK\Programming Guides\Com Programming Guide"
Legacy ID
35305
Article URL http://www.symantec.com/docs/HOWTO7460
Terms of use for this information are found in Legal Notices









Thank you.