...
Codeblock |
---|
language | html/xml |
---|
title | Response |
---|
|
<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
...
Abfrage
Codeblock |
---|
language | html/xml |
---|
title | Request |
---|
|
<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 |
---|
language | html/xml |
---|
title | Response |
---|
|
<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> |
Eingeschränkte Abfrage
Codeblock |
---|
language | html/xml |
---|
title | Request |
---|
|
<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>6085</value>
<condition>></condition>
<orClauseGroup>OR1</orClauseGroup>
</field>
<field id ="Name">
<value>Schangnau</value>
<condition>=</condition>
<orClauseGroup>OR1</orClauseGroup>
</field>
<field id ="Canton">
<value>BE</value>
<condition>=</condition>
</field>
</search>
</ws:getForms>
</soapenv:Body>
</soapenv:Envelope> |
Resultierende Query (Pseudo): ... WHERE (PLZ > '6085' OR PLACE_LONG= 'Schangnau') AND CANTON = 'BE'
Codeblock |
---|
language | html/xml |
---|
title | Response |
---|
|
<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>2</size>
<totalSize>2</totalSize>
</info>
<row>
<field id="PLZ">6197</field>
<field id="Name">Schangnau</field>
<field id="Canton">BE</field>
</row>
<row>
<field id="PLZ">6086</field>
<field id="Name">Hasliberg Reuti</field>
<field id="Canton">BE</field>
</row>
</result>
</ns2:getFormsResponse>
</S:Body>
</S:Envelope> |
...