|
From: Ric Turner <rturner@xxxxxxxxxxxxxxx><web400@xxxxxxxxxxxxxxxxxx>
To: "Web Enabling the IBM i (AS/400 and iSeries)"
Date: 08/13/2019 01:42 PM<web400@xxxxxxxxxxxxxxxxxx>
Subject: [EXTERNAL] Re: [WEB400] IWS Large Character output support
Sent by: "WEB400" <web400-bounces@xxxxxxxxxxxxxxxxxx>
My service is SOAP
Thanks,
Ric Turner
JANO Technologies, Inc.
601.362.7601 ext. 224
800.250.9884 ext.224
The preceding e-mail is privileged and confidential and is intended
only for the named addressee. If you received this message in error,
please delete it and notify the sender by return e-mail or by phone at
the numbers noted above.
-----Original Message-----
From: WEB400 <web400-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Nadir
Amra
Sent: Tuesday, August 13, 2019 12:32 PM
To: Web Enabling the IBM i (AS/400 and iSeries)
Subject: Re: [WEB400] IWS Large Character output supportdeploying.
So not sure if this is what you are trying to do, but took the
following program and deployed as REST service:
h PGMINFO(*PCML:*MODULE:*DCLCASE)
D WSCASEINQ PR ExtPgm('WSCASEINQ')
D CASE# 13A
D courtcase_LENGTH...
D 10i 0
D courtcase 500000a
D WSCASEINQ PI
D CASE# 13A
D courtcase_LENGTH...
D 10i 0
D courtcase 500000a
/free
courtcase_LENGTH = 10;
courtcase = 'abcde';
*INLR=*ON;
/end-free
And I do not get the _LENGTH field in response.
<?xml version="1.0" encoding="UTF-8"
standalone="yes"?><WSCASEINQResult><courtcase>abcde
</courtcase></WSCASEINQResult>
I assumed the CASE# is an input parameter, and the other parameters
are output parameters.
So it works for me, tried it on 7.4 and 7.2. So I am not sure why
things are not working for you. I would need to see how you are
12:15:12
"WEB400" <web400-bounces@xxxxxxxxxxxxxxxxxx> wrote on 08/13/2019
PM:
wrote:
On Aug 13, 2019, at 12:10 PM, Ric Turner <rturner@xxxxxxxxxxxxxxx>
The reason for not using the varchar is that a byte appears at the
Here is the parameter list that is being interpreted incorrectly.
beginning of the field that I assume is the length of the varchar
field in hex or binary and it becomes part of the output parameter
which in my case the end-user does not want.
in the courtcase parameter. But since I don't know how large the
DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords+++++++++++
D WSCASEINQ PR ExtPgm('WSCASEINQ')
D CASE# 13A
D courtcase_LENGTH...
D 10i 0
D courtcase 500000a
D WSCASEINQ PI
D CASE# 13A
D courtcase_LENGTH...
D 10i 0
D courtcase 500000a
This simple program accepts the CASE# parm and simply creates XML
XML will be at any given time I want to make the courtcase parameter
large enough to store all XML that will be created.
intended only for the named addressee. If you received this message
Thanks,
Ric Turner
JANO Technologies, Inc.
601.362.7601 ext. 224
800.250.9884 ext.224
The preceding e-mail is privileged and confidential and is
in error, please delete it and notify the sender by return e-mail or
by phone at the numbers noted above.
applications have character fields with large lengths, and IWS trims
-----Original Message-----
From: WEB400 <web400-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of
Nadir Amra
Sent: Tuesday, August 13, 2019 10:42 AM
To: Web Enabling the IBM i (AS/400 and iSeries)
<web400@xxxxxxxxxxxxxxxxxx>
Subject: Re: [WEB400] IWS Large Character output support
Jon, you could use length fields for character fields. Some
trailing blanks, and thus for these types of fields it could degrade
performance.
However, I do agree that varchar would be much cleaner.
"WEB400" <web400-bounces@xxxxxxxxxxxxxxxxxx> wrote on 08/13/2019
10:29:06
AM:
From: Jon Paris <jon.paris@xxxxxxxxxxxxxx><web400@xxxxxxxxxxxxxxxxxx>
To: "Web Enabling the IBM i (AS/400 and iSeries)"
Date: 08/13/2019 10:37 AM
Subject: [EXTERNAL] Re: [WEB400] IWS Large Character output
support
Sent by: "WEB400" <web400-bounces@xxxxxxxxxxxxxxxxxx>
If you are not using an array how can the parameter vary in length?
lengthIf it is a character field and you want to restrict the output
message
why not use a varying length field?wrote:
On Aug 13, 2019, at 11:18 AM, Ric Turner
<rturner@xxxxxxxxxxxxxxx>
am not using an array so this may be tricky. Thx
Thanks Jon, I will try to resolve this using your suggestion but
I
intended only for the named addressee. If you received this
Thanks,
Ric Turner
JANO Technologies, Inc.
601.362.7601 ext. 224
800.250.9884 ext.224
The preceding e-mail is privileged and confidential and is
orin error, please delete it and notify the sender by return e-mail
<rturner@xxxxxxxxxxxxxxx>by phone at the numbers noted above.Paris
-----Original Message-----
From: WEB400 <web400-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of
Jon
<web400@xxxxxxxxxxxxxxxxxx>Sent: Tuesday, August 13, 2019 10:13 AM
To: Web Enabling the IBM i (AS/400 and iSeries)
Subject: Re: [WEB400] IWS Large Character output supportinterfaces:
You may have the same problem I did Ric. Take a look at these
two
describe and includes the _LENGTH in the output;
This one works and the _LENGTH field is omitted from the output.
dcl-pi RestSrv5 ExtPgm;
requestedCat Like(catcod);
result char(20);
productList LikeDS(productList_T);
end-pi;
Dcl-ds product ExtName('PRODUCT') End-ds;
Dcl-ds productList_T Qualified Template;
products_LENGTH int(5);
products LikeDS(product) Dim(20);
End-Ds;
I think my original attempt looked like this - and it does as
you
_among_ the parameters whereas in fact it has to be _within_ the
dcl-pi RestSrv5 ExtPgm;
requestedCat Like(catcod);
result char(20);
products_LENGTH int(5);
products LikeDS(product) Dim(20);
end-pi;
Dcl-ds product ExtName('PRODUCT') End-ds;
To men the documentation implied that the _LENGTH had to be
parameter to which it relates.
On Aug 13, 2019, at 11:01 AM, Ric Turner
wrote:
the latest PTF's are installed. For some reason it displays the
Yes, I have the detect fields box clicked and my IT folks tell
me
_LENGTH parm when redeploying the service and I was not expecting
that. My understanding is that it should not appear in the list
of
lengthparms but be detected by the IWS as a field only to define the
message
to speed things up.
intended only for the named addressee. If you received this
Thanks,
Ric Turner
JANO Technologies, Inc.
601.362.7601 ext. 224
800.250.9884 ext.224
The preceding e-mail is privileged and confidential and is
orin error, please delete it and notify the sender by return e-mail
Nadirby phone at the numbers noted above.
-----Original Message-----
From: WEB400 <web400-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of
https://www.ibm.com/developerworks/community/wikis/home?lang=en#!/wiki
latest HTTP group PTF?Amra
Sent: Friday, August 9, 2019 9:26 AM
To: Web Enabling the IBM i (AS/400 and iSeries)
<web400@xxxxxxxxxxxxxxxxxx>
Subject: Re: [WEB400] IWS Large Character output support
Have you enable "detect field lengths" option? Do you have
varchar would also work in this case as well.
FYI, the article was written prior to varchar[1] support.
[1]
/dW%20IBM%20Integrated%20Web%20Services%20for%20i/page/Support%20varia
ble%20length%20fields
"WEB400" <web400-bounces@xxxxxxxxxxxxxxxxxx> wrote on
08/09/2019
07:42:43
AM:
From: Ric Turner <rturner@xxxxxxxxxxxxxxx>
To: "WEB400@xxxxxxxxxxxxxxxxxx" <WEB400@xxxxxxxxxxxxxxxxxx>
Date: 08/09/2019 07:42 AM
Subject: [EXTERNAL] Re: [WEB400] IWS Large Character output
support Sent by: "WEB400" <web400-bounces@xxxxxxxxxxxxxxxxxx>
Hi All,
We have found an article that addresses speeding up the SOAP
web
theservice when large character fields are used to return data to
updates
consumer (titled: Integrated web services server for IBM i
at
website: https://www.ibm.com/developerworks/ibmi/library/i-
integrated-web-services-server/index.html ).
Below is an excerpt from the article:
Enable improved processing of very large output character
fields
OutputLength field support has been extended to character fields.
of
character fields that are very large (I am talking about 1000s
sizebytes) take time to process because the determination of the
of
the string to return is done by traversing the field a byte at
a
cancharacter.time, from right to left, looking for the first non-blank
To improve the processing of these large character fields, you
and
specify an integer (int) field length that immediately
precedes the character field with the same name as the
character field appended with _LENGTH (similar to what is done
when processing output arrays with field lengths). If the
field length exists
Detect length fields is selected, the traversing of the field
to
sizedetermine the
is not performed, improving performance. In addition, the
length
inapproach?client response.field is hidden from the client and is not returned in the
My question to the group is - Has anyone tried using this
I have coded my SOAP web service (I am the provider) using
this approach only to find that it does not work as outlined
in the article. I am running this on a v7.2 machine and it is
written
2
RPGLE as a program (not a service program).
When I perform the redeploy of the service all 3 parameters
are displayed (including the _LENGTH parm), but I was
expecting only
consumer.
parameters to appear (excluding the _LENGTH parm).
Here is the RPGLE code from my program:
D WSCASEINQ PR ExtPgm('WSCASEINQ')
D CASE# 13A
D courtcase_LENGTH...
D 10i 0
D courtcase 500000a
D WSCASEINQ PI
D CASE# 13A
D courtcase_LENGTH...
D 10i 0
D courtcase 500000a
The whole idea is to not return the _LENGTH parm to the
appreciated.approachThere is no example in the article, it just states that this
works like the approach used for the array.66
Does anyone know what I am doing wrong to not be able to take
advantage of this approach? Any assistance is greatly
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.