Skip to Main Content
IBM Z Software


This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Delivered
Workspace z/OS Connect
Created by Guest
Created on May 1, 2017
Merged idea

This idea has been merged into another idea. To comment or vote on this idea, please visit ZCEE-I-134 z/OS Connect JSON Parser needs to handle large numbers and not round numeric values.

An option is needed to prevent JSON parsing/rebuilding when returning JSON from an application Merged

When an application returns a JSON string to z/OS Connect, the JSON is passed to the IBM JSON parser for analysis and validation. Subsequently the JSON string is rebuilt. This is an overhead and any limitations of the IBM JSON parser (such as the size of numeric fields) may cause error (which the application is not informed about). An option should be available when defining a service to tell z/OS Connect not to valiate/rebuild the JSON.

Idea priority Medium
  • Guest
    Reply
    |
    Oct 9, 2017

    This RFE is being closed as a duplicate of RFE 104512
    http://www.ibm.com/developerworks/rfe/execute?use_case=viewChangeRequest&CR_ID=104512

  • Guest
    Reply
    |
    May 15, 2017

    The example use case probably needs clarification. If the application returns a JSON file that is a 'large' number (i.e. that has too many digits in it for the IBM JSON parser to handle) then either an error is raised or the number is truncated and rounded and converted to a floating point value.

    For example if the JSON string has "NUMFLD":123456789012345678901234567890

    The IBM JSON parser will raise an error and the 'user' will get a lot of error information. (Note that the application is not made aware that this has occurred)

    If the JSON string has "NMUMFLD":1234567890123456789012345678.123

    the IBM JSON parser will treat the number as valid, but will change it to 1.2345678901234569e+27 (Note that it has been rounded and changed from a standard number with 3 decimal places to a floating-format number)