Last post we looked at how to write a device side agent. I am uploading the source for file viewer written using CoreCon API's.
How to use
I have created the RemoteAgent.xsl package for Armv4i architecture only. If you want to work in any other architecture then you need to build the RemoteAgen.sln in the required architecture. Add a Packagetype entry in the Remoteagent.xsl for that architecture. In case you want to add support for X86, then add the following inside the Packagetypecontainer (in RemoteAgent.xsl)
<PACKAGETYPE Name="x86" ID="x86" Protected="True"> <PROPERTYCONTAINER> <PROPERTY ID="RemotePath" Protected="True">%CSIDL_WINDOWS%</PROPERTY> <PROPERTY ID="RootPath" Protected="True">D:\temp\x86</PROPERTY> <PROPERTY ID="CommandLine" Protected="True"></PROPERTY> <PROPERTY ID="CPU" Protected="True">x86</PROPERTY> <PROPERTY ID="Host" Protected="True">RemoteAgent.exe</PROPERTY> </PROPERTYCONTAINER> <FILECONTAINER> <FILE ID="RemoteAgent.exe" /> </FILECONTAINER></PACKAGETYPE>
Place the remoteagent.exe built for X86 in D:\temp\X86 directory.
--
Anand R