...
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> |
Eingeschränkte Abfrage mit Verwendung der orClauseGroup
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>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> |
...
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>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> |
...
Abfrage der JAXForms Standard-Formulare (Standard XMLDBMapping)
Codeblock | ||||
---|---|---|---|---|
| ||||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.eforms.jaxfront.com/">
<soapenv:Header>
<ws:token>30de6360-c1e4-4e72-a3c2-b0b7f0f2b2b1</ws:token>
</soapenv:Header>
<soapenv:Body>
<ws:getForms>
<countTotal>true</countTotal>
<includeXML>false</includeXML>
<search>
<field id ="Type">
<value>DEMO-FEEDBACK</value>
</field>
<field id ="Sender">
<value>rwu@jaxfront.com</value>
</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>1</size>
<totalSize>1</totalSize>
</info>
<row>
<field id="Type">DEMO-FEEDBACK</field>
<field id="Sender">rwu@jaxfront.com</field>
<field id="Access ID">39582CBB5FB8324853956894768E5A0F</field>
<field id="UUID">150</field>
<field id="ID">DEMO-FEEDBACK-1048</field>
<field id="Created">2012-10-26T12:13:39.0</field>
<field id="Last Update">2012-10-26T12:13:39.0</field>
<field id="Status">2</field>
<field id="Owner">anonymous</field>
<field id="Mandator">5</field>
<field id="Parent"/>
<field id="Info"/>
<field id="Group">6</field>
</row>
</result>
</ns2:getFormsResponse>
</S:Body>
</S:Envelope> |