You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Forrest Xia (JIRA)" <ji...@apache.org> on 2011/05/07 11:37:03 UTC

[jira] [Created] (YOKO-433) YOKO chunking logic does not set the the chunk flag to false when the valuetype tag is false on the chunking bit

YOKO chunking logic does not set the the chunk flag to false when the valuetype tag is false on the chunking bit
----------------------------------------------------------------------------------------------------------------

                 Key: YOKO-433
                 URL: https://issues.apache.org/jira/browse/YOKO-433
             Project: Yoko - CORBA Server
          Issue Type: Bug
      Security Level: public (Regular issues)
          Components: orb core
    Affects Versions: v1.2.0
            Reporter: Forrest Xia
            Assignee: Forrest Xia
            Priority: Minor
             Fix For: v1.2.0


The current chunking logic is like this:

         if ((h.tag & 0x00000008) == 8) {
             h.state.chunked = true;
         }

This basically works fine when nesting valuetype has the same chunking as the parent valuetype. But if the nested valuetype does not use chunking, then the logic should be change to like this:
         if ((h.tag & 0x00000008) == 8) {
             h.state.chunked = true;
        } else {
        	h.state.chunked = false;
         }


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Closed] (YOKO-433) YOKO chunking logic does not set the the chunk flag to false when the valuetype tag is false on the chunking bit

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

Forrest Xia closed YOKO-433.
----------------------------


close it.

> YOKO chunking logic does not set the the chunk flag to false when the valuetype tag is false on the chunking bit
> ----------------------------------------------------------------------------------------------------------------
>
>                 Key: YOKO-433
>                 URL: https://issues.apache.org/jira/browse/YOKO-433
>             Project: Yoko - CORBA Server
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: orb core
>    Affects Versions: v1.2.0
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: v1.2.0
>
>
> The current chunking logic is like this:
>          if ((h.tag & 0x00000008) == 8) {
>              h.state.chunked = true;
>          }
> This basically works fine when nesting valuetype has the same chunking as the parent valuetype. But if the nested valuetype does not use chunking, then the logic should be change to like this:
>          if ((h.tag & 0x00000008) == 8) {
>              h.state.chunked = true;
>         } else {
>         	h.state.chunked = false;
>          }

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Resolved] (YOKO-433) YOKO chunking logic does not set the the chunk flag to false when the valuetype tag is false on the chunking bit

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

Forrest Xia resolved YOKO-433.
------------------------------

    Resolution: Fixed

commit to yoko trunk@1100490, close this jira.

> YOKO chunking logic does not set the the chunk flag to false when the valuetype tag is false on the chunking bit
> ----------------------------------------------------------------------------------------------------------------
>
>                 Key: YOKO-433
>                 URL: https://issues.apache.org/jira/browse/YOKO-433
>             Project: Yoko - CORBA Server
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: orb core
>    Affects Versions: v1.2.0
>            Reporter: Forrest Xia
>            Assignee: Forrest Xia
>            Priority: Minor
>             Fix For: v1.2.0
>
>
> The current chunking logic is like this:
>          if ((h.tag & 0x00000008) == 8) {
>              h.state.chunked = true;
>          }
> This basically works fine when nesting valuetype has the same chunking as the parent valuetype. But if the nested valuetype does not use chunking, then the logic should be change to like this:
>          if ((h.tag & 0x00000008) == 8) {
>              h.state.chunked = true;
>         } else {
>         	h.state.chunked = false;
>          }

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira