Python Forum
need help in adding timestanp zeep wsse
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
need help in adding timestanp zeep wsse
#3
Hi Buran,

following is the python code used but it gives "The security token is not valid." error
The webservice accepts Timestamp as part of the security tocken
I have searched zeep dicumentation but there is no mention of the wsse Timestamp token

from datetime import datetime
from datetime import timedelta
from zeep import Client
from zeep.wsse import UsernameToken
from lxml import etree
from zeep.wsse import utils
#username_token=UsernameToken('usernmae', 'Welcome.1')
#Timestamp_token=Timestamp(Created=datetime.now(),Expires=datetime.now()+timedelta(days=1))

url="/esswebservice?WSDL"
client = Client(url,wsse=UsernameToken('username', 'Welcome.1'))

result = client.service.submitInstantRecurringRequest(description='TestESS1',jobDefinitionId = {
'name': 'BulkImportJob',
'packageName': '/oracle/apps/ess/cdm/foundation/bulkImport/',
'type': 'JOB_DEFINITION'
} ,iCalSchedule='FREQ=DAILY;INTERVAL=2;',application='CrmEss',requestedStartTime=datetime.now(),requestedEndTime=datetime.now()+timedelta(days=1), requestParameters={} )
print (result) ## shows the details of this service
Reply


Messages In This Thread
RE: need help in adding timestanp zeep wsse - by sachingle - Nov-07-2018, 09:47 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Zeep AWS problem centorillion 2 1,925 Nov-10-2022, 09:36 PM
Last Post: Larz60+
  Python zeep offline installation on RHEL akinmhmt 0 2,039 Mar-26-2020, 09:04 AM
Last Post: akinmhmt
  Adding markers to Folium map only adding last element. tantony 0 2,175 Oct-16-2019, 03:28 PM
Last Post: tantony
  Zeep lib, encrypt soap body miha1234 0 2,881 Sep-12-2019, 07:52 AM
Last Post: miha1234

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020