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 "takanori (JIRA)" <ji...@apache.org> on 2007/11/24 08:53:44 UTC

[jira] Created: (AXIS2-3364) RESTFul serivce problem when parameters are short

RESTFul serivce problem when parameters are short
-------------------------------------------------

                 Key: AXIS2-3364
                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: adb
    Affects Versions: 1.3
            Reporter: takanori


If I develop a RESTFul web service, there is a case that service paramters are not correctly set.

The service class is :
------------------------------------------------------------
public class RESTfulEcho {

   public EchoDto echo(Integer id, String message) {
       EchoDto dto = new EchoDto();
       dto.setId(id);
       dto.setMessage(message);
       return dto;
   }
}

I've tried to call the service like this :
------------------------------------------------------------
http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123

The parameter "id" is not explicitly set.


Then the service parameters are :

 id      ---> 123
 message ---> null


When the parameters are explicitly set,
the service works correctly.
------------------------------------------------------------
http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123


But, I hope that when the parameters is not explicitly set,
the parameter is set null or throw a exception.


-- 
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-3364) RESTFul serivce problem when parameters are short

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

Glen Daniels updated AXIS2-3364:
--------------------------------

    Fix Version/s: 1.5

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: 1.5
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

-- 
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-3364) RESTFul serivce problem when parameters are short

Posted by "Chris Hyzer (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12679093#action_12679093 ] 

Chris Hyzer commented on AXIS2-3364:
------------------------------------

Hey,

Is this issue fixed in 1.5?  When is 1.5 coming out?

My users are still tripping over this issue, it makes the web services very hard to use since the server side just silently ignores some inputs, or transposes them.  Its a serious serious bug.

Thanks!
Chris

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: 1.5
>
>         Attachments: axis2_3364.patch
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

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


[jira] Updated: (AXIS2-3364) RESTFul serivce problem when parameters are short

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

irantha suwandarathna updated AXIS2-3364:
-----------------------------------------

    Attachment: axis2_3364.patch

Change minOccures to 1 as of Deepal's suggestion.

BaseDataTypesTest needed to be fixed.
All test  successful as of 12/17/2008 noon.

-Irantha


> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: 1.5
>
>         Attachments: axis2_3364.patch
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

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


[jira] Updated: (AXIS2-3364) RESTFul serivce problem when parameters are short

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

irantha suwandarathna updated AXIS2-3364:
-----------------------------------------

    Attachment: asis2_3364.patch

Change minOccures to 1 as of Deepal's suggestion.

BaseDataTypesTest needed to be fixed.
All test  successful as of 12/17/2008 noon.

-Irantha

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: 1.5
>
>         Attachments: asis2_3364.patch
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

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


[jira] Commented: (AXIS2-3364) RESTFul serivce problem when parameters are short

Posted by "Chris Hyzer (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12657780#action_12657780 ] 

Chris Hyzer commented on AXIS2-3364:
------------------------------------

I understand you are discussing the solution.  My question is, will Java2Wsdl change the minoccurs so my wsdl will be different?  Or some other side effect, or will everything be the same and the problem will be fixed?

Thanks,
Chris

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: 1.5
>
>         Attachments: axis2_3364.patch
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

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


[jira] Commented: (AXIS2-3364) RESTFul serivce problem when parameters are short

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12585488#action_12585488 ] 

Deepal Jayasinghe commented on AXIS2-3364:
------------------------------------------

I did the fix locally however few other test cases started to fail , so  I did not commit my changes. I will do some more debugs and see what happening,

The way I solve the problem is not generating method properties with minoccurs=0.

Thank you!
Deepal

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

-- 
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-3364) RESTFul serivce problem when parameters are short

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

Deepal Jayasinghe updated AXIS2-3364:
-------------------------------------

    Fix Version/s:     (was: 1.5)
                   nightly

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: nightly
>
>         Attachments: axis2_3364.patch
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

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


[jira] Commented: (AXIS2-3364) RESTFul serivce problem when parameters are short

Posted by "Chris Hyzer (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12778056#action_12778056 ] 

Chris Hyzer commented on AXIS2-3364:
------------------------------------

Any updates on this issue?  When people omit arguments to my service, and have o debug to find out that arguments are assigned in the wrong order, it requires time.  A fix would be nice.

I understand that some people thing that the arguments should not be optional, but unfortunately I have a published service contract based on what was available at the time, so I would like to start working.

Thanks,
Chris

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: nightly
>
>         Attachments: axis2_3364.patch
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

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


[jira] Updated: (AXIS2-3364) RESTFul serivce problem when parameters are short

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

irantha suwandarathna updated AXIS2-3364:
-----------------------------------------

    Attachment:     (was: asis2_3364.patch)

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: 1.5
>
>         Attachments: axis2_3364.patch
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

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


[jira] Commented: (AXIS2-3364) RESTFul serivce problem when parameters are short

Posted by "Chris Hyzer (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12657666#action_12657666 ] 

Chris Hyzer commented on AXIS2-3364:
------------------------------------

Sorry, I dont understand, are you saying that this will not be fixed for minOccurs=0?  And the workaround is to set minOccurs=1?  Thanks, Chris

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: 1.5
>
>         Attachments: axis2_3364.patch
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

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


[jira] Commented: (AXIS2-3364) RESTFul serivce problem when parameters are short

Posted by "irantha suwandarathna (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12657701#action_12657701 ] 

irantha suwandarathna commented on AXIS2-3364:
----------------------------------------------

You might be interested in following thread,

http://markmail.org/search/?q=Looking+into+open+issue+3364#query:Looking%20into%20open%20issue%203364+page:1+mid:6ujrtfrwov32n5w7+state:results

Thanks,
Irantha

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>             Fix For: 1.5
>
>         Attachments: axis2_3364.patch
>
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

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


[jira] Commented: (AXIS2-3364) RESTFul serivce problem when parameters are short

Posted by "Chris Hyzer (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12561980#action_12561980 ] 

Chris Hyzer commented on AXIS2-3364:
------------------------------------

This occurs not only when using a restful input, but also with a soap input (and omitting early param).  This is an important problem to fix.  Thanks, Chris

> RESTFul serivce problem when parameters are short
> -------------------------------------------------
>
>                 Key: AXIS2-3364
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3364
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.3
>            Reporter: takanori
>
> If I develop a RESTFul web service, there is a case that service paramters are not correctly set.
> The service class is :
> ------------------------------------------------------------
> public class RESTfulEcho {
>    public EchoDto echo(Integer id, String message) {
>        EchoDto dto = new EchoDto();
>        dto.setId(id);
>        dto.setMessage(message);
>        return dto;
>    }
> }
> I've tried to call the service like this :
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?message=123
> The parameter "id" is not explicitly set.
> Then the service parameters are :
>  id      ---> 123
>  message ---> null
> When the parameters are explicitly set,
> the service works correctly.
> ------------------------------------------------------------
> http://localhost:8080/axis2/services/RESTfulEcho/echo?id=&message=123
> But, I hope that when the parameters is not explicitly set,
> the parameter is set null or throw a exception.

-- 
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