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).
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:
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 an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
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.
See this idea on ideas.ibm.com
We are creating services where we define the request and response
messages as basicrecords.
In those records we use arrays, and when this is generated to a wsdl
the array types are named ...Array. For example :
People Person[] will be defined as PersonArray as the element name..
(<people><PersonArray></PersonArray>...
<PersonArray></PersonArray></people>)
Is there a possibility to force the generator to use the names we find
logical such as :
People Person[] should be <people><person></person>...
<person></person></people>
Generated sample :
record person type BasicRecord
name string;
address string;
end
record company type BasicRecord
company string;
persons person[0];
end
service TestService
function getNames(request company) returns(company)
end end
Gives input for wsdl :
<request>
<company>Whatever</company>
<persons>
<personArray>
<name>a</name>
<address>a</address>
</personArray>
<personArray>
<name>b</name>
<address>b</address>
</personArray>
</persons>
</request>
You see the problem that the element person is renamed to PersonArray.
This sounds like an error. I expect 'person' instead of personArray
Idea priority | Urgent |
By clicking the "Post Comment" or "Submit Idea" button, you are agreeing to the IBM Ideas Portal Terms of Use.
Do not place IBM confidential, company confidential, or personal information into any field.
IBM Business Developer is a continuous delivery offering, and aims to satisfy the needs of a rapidly evolving market segment. Product strategy evolves and requirements are continuously evaluated against that strategy. This RFE has recently been reappraised against the wider product strategy and does not fall into IBMs delivery plans for the next 12 month. Whilst this RFE might be valid and we might look to deliver longer term, this RFE is being rejected at this time.
This RFE is more than a decade old. It might not be relevant now. Please create a new RFE if this requirement is not yet addressed in the product and it still exists.
Due to processing by IBM, this request was reassigned to have the following updated attributes:
Brand - Servers and Systems Software
Product family - Programming Languages
Product - Business Developer
For recording keeping, the previous attributes were:
Brand - Rational
Product family - Design & development
Product - Business Developer
This RFE's Headline was changed after submission to reflect the headline of an internal request we were already considering, but will now track here.
In the next release of RBD, we plan to add annotations at the field level to allow the user to override the default names.