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 "Rich Scheuerle (JIRA)" <ji...@apache.org> on 2008/03/27 16:27:24 UTC

[jira] Created: (AXIS2-3671) JAXWS: @MTOM annotation not respected in some circumstances

JAXWS: @MTOM annotation not respected in some circumstances
-----------------------------------------------------------

                 Key: AXIS2-3671
                 URL: https://issues.apache.org/jira/browse/AXIS2-3671
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: jaxws
            Reporter: Rich Scheuerle
            Assignee: Rich Scheuerle
            Priority: Critical
             Fix For: 1.4


Problem:
JAXWS 2.1 introduced an @MTOM annotation for the endpoint.
If present the @MTOM annotation should be used to enable/disable MTOM
If not present, the BindingType should be used to enable/disable MTOM.

The following cases are currently failing:


// Should enable MTOM
@WebService(...)
@MTOM
public class ...{

// Should enable MTOM
@WebService(...)
@MTOM(enabled=true)
public class ...{

// Should disable MTOM
@WebService(...)
@BindingType(SOAPBinding.SOAP11HTTP_MTOM_BINDING)
@MTOM(enabled= false)
public class ...{

I have representative failing tests in my sandbox.  I will be committing the new tests and changes today for RC3.

Thanks, 
Rich

-- 
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-3671) JAXWS: @MTOM annotation not respected in some circumstances

Posted by "Rich Scheuerle (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3671?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12582735#action_12582735 ] 

Rich Scheuerle commented on AXIS2-3671:
---------------------------------------

Kudos to Jesse Ramos for finding this problem and helping me with the tests.



> JAXWS: @MTOM annotation not respected in some circumstances
> -----------------------------------------------------------
>
>                 Key: AXIS2-3671
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3671
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: jaxws
>            Reporter: Rich Scheuerle
>            Assignee: Rich Scheuerle
>            Priority: Critical
>             Fix For: 1.4
>
>
> Problem:
> JAXWS 2.1 introduced an @MTOM annotation for the endpoint.
> If present the @MTOM annotation should be used to enable/disable MTOM
> If not present, the BindingType should be used to enable/disable MTOM.
> The following cases are currently failing:
> // Should enable MTOM
> @WebService(...)
> @MTOM
> public class ...{
> // Should enable MTOM
> @WebService(...)
> @MTOM(enabled=true)
> public class ...{
> // Should disable MTOM
> @WebService(...)
> @BindingType(SOAPBinding.SOAP11HTTP_MTOM_BINDING)
> @MTOM(enabled= false)
> public class ...{
> I have representative failing tests in my sandbox.  I will be committing the new tests and changes today for RC3.
> Thanks, 
> Rich

-- 
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] Reopened: (AXIS2-3671) JAXWS: @MTOM annotation not respected in some circumstances

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

Rich Scheuerle reopened AXIS2-3671:
-----------------------------------


MTOMFeature(threshold) is disabling MTOM.

The threshold support is not yet available (see WSCOMMONS-318).  

I am using this defect to "tolerate" the MTOMFeature threshold setting...meaning that it is read but ignored.
This is consistent with the specification, which indicates that it is a hint.

> JAXWS: @MTOM annotation not respected in some circumstances
> -----------------------------------------------------------
>
>                 Key: AXIS2-3671
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3671
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: jaxws
>            Reporter: Rich Scheuerle
>            Assignee: Rich Scheuerle
>            Priority: Critical
>             Fix For: 1.4
>
>
> Problem:
> JAXWS 2.1 introduced an @MTOM annotation for the endpoint.
> If present the @MTOM annotation should be used to enable/disable MTOM
> If not present, the BindingType should be used to enable/disable MTOM.
> The following cases are currently failing:
> // Should enable MTOM
> @WebService(...)
> @MTOM
> public class ...{
> // Should enable MTOM
> @WebService(...)
> @MTOM(enabled=true)
> public class ...{
> // Should disable MTOM
> @WebService(...)
> @BindingType(SOAPBinding.SOAP11HTTP_MTOM_BINDING)
> @MTOM(enabled= false)
> public class ...{
> I have representative failing tests in my sandbox.  I will be committing the new tests and changes today for RC3.
> Thanks, 
> Rich

-- 
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-3671) JAXWS: @MTOM annotation not respected in some circumstances

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

Rich Scheuerle resolved AXIS2-3671.
-----------------------------------

    Resolution: Fixed

Committed Fix and Code to JAXWS only: 644131

> JAXWS: @MTOM annotation not respected in some circumstances
> -----------------------------------------------------------
>
>                 Key: AXIS2-3671
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3671
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: jaxws
>            Reporter: Rich Scheuerle
>            Assignee: Rich Scheuerle
>            Priority: Critical
>             Fix For: 1.4
>
>
> Problem:
> JAXWS 2.1 introduced an @MTOM annotation for the endpoint.
> If present the @MTOM annotation should be used to enable/disable MTOM
> If not present, the BindingType should be used to enable/disable MTOM.
> The following cases are currently failing:
> // Should enable MTOM
> @WebService(...)
> @MTOM
> public class ...{
> // Should enable MTOM
> @WebService(...)
> @MTOM(enabled=true)
> public class ...{
> // Should disable MTOM
> @WebService(...)
> @BindingType(SOAPBinding.SOAP11HTTP_MTOM_BINDING)
> @MTOM(enabled= false)
> public class ...{
> I have representative failing tests in my sandbox.  I will be committing the new tests and changes today for RC3.
> Thanks, 
> Rich

-- 
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] Issue Comment Edited: (AXIS2-3671) JAXWS: @MTOM annotation not respected in some circumstances

Posted by "Rich Scheuerle (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3671?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12584948#action_12584948 ] 

scheu@us.ibm.com edited comment on AXIS2-3671 at 4/2/08 6:39 PM:
---------------------------------------------------------------

MTOMFeature(threshold) is disabling MTOM.

The threshold support is not yet available (see WSCOMMONS-313).  

I am using this defect to "tolerate" the MTOMFeature threshold setting...meaning that it is read but ignored.
This is consistent with the specification, which indicates that it is a hint.

      was (Author: scheu@us.ibm.com):
    MTOMFeature(threshold) is disabling MTOM.

The threshold support is not yet available (see WSCOMMONS-318).  

I am using this defect to "tolerate" the MTOMFeature threshold setting...meaning that it is read but ignored.
This is consistent with the specification, which indicates that it is a hint.
  
> JAXWS: @MTOM annotation not respected in some circumstances
> -----------------------------------------------------------
>
>                 Key: AXIS2-3671
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3671
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: jaxws
>            Reporter: Rich Scheuerle
>            Assignee: Rich Scheuerle
>            Priority: Critical
>             Fix For: 1.4
>
>
> Problem:
> JAXWS 2.1 introduced an @MTOM annotation for the endpoint.
> If present the @MTOM annotation should be used to enable/disable MTOM
> If not present, the BindingType should be used to enable/disable MTOM.
> The following cases are currently failing:
> // Should enable MTOM
> @WebService(...)
> @MTOM
> public class ...{
> // Should enable MTOM
> @WebService(...)
> @MTOM(enabled=true)
> public class ...{
> // Should disable MTOM
> @WebService(...)
> @BindingType(SOAPBinding.SOAP11HTTP_MTOM_BINDING)
> @MTOM(enabled= false)
> public class ...{
> I have representative failing tests in my sandbox.  I will be committing the new tests and changes today for RC3.
> Thanks, 
> Rich

-- 
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-3671) JAXWS: @MTOM annotation not respected in some circumstances

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

Rich Scheuerle resolved AXIS2-3671.
-----------------------------------

    Resolution: Fixed

done

> JAXWS: @MTOM annotation not respected in some circumstances
> -----------------------------------------------------------
>
>                 Key: AXIS2-3671
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3671
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: jaxws
>            Reporter: Rich Scheuerle
>            Assignee: Rich Scheuerle
>            Priority: Critical
>             Fix For: 1.4
>
>
> Problem:
> JAXWS 2.1 introduced an @MTOM annotation for the endpoint.
> If present the @MTOM annotation should be used to enable/disable MTOM
> If not present, the BindingType should be used to enable/disable MTOM.
> The following cases are currently failing:
> // Should enable MTOM
> @WebService(...)
> @MTOM
> public class ...{
> // Should enable MTOM
> @WebService(...)
> @MTOM(enabled=true)
> public class ...{
> // Should disable MTOM
> @WebService(...)
> @BindingType(SOAPBinding.SOAP11HTTP_MTOM_BINDING)
> @MTOM(enabled= false)
> public class ...{
> I have representative failing tests in my sandbox.  I will be committing the new tests and changes today for RC3.
> Thanks, 
> Rich

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