Home The Company Publications Products Links Tips Jobs

RPC Server - Truncated Parm List

Last update: 21 September 2008

Question

The display of the parameter list has been truncated and cannot be viewed. How can I prevent this bug or feature?

Answer

To define the subcommands in one RPC statement inside of a pair of parantheses, for example (....,....), the subcommand display will be truncated at the end of the output line.

Define the subcommands in short and separate RPC statements.


Leads to truncation:

//CMPRMIN  DD *                                              
  .......       
  RPC=(SERVER=ON,RPCSIZE=9000,ACIVERS=4,LOGONRQ=ON,          
  SRVNODE='xxx.187.32.2:18235:TCP',                          
  SRVUSER='*NSC',SRVNAME=STDEVL1,MAXBUFF=4992,TRACE=0)       

CMPRINT: 
RPC=(SERVER=ON....2:18235:TCP',  SRVUSER='*NSC',SRVNAME=STDEVL1,MAXBUFF=4992,TR


Better:

//CMPRMIN  DD *                                                         
  .....                            
  RPC=(SERVER=ON,RPCSIZE=9000,ACIVERS=4,LOGONRQ=ON),                    
  RPC=(SRVNODE='xxx.187.32.2:18235:TCP'),                               
  RPC=(SRVUSER='*NSC',SRVNAME=STDEVT1),                                 
  RPC=(MAXBUFF=4992,NTASKS=5,TRACE=1)                                   


CMPRINT: 
.....                                                                    
RPC=(SERVER=ON,RPCSIZE=9000,ACIVERS=4,LOGONRQ=ON),   
RPC=(SRVNODE='xxx.187.32.2:18235:TCP'),              
RPC=(SRVUSER='*NSC',SRVNAME=STDEVT1),                
RPC=(MAXBUFF=4992,NTASKS=5,TRACE=1),                 


Top Page


Back to EntireX Tips, Tricks, Techniques -- Overview