You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Jacques Le Roux (JIRA)" <ji...@apache.org> on 2010/09/16 00:40:32 UTC

[jira] Commented: (OFBIZ-3916) method writeObject(StringBuilder sb, Object value, boolean allowJsonResolve) in UtilIO always throw an IOException

    [ https://issues.apache.org/jira/browse/OFBIZ-3916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909926#action_12909926 ] 

Jacques Le Roux commented on OFBIZ-3916:
----------------------------------------

These commits have been reverted, please see the code for a short explanation and [this thread for more|http://markmail.org/message/vvyrlqefunj2idsv]

> method writeObject(StringBuilder sb, Object value, boolean allowJsonResolve) in UtilIO always throw an IOException
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-3916
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-3916
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: Release Branch 10.04
>         Environment: Server side: Mac OSX 10.6.4
> Client: Safari 5.0.1
>            Reporter: Liu Xiangqian
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: OFBIZ-3916.patch
>
>   Original Estimate: 0.08h
>  Remaining Estimate: 0.08h
>
> Tried to invoke method UtilIO.writeObject(StringBuilder sb, Object value, boolean allowJsonResolve) but found the follow code
>    try {
>             StringWriter writer = new StringWriter();
>             if (encodeObject(writer, value, allowJsonResolve)) {
>                 sb.append(writer.toString());
>                 return;
>             }
>         } catch (Exception e) {
>         }
>         throw new IOException("Can't write (" + value + ")");
> These codes casued the method always throw an IOException.

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