Difference between revisions of "NoAuth usecase 2"

From i2Rest
Jump to: navigation, search
m (Pavel.lobko moved page NoAuth-usecase-2 to NoAuth usecase 2 without leaving a redirect)
Line 4: Line 4:
 
   DCMCLIENT(MYCLIENT) RECVLOG('/home/btpl/recv.log') SENTLOG('/home/btpl/sent.log')  
 
   DCMCLIENT(MYCLIENT) RECVLOG('/home/btpl/recv.log') SENTLOG('/home/btpl/sent.log')  
 
   AUTHMETHOD(*NONE)                                                                           
 
   AUTHMETHOD(*NONE)                                                                           
[[File:Noauth-2.png]]
+
[[File:Noauth-2.png|500px]]
  
 
Dealing with SSL/TLS secured resources you have to setup your IBM i DCM client.<br>
 
Dealing with SSL/TLS secured resources you have to setup your IBM i DCM client.<br>
 
Result of a request could be checked in a joblog and/or printer output file, according to a value of «Output log events to» parameter.<br>       
 
Result of a request could be checked in a joblog and/or printer output file, according to a value of «Output log events to» parameter.<br>       
 
All the data transferred from/to remote server will be saved to log files specified in parameters «Log recv messages» and «Log sent messages».<br>
 
All the data transferred from/to remote server will be saved to log files specified in parameters «Log recv messages» and «Log sent messages».<br>
[[File:Noauth-log.png]]
+
[[File:Noauth-log.png|500px]]
  
 
----
 
----
 
[[I2Rest_Client|Back to i2Rest Client]]
 
[[I2Rest_Client|Back to i2Rest Client]]
 +
[[I2Rest_Client_Usercases|Back to Usecases]]

Revision as of 15:54, 12 April 2020

Lets exemine some more complicated example:

 I2REST COMMAND(*GET) URL('https://github.com') OUTPUT(*BOTH) 
 DCMCLIENT(MYCLIENT) RECVLOG('/home/btpl/recv.log') SENTLOG('/home/btpl/sent.log') 
 AUTHMETHOD(*NONE)                                                                          

Noauth-2.png

Dealing with SSL/TLS secured resources you have to setup your IBM i DCM client.
Result of a request could be checked in a joblog and/or printer output file, according to a value of «Output log events to» parameter.
All the data transferred from/to remote server will be saved to log files specified in parameters «Log recv messages» and «Log sent messages».
Noauth-log.png


Back to i2Rest Client Back to Usecases