You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-dev@ws.apache.org by "James Shiell (JIRA)" <ji...@apache.org> on 2006/11/03 13:10:21 UTC

[jira] Created: (MUSE-139) AxisEnvironment usings unnecessary static methods

AxisEnvironment usings unnecessary static methods
-------------------------------------------------

                 Key: MUSE-139
                 URL: http://issues.apache.org/jira/browse/MUSE-139
             Project: Muse
          Issue Type: Improvement
          Components: Deployment - Axis2
    Affects Versions: 2.0.0
            Reporter: James Shiell
         Assigned To: Dan Jemiolo
            Priority: Minor


The AxisEnvironment class has many static methods that have no reason for a static modifier. Could these please be removed to aid in the ease of extending this class?

-- 
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: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org


[jira] Commented: (MUSE-139) AxisEnvironment usings unnecessary static methods

Posted by "James Shiell (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/MUSE-139?page=comments#action_12446925 ] 
            
James Shiell commented on MUSE-139:
-----------------------------------

Incidentally, I ran into this purely when trying to implement a work-around for MUSE-140.

> AxisEnvironment usings unnecessary static methods
> -------------------------------------------------
>
>                 Key: MUSE-139
>                 URL: http://issues.apache.org/jira/browse/MUSE-139
>             Project: Muse
>          Issue Type: Improvement
>          Components: Deployment - Axis2
>    Affects Versions: 2.0.0
>            Reporter: James Shiell
>         Assigned To: Dan Jemiolo
>            Priority: Minor
>
> The AxisEnvironment class has many static methods that have no reason for a static modifier. Could these please be removed to aid in the ease of extending this class?

-- 
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: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org


[jira] Commented: (MUSE-139) AxisEnvironment usings unnecessary static methods

Posted by "James Shiell (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/MUSE-139?page=comments#action_12446997 ] 
            
James Shiell commented on MUSE-139:
-----------------------------------

Sorry, I have thinking of things like convertToDom, which is just a stateless utility method.

> AxisEnvironment usings unnecessary static methods
> -------------------------------------------------
>
>                 Key: MUSE-139
>                 URL: http://issues.apache.org/jira/browse/MUSE-139
>             Project: Muse
>          Issue Type: Improvement
>          Components: Deployment - Axis2
>    Affects Versions: 2.0.0
>            Reporter: James Shiell
>         Assigned To: Dan Jemiolo
>            Priority: Minor
>
> The AxisEnvironment class has many static methods that have no reason for a static modifier. Could these please be removed to aid in the ease of extending this class?

-- 
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: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org


[jira] Closed: (MUSE-139) AxisEnvironment usings unnecessary static methods

Posted by "Dan Jemiolo (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/MUSE-139?page=all ]

Dan Jemiolo closed MUSE-139.
----------------------------

    Fix Version/s: 2.1.0
       Resolution: Fixed

Shouldn't be an issue anymore because of the fix you mentioned, but I made the change just in case. 

> AxisEnvironment usings unnecessary static methods
> -------------------------------------------------
>
>                 Key: MUSE-139
>                 URL: http://issues.apache.org/jira/browse/MUSE-139
>             Project: Muse
>          Issue Type: Improvement
>          Components: Deployment - Axis2
>    Affects Versions: 2.0.0
>            Reporter: James Shiell
>         Assigned To: Dan Jemiolo
>            Priority: Minor
>             Fix For: 2.1.0
>
>
> The AxisEnvironment class has many static methods that have no reason for a static modifier. Could these please be removed to aid in the ease of extending this class?

-- 
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: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org


[jira] Commented: (MUSE-139) AxisEnvironment usings unnecessary static methods

Posted by "Dan Jemiolo (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/MUSE-139?page=comments#action_12446984 ] 
            
Dan Jemiolo commented on MUSE-139:
----------------------------------

We had to make them static because we only wanted one instance of the service for the multiple context paths that we had to specify in Axis2. That is, Axis2's service.xml requires us to specify each resource type as a <service/> element, with the WS-A Action URIs it supports, or requests will not get through to Muse. Since the <service/> element requires us to specify a service class for it to load, we can't have a non-static class. In order for Muse to allow different ws-resource types to communicate with one another inside the application, they must be handled by the same ResourceManager, and thus, the same Axis2 service instance.


> AxisEnvironment usings unnecessary static methods
> -------------------------------------------------
>
>                 Key: MUSE-139
>                 URL: http://issues.apache.org/jira/browse/MUSE-139
>             Project: Muse
>          Issue Type: Improvement
>          Components: Deployment - Axis2
>    Affects Versions: 2.0.0
>            Reporter: James Shiell
>         Assigned To: Dan Jemiolo
>            Priority: Minor
>
> The AxisEnvironment class has many static methods that have no reason for a static modifier. Could these please be removed to aid in the ease of extending this class?

-- 
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: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org