You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by "Rich Scheuerle (JIRA)" <ji...@apache.org> on 2007/09/05 21:53:33 UTC

[jira] Resolved: (WSCOMMONS-242) OMOutputFormat should surround the start value with <>

     [ https://issues.apache.org/jira/browse/WSCOMMONS-242?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rich Scheuerle resolved WSCOMMONS-242.
--------------------------------------

    Resolution: Fixed

Committed 573037

> OMOutputFormat should surround the start value with <>
> ------------------------------------------------------
>
>                 Key: WSCOMMONS-242
>                 URL: https://issues.apache.org/jira/browse/WSCOMMONS-242
>             Project: WS-Commons
>          Issue Type: Bug
>            Reporter: Rich Scheuerle
>            Assignee: Rich Scheuerle
>
> This quick fix is from Nick Gallardo.
> The start parameter of the content-id should be surrounded with <>.  
> Example:
>  public String getContentTypeForMTOM(String SOAPContentType) {
>         StringBuffer sb = new StringBuffer();
>         sb.append("multipart/related");
>         sb.append("; ");
>         sb.append("boundary=");
>         sb.append(getMimeBoundary());
>         sb.append("; ");
>         sb.append("type=\"" + MTOMConstants.MTOM_TYPE + "\"");
>         sb.append("; ");
>         sb.append("start=\"<").append(getRootContentId()).append(">\"");  // <-------------
>         sb.append("; ");
>         sb.append("start-info=\"").append(SOAPContentType).append("\"");
>         return sb.toString();
>     }
> I am running tests and will commit the change later today.

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