IP Cam

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I really appreciate any help you can provide me....... The issue is about implementing an application for pocket PC (imate) to access an IP cam through the web and display the streaming video and control its tilt/pan feature. As for the cam it has only this piece of javascript to be accessed:

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>");


I found out that I should use COM programming in VS.net to be able to access it from VB.net?????????????Is this possible ....
Any help plsssssssssssssssssssssssss.
 
You've asked this several times over the past few weeks and the answer has
not changed. COM interop is not supported in the CF so you'll need either
CFCOM from Odyssey or to write your own unmanaged wrapper for the object.
There is also still no way to emit the html in any meaningful way and have
it work.

-Chris


samsam said:
I really appreciate any help you can provide me....... The issue is about
implementing an application for pocket PC (imate) to access an IP cam
through the web and display the streaming video and control its tilt/pan
feature. As for the cam it has only this piece of javascript to be
accessed:
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>");


I found out that I should use COM programming in VS.net to be able to
access it from VB.net?????????????Is this possible ....
 
Worse still, the COM object used to display the streamed video from the
camera is an ActiveX control and that's DEFINITELY not supported by the .NET
Compact Framework.

--Neil
 
Back
Top