Finn Baggesen created AXIS2-5517:
------------------------------------

             Summary: Unable to find corresponding context for the 
serviceGroupId: XXXXX error
                 Key: AXIS2-5517
                 URL: https://issues.apache.org/jira/browse/AXIS2-5517
             Project: Axis2
          Issue Type: Bug
          Components: kernel
    Affects Versions: 1.6.2
            Reporter: Finn Baggesen
             Fix For: 1.7.0


It is possible when running axis in high-loaded system to get the error 'Unable 
to find corresponding context for the serviceGroupId: XXXXX'. This is caused by 
the serviceGroupContext does not have a timestamp and the cleanup process will 
in some cases invalidate the serviceGroupContext.  

Proposed change to kernel module 
(org.apache.axis2.context.ConfigurationContext.java)

    public void addServiceGroupContextIntoSoapSessionTable(
            ServiceGroupContext serviceGroupContext) {
        String id = serviceGroupContext.getId();
        
       /* Fix: Touch needs to be done before added to map */
        serviceGroupContext.touch();
        serviceGroupContextMap.put(id, serviceGroupContext);


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to