Siebel Open UI, Tools, Scripting and EAI (MOSC)

MOSC Banner

Siebel EAI invocation through VBA

edited Dec 16, 2016 12:25AM in Siebel Open UI, Tools, Scripting and EAI (MOSC) 1 commentAnswered

We want to post XML messages to Siebel EAI ObjMgr through SiebelQuery and SiebelUpsert methods of the EAI in form of

SWEExtSource=SiebelUpsert&SWEExtCmd=Execute&UserName=PRASADBD&Password=PRASADBD@1&SWEExtData=

We want to do this through VBA code as below

Dim httpTarget As New MSXML2.XMLHTTP

Dim strUID As String

Dim strPWD As String

strURL_ExecInline = "http://10.88.35.79:6100/eai_enu/start.swe?"

strUID = "PRASADBD"

strPWD = "PRASADBD@1"

httpTarget.Open "POST", strURL_ExecInline, False

httpTarget.setRequestHeader "Content-type", "application/x-www-form-urlencoded"

strReqNew = "SWEExtSource=SiebelUpsert&SWEExtCmd=Execute&UserName=" & strUID & "&Password=" & strPWD & "&SWEExtData="

strReqNew = strReqNew & "<?xml version='1.0' encoding='UTF-8'?><?Siebel-Property-Set EscapeNames='false'?>"

strReqNew = strReqNew & strRequest

Tagged:

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center