You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by "Sagara Gunathunga (Created) (JIRA)" <ji...@apache.org> on 2011/10/28 11:18:32 UTC

[jira] [Created] (AXIOM-396) MultipartWriter should support to write Content-Disposition header

MultipartWriter should support to write Content-Disposition header
------------------------------------------------------------------

                 Key: AXIOM-396
                 URL: https://issues.apache.org/jira/browse/AXIOM-396
             Project: Axiom
          Issue Type: Improvement
          Components: API
    Affects Versions: 1.2.12
            Reporter: Sagara Gunathunga 
             Fix For: 1.2.13


Current MultipartWriter implemantations does not support to write "Content-Disposition" header [1] [2] but there are some use cases that need to write this header. As an example this is a required header for Axis2 MultipartFormDataBuilder in order to construct SAOP messages. This is a required feature to use MultipartWriter in Axis2 MultipartFormDataFormatter.

[1] - http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html
[2] - http://www.ietf.org/rfc/rfc1806.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Commented] (AXIOM-396) MultipartWriter should support to write Content-Disposition header

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIOM-396?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13138212#comment-13138212 ] 

Hudson commented on AXIOM-396:
------------------------------

Integrated in ws-axiom-trunk #648 (See [https://builds.apache.org/job/ws-axiom-trunk/648/])
    Fixed - AXIOM-396  - Introduced two new method to the MultipartWriter API so that it will write "Content-Disposition" header.

sagara : 
Files : 
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/mime/MultipartWriter.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/mime/impl/axiom/MultipartWriterImpl.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/mime/impl/javamail/MultipartWriterImpl.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/impl/OMMultipartWriter.java

                
> MultipartWriter should support to write Content-Disposition header
> ------------------------------------------------------------------
>
>                 Key: AXIOM-396
>                 URL: https://issues.apache.org/jira/browse/AXIOM-396
>             Project: Axiom
>          Issue Type: Improvement
>          Components: API
>    Affects Versions: 1.2.12
>            Reporter: Sagara Gunathunga 
>             Fix For: 1.2.13
>
>
> Current MultipartWriter implemantations does not support to write "Content-Disposition" header [1] [2] but there are some use cases that need to write this header. As an example this is a required header for Axis2 MultipartFormDataBuilder in order to construct SAOP messages. This is a required feature to use MultipartWriter in Axis2 MultipartFormDataFormatter.
> [1] - http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html
> [2] - http://www.ietf.org/rfc/rfc1806.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Resolved] (AXIOM-396) MultipartWriter should support to write Content-Disposition header

Posted by "Sagara Gunathunga (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIOM-396?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sagara Gunathunga  resolved AXIOM-396.
--------------------------------------

    Resolution: Fixed

Fixed in r1190225.
                
> MultipartWriter should support to write Content-Disposition header
> ------------------------------------------------------------------
>
>                 Key: AXIOM-396
>                 URL: https://issues.apache.org/jira/browse/AXIOM-396
>             Project: Axiom
>          Issue Type: Improvement
>          Components: API
>    Affects Versions: 1.2.12
>            Reporter: Sagara Gunathunga 
>             Fix For: 1.2.13
>
>
> Current MultipartWriter implemantations does not support to write "Content-Disposition" header [1] [2] but there are some use cases that need to write this header. As an example this is a required header for Axis2 MultipartFormDataBuilder in order to construct SAOP messages. This is a required feature to use MultipartWriter in Axis2 MultipartFormDataFormatter.
> [1] - http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html
> [2] - http://www.ietf.org/rfc/rfc1806.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Commented] (AXIOM-396) MultipartWriter should support to write Content-Disposition header

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIOM-396?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13139632#comment-13139632 ] 

Hudson commented on AXIOM-396:
------------------------------

Integrated in ws-axiom-trunk #654 (See [https://builds.apache.org/job/ws-axiom-trunk/654/])
    AXIOM-396: Generalized this feature such that it can be used to write arbitrary MIME headers (not just Content-Disposition).

veithen : 
Files : 
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/attachments/Header.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/attachments/MIMEMessage.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/attachments/PartImpl.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/mime/Header.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/mime/MultipartWriter.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/mime/impl/axiom/MultipartWriterImpl.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/mime/impl/javamail/MultipartWriterImpl.java
* /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/impl/OMMultipartWriter.java

                
> MultipartWriter should support to write Content-Disposition header
> ------------------------------------------------------------------
>
>                 Key: AXIOM-396
>                 URL: https://issues.apache.org/jira/browse/AXIOM-396
>             Project: Axiom
>          Issue Type: Improvement
>          Components: API
>    Affects Versions: 1.2.12
>            Reporter: Sagara Gunathunga 
>             Fix For: 1.2.13
>
>
> Current MultipartWriter implemantations does not support to write "Content-Disposition" header [1] [2] but there are some use cases that need to write this header. As an example this is a required header for Axis2 MultipartFormDataBuilder in order to construct SAOP messages. This is a required feature to use MultipartWriter in Axis2 MultipartFormDataFormatter.
> [1] - http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html
> [2] - http://www.ietf.org/rfc/rfc1806.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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