You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Gary Jacobs (JIRA)" <ji...@apache.org> on 2006/12/01 03:57:22 UTC

[jira] Created: (AXIS2-1801) setOperationContext not being invoked

setOperationContext not being invoked
-------------------------------------

                 Key: AXIS2-1801
                 URL: http://issues.apache.org/jira/browse/AXIS2-1801
             Project: Apache Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: kernel
    Affects Versions: 1.1
         Environment: JDK  1.5
Tomcat 5.5 rampart 1.1
            Reporter: Gary Jacobs
            Priority: Minor


I have a service that ran successfully under Axis 1.0 that had a setOperationContext method that was invoked by Axis prior to the operation method being invoked

Since migrating to Axis 1.1 I find that this operation is no longer being invoked by access

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Commented: (AXIS2-1801) setOperationContext not being invoked

Posted by "Gary Jacobs (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-1801?page=comments#action_12455122 ] 
            
Gary Jacobs commented on AXIS2-1801:
------------------------------------

Seems this was removed from the DependencyManager with revision 467258 and is being addressed in MUSE-138

> setOperationContext not being invoked
> -------------------------------------
>
>                 Key: AXIS2-1801
>                 URL: http://issues.apache.org/jira/browse/AXIS2-1801
>             Project: Apache Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>    Affects Versions: 1.1
>         Environment: JDK  1.5
> Tomcat 5.5 rampart 1.1
>            Reporter: Gary Jacobs
>            Priority: Minor
>
> I have a service that ran successfully under Axis 1.0 that had a setOperationContext method that was invoked by Axis prior to the operation method being invoked
> Since migrating to Axis 1.1 I find that this operation is no longer being invoked by access

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Resolved: (AXIS2-1801) setOperationContext not being invoked

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-1801?page=all ]

Deepal Jayasinghe resolved AXIS2-1801.
--------------------------------------

    Resolution: Won't Fix

SetOperationContext had  threading issues so we had to remove that and  we provide some other way to get access to the contexts. So now inside you method invocation you can get current message and from that u can get access to any of the contexts.

So you want to access message context inside a method call "foo" then you can do that as follows'

public String foo(){
 MessageContext msg =  MessageContext.getCurrentContext();
} 

> setOperationContext not being invoked
> -------------------------------------
>
>                 Key: AXIS2-1801
>                 URL: http://issues.apache.org/jira/browse/AXIS2-1801
>             Project: Apache Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>    Affects Versions: 1.1
>         Environment: JDK  1.5
> Tomcat 5.5 rampart 1.1
>            Reporter: Gary Jacobs
>            Priority: Minor
>
> I have a service that ran successfully under Axis 1.0 that had a setOperationContext method that was invoked by Axis prior to the operation method being invoked
> Since migrating to Axis 1.1 I find that this operation is no longer being invoked by access

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org