× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Just to give a bigger picture:

I am using the following D specs to set the values:

D q S 1A Varying
D Inz('"')
D c S 1A Varying
D Inz(',')
D sc S 3A Varying
D Inz('":"')
D lb S 1A Varying
D Inz('{')
D rb S 1A Varying
D Inz('}')
D lc S 1A Varying
D Inz(' ')


The file is opened with the following (snippet):

c eval fd = open('/tmp/' + %trim(INFile) :
c O_CREAT+O_TRUNC+O_CODEPAGE+O_WRONLY:
c S_IRWXU+S_IRWXG+S_IROTH: 819)

A variable called line is then concatenated with the values:

Line = lc + lb + q + 'msgtxt' + sc + msgtxt + q + c +
q + 'msgid' + sc + RCVM0200.MsgID + q + c +
q + 'jobName' + sc + RCVM0200.SndJobNam + q + c +
q + 'jobUser' + sc + RCVM0200.SndJobUsr + q + c +
q + 'jobNumber' + sc + RCVM0200.SndJobNbr + q + rb ;

And the written to the file:

len = %len(%trimr(line));
callp write(fd: %addr(line): len);


but the "} and ": character sequences end up with unexpected values in the string.

Using the hex constants for the curly braces made no difference in the output.

Pete Helgren
Value Added Software, Inc
www.asaap.com
www.opensource4i.com


On 4/13/2011 1:56 PM, Pete Helgren wrote:
Same result. I don't think it is an artifact of edtf because if I map
the folder in Windows and view the file, I see the "weird" characters as
well in wordpad.

Looks like ": also formats to a strange character as well ('s w').

Pete Helgren
Value Added Software, Inc
www.asaap.com
www.opensource4i.com


On 4/13/2011 1:22 PM, Luis Rodriguez wrote:
Pete,

Check out this nice EBCDIC reference page:

http://www.rpgworld.com/rpg-world/showascii

<http://www.rpgworld.com/rpg-world/showascii>Regards,

Luis Rodriguez
IBM Certified Systems Expert — eServer i5 iSeries
--



On Wed, Apr 13, 2011 at 2:49 PM, Luis Rodriguez<luisro58@xxxxxxxxx> wrote:

Pete,

It seems a character mapping error.... What happens if you use the hex
value for the curly braces (e.g. } = x'D0' ) ?

HTH,
Luis Rodriguez
IBM Certified Systems Expert — eServer i5 iSeries
--





As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.