Hi all,
I have been asked to add image retreval from a CCTV camera to our application. I have figured out the indexing of files and how to manipulate them once an image file has been recovered from the camera however I cannot seem to get clarion to recover the file from a location on our local network.
E.G. This works.....
OBVIOUSLY...
however this doesn't
OR this......
OR this....
OR this.....
Am I even approaching this in the correct way? - Do I need any add-ons such as I.P. Driver v2.0.
Any help greatly recieved
Normm.
I have been asked to add image retreval from a CCTV camera to our application. I have figured out the indexing of files and how to manipulate them once an image file has been recovered from the camera however I cannot seem to get clarion to recover the file from a location on our local network.
E.G. This works.....
Code:
COPY('C:\Bespoke62\SpycamTest\Images\image.jpg','C:\Bespoke62\SpycamTest\ImageArchive\image2.jpg')
however this doesn't
Code:
COPY('//192.168.154.7/jpg/image.jpg','C:\Bespoke62\SpycamTest\ImageArchive\image2.jpg')
Code:
COPY('\\192.168.154.7\jpg\image.jpg','C:\Bespoke62\SpycamTest\ImageArchive\image2.jpg')
Code:
COPY('http:\\192.168.154.7\jpg\image.jpg','C:\Bespoke62\SpycamTest\ImageArchive\image2.jpg')
Code:
COPY('[URL unfurl="true"]http://192.168.154.7/jpg/image.jpg','C:\Bespoke62\SpycamTest\ImageArchive\image2.jpg')[/URL]
Any help greatly recieved
Normm.