Re: [Oorexx-devel] does REXX Support Unicode on AIX

2008-06-19 Thread David Ruggles
shelling out and using iconv might be an option on Linux it's a GNU encoding converter. HTH Thanks, David Ruggles CCNA MCSE (NT) CNA A+ Network Engineer Safe Data, Inc. (910) 285-7200[EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

Re: [Oorexx-devel] Playing with the stream library in Rick's sandbox

2008-06-19 Thread Mark Miesfeld
On Thu, Jun 19, 2008 at 11:45 AM, Rick McGuire <[EMAIL PROTECTED]> wrote: > Mark, > > If you get a chance, any changes to the Windows version of SysFile > might also be needed in the unix version as well. I've not gotten to > the point of debugging anything on linux yet, but no sense in > debuggi

Re: [Oorexx-devel] does REXX Support Unicode on AIX

2008-06-19 Thread Mark Miesfeld
On Thu, Jun 19, 2008 at 11:22 AM, yug k <[EMAIL PROTECTED]> wrote: > > Hi All, > > I am trying to handle unicode characters in AIX wiht the following code but > it doesn't seem to work ( data is unicode string ) > > rc = SysFromUnicode(data,"THREAD_ACP",,,"dataStem"); SysFromUnicode is only supp

Re: [Oorexx-devel] does REXX Support Unicode on AIX

2008-06-19 Thread David Ashley
Yug - That external function is only available on Windows. It is not available on any of the *nix version of ooRexx. Thanks, W. David Ashley IBM Systems and Technology Group Lab Services Open Object Rexx Team Mobile Phone: 512-289-7506

Re: [Oorexx-devel] Playing with the stream library in Rick's sandbox

2008-06-19 Thread Rick McGuire
Mark, If you get a chance, any changes to the Windows version of SysFile might also be needed in the unix version as well. I've not gotten to the point of debugging anything on linux yet, but no sense in debugging some of these problems twice. Rick On Thu, Jun 19, 2008 at 12:34 PM, Mark Miesfel

[Oorexx-devel] does REXX Support Unicode on AIX

2008-06-19 Thread yug k
Hi All, I am trying to handle unicode characters in AIX wiht the following code but it doesn't seem to work ( data is unicode string ) rc = SysFromUnicode(data,"THREAD_ACP",,,"dataStem"); If (rc = 0) Then data = dataStem.!TEXT; else Do; call logmsg "!!!

Re: [Oorexx-devel] Playing with the stream library in Rick's sandbox

2008-06-19 Thread Rick McGuire
One correction to my advice on the about setting the data breakpoint. You want to set it using "&this->bufferAddress", not "this->bufferAddress". The this shouldn't really be necessary. That's probably why it didn't work for you before. Rick On Thu, Jun 19, 2008 at 12:34 PM, Mark Miesfeld <[EMAI

Re: [Oorexx-devel] Playing with the stream library in Rick's sandbox

2008-06-19 Thread Mark Miesfeld
On Thu, Jun 19, 2008 at 8:07 AM, Rick McGuire <[EMAIL PROTECTED]> wrote: > See my comments below. > > On Thu, Jun 19, 2008 at 10:08 AM, Mark Miesfeld <[EMAIL PROTECTED]> > wrote: > > ... I just took out the position--; line > > > > All of those look reasonable. Thanks for digging in to this

Re: [Oorexx-devel] Playing with the stream library in Rick's sandbox

2008-06-19 Thread Rick McGuire
See my comments below. On Thu, Jun 19, 2008 at 10:08 AM, Mark Miesfeld <[EMAIL PROTECTED]> wrote: > This is mostly for Rick, posted here for other's that may be interested. > > I worked my way through the new stream library about as far as I can go. I > have a list of the things I found for when

[Oorexx-devel] Playing with the stream library in Rick's sandbox

2008-06-19 Thread Mark Miesfeld
This is mostly for Rick, posted here for other's that may be interested. I worked my way through the new stream library about as far as I can go. I have a list of the things I found for when you get back to it. Hopefully, each one will save you a few minutes of investigation. Many of the plac