×
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.
Whatever you do, don't "hover" over the variable. I've done that by accident with large data structures and it locks RDI (v9.1)
-----Original Message-----
From: WDSCI-L [mailto:wdsci-l-bounces@xxxxxxxxxxxx] On Behalf Of Buck Calabro
Sent: Wednesday, January 06, 2016 1:38 PM
To: wdsci-l@xxxxxxxxxxxx
Subject: Re: [WDSCI-L] RDI 9.5.0.2 cannot display Large variable like Green Screen... <shock>
On 1/6/2016 11:56 AM, Ken Killian wrote:
Working with a Microsoft Developer, and I am trying to see data returned from a web-service that is over 32K in size....
Using Microsoft, he is getting back the correct data, but trying debug the using RDI 9.5.0.2 I am limited to 1,024 bytes....
I try doing a monitor "MyVariable:C 5000" and only returns a maximum of 4,095. <Perplexed Look>
Same.
9.5.0.2, Win 7 32-bit
dcl-s bigfield char(65000) inz(*all'1234567890');
monitor bigfield:c 5000
The Monitors View does not show 5k characters. Too lazy to count them.
Double click it, to be able to change the value. This window says
Offset: 0 Length: 4095 and in fact, the last characters shown are
'12345' so I believe that it really is truncated to 4095 bytes.
I have similar behaviour with bigfield:c 10000; the change window stops
at 4095 bytes.
monitor %substr(bigfield 5001 10) shows 1234567890 as expected.
Double click to change shows what seems to be the right characters, but
actually changing them results in Server: CPF7E12 Identifier does not exist.
Sounds like a bug (for the truncation) and maybe an RFE (to be able to
change a substring).
As an Amazon Associate we earn from qualifying purchases.