Title: | DECWINDOWS 26-JAN-89 to 29-NOV-90 |
Notice: | See 1639.0 for VMS V5.3 kit; 2043.0 for 5.4 IFT kit |
Moderator: | STAR::VATNE |
Created: | Mon Oct 30 1989 |
Last Modified: | Mon Dec 31 1990 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 3726 |
Total number of notes: | 19516 |
Hi, a client of my complains that While copying a lot of PIXMAPs with DWT$COPY_AREA he gets the following message (): x- error: bad implimentation - server report implimentation error. request major code 65 request minor code. resource id 0x500340 error serial #9905 current serial #9909 xio! none translateable vms error code: 0x2dba002, VMS MESSAGE %DECW-E-CNXABORT server connection aborted.ACHIM %Xlib-F-IOERROR, xlib io error Is it a tuning problem or there is more to it? Thanks and Happy New Year. *-Doron-*
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
1969.1 | DECWIN::FISHER | Burns Fisher 381-1466, ZKO3-4/W23 | Tue Dec 26 1989 14:05 | 15 | |
That message is coming from a PolyLine request (major opcode 65) not from CopyArea. The most common reason for this message (on VMS) is that a relative coordinate is specified which is greater than 32K. There is a restriction in the server: unsigned numbers are sometimes treated as signed, which causes big trouble for shorts which have the top bit set. Usually having such a large number in a request is a bug, so we have not been too concerned about fixing it, especially since fixing it might incur a performance penalty in the common cases. You might want to try making a call to XSynchronize in the code before you get the the trouble area. This will cause all messages to be reported concurrently with the execution of the call that caused them. Burns |