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 "Thomas Leonard (JIRA)" <ji...@apache.org> on 2007/08/10 13:29:43 UTC

[jira] Created: (AXIS2-3113) NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)

NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
-------------------------------------------------------------------------------------------

                 Key: AXIS2-3113
                 URL: https://issues.apache.org/jira/browse/AXIS2-3113
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: adb
            Reporter: Thomas Leonard
             Fix For: 1.3


In 1.3-RC2, RPCMessageReceiver has:

        Method method = null;
        try {
             ...
        } catch (Exception e) {
            String msg = "Exception occurred while trying to invoke service method " +
                    method.getName();
            log.error(msg, e);
            throw AxisFault.makeFault(e);
        }

If an exception is thrown before method is set, it throws a NullPointerException, e.g.:

Caused by: java.lang.NullPointerException
        at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
        at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
        at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:95)
        at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:145)
        at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:276)
        at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:119)
        ... 16 more


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


Is it possible to access external services?

Posted by Glenn Williams <gl...@iosemantics.com>.
Hello,

Is it possible to reference and use external services? I cannot find any
documentation to help me with this. I would like to use a service that is
running externally, and potentially on another server. 

Thanks.

glenn


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


Is it possible to access external services?

Posted by Glenn Williams <gl...@iosemantics.com>.
Hello,

Is it possible to reference and use external services? I cannot find any
documentation to help me with this. I would like to use a service that is
running externally, and potentially on another server. 

Thanks.

glenn


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


[jira] Assigned: (AXIS2-3113) NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3113?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Deepal Jayasinghe reassigned AXIS2-3113:
----------------------------------------

    Assignee: Deepal Jayasinghe

> NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
> -------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3113
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3113
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>            Reporter: Thomas Leonard
>            Assignee: Deepal Jayasinghe
>             Fix For: nightly
>
>
> In 1.3-RC2, RPCMessageReceiver has:
>         Method method = null;
>         try {
>              ...
>         } catch (Exception e) {
>             String msg = "Exception occurred while trying to invoke service method " +
>                     method.getName();
>             log.error(msg, e);
>             throw AxisFault.makeFault(e);
>         }
> If an exception is thrown before method is set, it throws a NullPointerException, e.g.:
> Caused by: java.lang.NullPointerException
>         at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
>         at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
>         at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:95)
>         at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:145)
>         at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:276)
>         at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:119)
>         ... 16 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Resolved: (AXIS2-3113) NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3113?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Davanum Srinivas resolved AXIS2-3113.
-------------------------------------

    Resolution: Fixed

> NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
> -------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3113
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3113
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>            Reporter: Thomas Leonard
>            Assignee: Deepal Jayasinghe
>
> In 1.3-RC2, RPCMessageReceiver has:
>         Method method = null;
>         try {
>              ...
>         } catch (Exception e) {
>             String msg = "Exception occurred while trying to invoke service method " +
>                     method.getName();
>             log.error(msg, e);
>             throw AxisFault.makeFault(e);
>         }
> If an exception is thrown before method is set, it throws a NullPointerException, e.g.:
> Caused by: java.lang.NullPointerException
>         at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
>         at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
>         at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:95)
>         at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:145)
>         at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:276)
>         at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:119)
>         ... 16 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Commented: (AXIS2-3113) NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3113?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12577011#action_12577011 ] 

Davanum Srinivas commented on AXIS2-3113:
-----------------------------------------

Already fixed in latest svn.

> NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
> -------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3113
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3113
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>            Reporter: Thomas Leonard
>            Assignee: Deepal Jayasinghe
>
> In 1.3-RC2, RPCMessageReceiver has:
>         Method method = null;
>         try {
>              ...
>         } catch (Exception e) {
>             String msg = "Exception occurred while trying to invoke service method " +
>                     method.getName();
>             log.error(msg, e);
>             throw AxisFault.makeFault(e);
>         }
> If an exception is thrown before method is set, it throws a NullPointerException, e.g.:
> Caused by: java.lang.NullPointerException
>         at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
>         at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
>         at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:95)
>         at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:145)
>         at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:276)
>         at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:119)
>         ... 16 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-3113) NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3113?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Deepal Jayasinghe updated AXIS2-3113:
-------------------------------------

    Fix Version/s:     (was: 1.3)
                   nightly

> NullPointerException in RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
> -------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3113
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3113
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>            Reporter: Thomas Leonard
>             Fix For: nightly
>
>
> In 1.3-RC2, RPCMessageReceiver has:
>         Method method = null;
>         try {
>              ...
>         } catch (Exception e) {
>             String msg = "Exception occurred while trying to invoke service method " +
>                     method.getName();
>             log.error(msg, e);
>             throw AxisFault.makeFault(e);
>         }
> If an exception is thrown before method is set, it throws a NullPointerException, e.g.:
> Caused by: java.lang.NullPointerException
>         at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
>         at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
>         at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:95)
>         at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:145)
>         at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:276)
>         at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:119)
>         ... 16 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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