Difference between revisions of "NoAuth usecase 1"

From i2Rest
Jump to: navigation, search
m (Pavel.lobko moved page NoAuth to NoAuth-usecase)
Line 1: Line 1:
= Http/Https request without authorization =
+
= Http/Https request without authorization usecases =
  
 
+
===  Simple Http request ===
With <code>*None</code> [[Authentication method]] chosen, all you have to do - specify URI to be requested and request type. <br>
+
The simpliest example. Just choose <code>*None</code> [[Authentication method]], specify URI to be requested and request type - that's all. <br>
 
[[File:Noauth-1.png]]
 
[[File:Noauth-1.png]]
 
   I2REST COMMAND(*GET) URL('http://apache.org') AUTHMETHOD(*NONE)  
 
   I2REST COMMAND(*GET) URL('http://apache.org') AUTHMETHOD(*NONE)  
  
 +
=== Https request with logging ===
 
Lets exemine some more complicated example:
 
Lets exemine some more complicated example:
 
   I2REST COMMAND(*GET) URL('https://github.com') OUTPUT(*BOTH)  
 
   I2REST COMMAND(*GET) URL('https://github.com') OUTPUT(*BOTH)  

Revision as of 11:38, 6 April 2020

Http/Https request without authorization usecases

Simple Http request

The simpliest example. Just choose *None Authentication method, specify URI to be requested and request type - that's all.
Noauth-1.png

 I2REST COMMAND(*GET) URL('http://apache.org') AUTHMETHOD(*NONE) 

Https request with logging

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