using COM to call OW BSFN - does it adhere to security model

andy_smith

Well Known Member
Hi List,

If a OneWorld business function / API is called from a 3rd party system
via a COM object, would it invoke the foundation and adhere to the
security workbench model ?

(if a connection come in from COM say to update a customer record, would
it need to supply a OneWorld user credentials - as it would need to if
it was to be able to obey security rules etc).

Anyone any ideas ?




Andy Smith
Technical Consultant


WHITEHOUSE

Consultants

http://www.whitehouse-consult.co.uk

Office: 01564 711037
Direct: 01159 825987
Mobile: 07949 603770

E-Mail: [email protected]




Andy Smith
Whitehouse Consultants
Win2K SQLServer7 Xe
 
I don't know any way to invoke OW Api without checking the security layer of JDE. Invoking Com objects, or Java, or C API need always to open first a JDE session with a user/password/environment ; the session handle is a necessary parameter when invoking a com object.
For instance in VB :
SessionID = COMConnector.Login(frm_User, frm_Pwd, frm_Envt)
Set GenerateTable = COMConnector.CreateBusinessObject("B9800200.GenerateTable", SessionID)
 
Back
Top