SDE for visual studio.net

  • Thread starter Thread starter Guest
  • Start date Start date
I know that .... but I want to use an application to do that and not browse directly from a the browser. any suggestions????
 
Sure. It look slike a COM object so use CFCOM to wrap it and call it.
Otherwise you can write a C++ DLL to wrap it and P/Invoke into it. The POOM
COM interop sample is a good place to start.

The other option is to see if the OEM has a non-COM based API and P/Invoke
into it.

-Chris


samsam said:
I know that .... but I want to use an application to do that and not
browse directly from a the browser. any suggestions????
 
Thanks Chris,
I am new to COM objects programming....Can you guide me to the resources???pls... or send me any samples.... I appreciate your help......
 
is this sample really useful for me??? cuz the COM object here is an IP cam that should be accessed through web.... the POOM wrapper is accessing outlook which is a local application ?????
 
If you're COM object wraps all the functionality to communicate with the IP
camera then, yes it is a useful example.

--Neil
 
Is there any other sample that deals with a remote object. how can I know what are the functionalities that can be supported???? can it be deduced from the javascript code....If I have to create a class library first how can I specify the functions......???? I am new to all this....:(..........Pls help

the code is:
document.write("<OBJECT ID=\"VaCtrl\" WIDTH=362 HEIGHT=306");
document.write("CLASSID=CLSID:A93B47FD-9BF6-4DA8-97FC-9270B9D64A6C");
document.write("CODEBASE=\"http://24.45.76.223:5004/plugin/h263ctrl.cab#version=1,7,0,5\"
");
document.write("<PARAM NAME=\"Url\"VALUE=\"http://24.45.76.223:5004/cgi-bin/video.vam\">");
document.write("<PARAM NAME=\"VSize\" VALUE=\"SIF\">");
document.write("<PARAM NAME=\"RemoteIP\"
VALUE=\"24.45.76.223:5004\">");
document.write("<PARAM NAME=\"RemotePort\" VALUE=\"5001\">");
document.write("</OBJECT>");
 
Back
Top