...
Codeblock | ||||
---|---|---|---|---|
| ||||
<XMLDBMapping openLinkSupported="false" performInitialSearch="false" sortOrder="desc" tableName="PLZ" useColumnChooser="false" uuidFieldName="ONO" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xmlDBMapping.xsd"> <field> <id>Name</id> <columnName>PLACE_LONG</columnName> <showAsFilter>true</showAsFilter> <showAsColumn>true</showAsColumn> </field> <field> <id>PLZ</id> <columnName>PLZ</columnName> <showAsFilter>false</showAsFilter> <showAsColumn>true</showAsColumn> </field> <field> <id>Canton</id> <columnName>CANTON</columnName> <showAsFilter>true</showAsFilter> <showAsColumn>true</showAsColumn> </field> </XMLDBMapping> |
Seitenweise
...
Abfragen
Codeblock | ||||
---|---|---|---|---|
| ||||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.eforms.jaxfront.com/"> <soapenv:Header> <ws:token>b86d157d-491f-4af0-b0ad-0141c8fe480c</ws:token> </soapenv:Header> <soapenv:Body> <ws:getForms> <formId>ZIP</formId> <countTotal>true</countTotal> <pageSize>10</pageSize> <offset>5329</offset> </ws:getForms> </soapenv:Body> </soapenv:Envelope> |
Codeblock | ||||
---|---|---|---|---|
| ||||
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:getFormsResponse xmlns:ns2="http://ws.eforms.jaxfront.com/">
<result>
<info>
<hasNext>false</hasNext>
<offset>5329</offset>
<pageSize>10</pageSize>
<size>2</size>
<totalSize>5331</totalSize>
</info>
<row>
<field id="Name">Lausanne 1 Dépôt</field>
<field id="PLZ">1000</field>
<field id="Canton">VD</field>
</row>
<row>
<field id="Name">Lausanne</field>
<field id="PLZ">1000</field>
<field id="Canton">VD</field>
</row>
</result>
</ns2:getFormsResponse>
</S:Body>
</S:Envelope> |
Eingeschränkte Suche
Codeblock | ||||
---|---|---|---|---|
| ||||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.eforms.jaxfront.com/">
<soapenv:Header>
<ws:token>b86d157d-491f-4af0-b0ad-0141c8fe480c</ws:token>
</soapenv:Header>
<soapenv:Body>
<ws:getForms>
<formId>ZIP</formId>
<countTotal>true</countTotal>
<search>
<field id ="PLZ">
<value>9656</value>
<condition>>=</condition>
<sortOrder>desc</sortOrder>
</field>
</search>
</ws:getForms>
</soapenv:Body>
</soapenv:Envelope> |
Codeblock | ||||
---|---|---|---|---|
| ||||
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:getFormsResponse xmlns:ns2="http://ws.eforms.jaxfront.com/">
<result>
<info>
<hasNext>false</hasNext>
<offset>0</offset>
<pageSize>100</pageSize>
<size>3</size>
<totalSize>3</totalSize>
</info>
<row>
<field id="PLZ">9658</field>
<field id="Name">Wildhaus</field>
<field id="Canton">SG</field>
</row>
<row>
<field id="PLZ">9657</field>
<field id="Name">Unterwasser</field>
<field id="Canton">SG</field>
</row>
<row>
<field id="PLZ">9656</field>
<field id="Name">Alt St. Johann</field>
<field id="Canton">SG</field>
</row>
</result>
</ns2:getFormsResponse>
</S:Body>
</S:Envelope> |
...