I am trying to call a VB DLL from a JSP page and i reading about JACOB.
My VB DLL Code :
Set objIMCUser = CreateObject("ESMC.MCUser", sDomain)
objIMCUser.ChangeUserPassword sUserName,sOldPassword,sNewPassword
Here sDomain is the name of the network server where the object is to be created.
I am trying to get this done via JACOB and after researching i found that i would need
to call something like this :
ActiveXComponent ax = new ActiveXComponent("ESMC.MCUser");
Dispatch SMSObj = (Dispatch) ax.getObject();
and then pass the parameters via the Dispatch method.
My questions is how would i incorporate the sDomain in this since i would have the JSP page in WebSpehere and the VB DLL will be registered in the WebSphere server but the
change password would be done in the sDomain name server.
Any guidance or help would be highly appreciated.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am trying to call a VB DLL from a JSP page and i reading about JACOB.
My VB DLL Code :
Set objIMCUser = CreateObject("ESMC.MCUser", sDomain)
objIMCUser.ChangeUserPassword sUserName,sOldPassword,sNewPassword
Here sDomain is the name of the network server where the object is to be created.
I am trying to get this done via JACOB and after researching i found that i would need
to call something like this :
ActiveXComponent ax = new ActiveXComponent("ESMC.MCUser");
Dispatch SMSObj = (Dispatch) ax.getObject();
and then pass the parameters via the Dispatch method.
My questions is how would i incorporate the sDomain in this since i would have the JSP page in WebSpehere and the VB DLL will be registered in the WebSphere server but the
change password would be done in the sDomain name server.
Any guidance or help would be highly appreciated.