I have a COM DLL written in Dot Net having stored procedure to call the POS terminal where we pass amount as parameter and the POS returns transaction data. I did this with ActiveX on a page with Java Script and it works perfectly since the DLL is on the Client side.
Now I need to achieve the same with the Oracle forms in 10g , but I understand it requires a PJC which will be able to call the DLL on the local client, here I am confused on how do I achieve this.
Can you please help me on the below, so the below are the scenario
1. There is a field in oracle form having the amount and a button pay by POS
2. When we press this button the form should call the DLL which is in client PC in windows/system32 and pass this amount to the stored procedure name getauth.
3. The DLL will invoke the terminal and terminal will then return some values which needed to be displayed on the form.
Any Help on this please let me know.