Not a customer? Click the 'Start a free trial' link to begin a 30-day SaaS trial of our product and to join our community.
Existing Cisco AppDynamics customers should click the 'Sign In' button to authenticate to access the community
07-17-2017 11:57 PM
Hello,
Here's some code that uses the wonderful Requests python library to login and logout of Peoplesoft. I used this to automate a series of iscript calls.
import requests
def PSlogin(baseURL, userid, pwd, lang='ITA'):
params = {'cmd' : 'login', 'languageCd' : lang}
payload = {'userid' : userid, 'pwd' : pwd, 'timezoneOffset' : '-60'}
r = requests.post(baseURL, params=params, data=payload, allow_redirects=False)
return r.cookies
def PSLogout(baseURL, cookies):
params = {'cmd' : 'logout'}
r =requests.post(baseURL, params=params, cookies=cookies)
where baseURL is something like http://mypeoplesoftURL.com/psc/ps/EMPLOYEE/HRMS/.
PSlogin will log into Peoplesoft and return the login cookies. To make requests after calling PSlogin, you have to set the cookies for the request with the ones you got from PSlogin.
Suppose we have a weblib function like this:
Function IScript_Hello()
Local string &Test = %Request.GetParameter("test");
%Response.Write("Hello " | &Test);
End-Function;
a sample Python function that calls the IScript_Hello function inside the weblib WEBLIB_HELLO will be like this:
def getTestResult(baseURL, cookies, test):
sqlURL = baseURL + 's/WEBLIB_HELLO.FUNCLIB.FieldFormula.IScript_Hello'
payload = {'test' : test}
r = requests.post(sqlURL, cookies=cookies, data=payload)
return r.text
baseURL = http://mypeoplesoftURL.com/psc/ps/EMPLOYEE/HRMS/
login_cookies = PSlogin(baseURL,'PS', 'PS')
try:
res = getTestResult(baseURL, login_cookies, 'Andrea')
finally:
PSLogout(baseURL, login_cookies)
Credits: apsource
07-18-2017 12:58 AM
Hi Madison,
Could you please elaborate on what details you need from AppDynamics on the same.Do you need some help
in instrumenting any Python application?
Here are some details on how to do it in case you are looking for the same
https://docs.appdynamics.com/display/PRO43/Python+Agent
Thanks,
Sajna
Thank you! Your submission has been received!
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form