is it possible to build bridging scanner and Active Directory with scanner API (xml) using web2py?
e.g. xml for Menu to choosing system
<?xml version="1.0" encoding="UTF-8" ?>
<SerioCommands version="1.0">
<DisplayForm>
<Script>
<![CDATA[
<UiScreen>
<Title>Select Job</Title>
<LinkScreen>
<LinkControl>
<LinkItem href="./scan2ftp.xml">
<Label>Scan</Label>
</LinkItem>
<LinkItem href="./copy.xml">
<Label>Copy</Label>
</LinkItem>
</LinkControl>
</LinkScreen>
</UiScreen>
]]>
</Script>
</DisplayForm>
</SerioCommands>
e.g. xml for copy
<?xml version="1.0" encoding="utf-8"?>
<SerioCommands version="1.0">
<IoCopy>
<ColorMode>Auto</ColorMode>
<Density>Normal</Density>
<Ratio>100</Ratio>
<Layout>Normal</Layout>
<LayoutOrientation>Landscape</LayoutOrientation>
<Sorting>true</Sorting>
<NumCopies>1</NumCopies>
<JobFinAckUrl>./selesai.xml</JobFinAckUrl>
</IoCopy>
<DisplayInfo>
<Script>
<![CDATA[
<UiScreen infoLevel="Normal">
<IoScreen>
<IoObject>
<Title>Copy</Title>
<Message>executing copy</Message>
</IoObject>
</IoScreen>
</UiScreen>
]]>
</Script>
</DisplayInfo>
</SerioCommands>
e.g. xml for FTP command
<?xml version="1.0" encoding="utf-8"?>
<SerioCommands version="1.0">
<IoScanAndSend>
<TxProfiles>
<Ftp>
<FtpParams>
<FileName>test</FileName>
<User>usertest</User>
<Password>123456789</Password>
<StoreDir>/</StoreDir>
<PassiveMode>true</PassiveMode>
<PortNum>21</PortNum>
</FtpParams>
</Ftp>
</TxProfiles>
<!-- <ScanTray>FB</ScanTray> -->
<ColorMode>Gray</ColorMode>
<Resolution>Low</Resolution>
<!-- <FileType>JPEG</FileType> -->
<FileType>PDF</FileType>
<JobFinAckUrl>./done.xml</JobFinAckUrl>
</IoScanAndSend>
<DisplayInfo>
<Script>
<![CDATA[
<UiScreen>
<IoScreen>
<IoObject>
<Title>Scan2Ftp</Title>
<Message>executing scan2ftp</Message>
</IoObject>
</IoScreen>
</UiScreen>
]]>
</Script>
</DisplayInfo>
</SerioCommands>
thanks and best regards,
stifan