Hi all,
I'm new to nusoap and I have to create a document/literal server... could you help me?
the main idea is:
1 the client send a soap message with the request and 2 parameters (maxPrice, contract) (has to be doc/lit)
2 the server returns a soap message with the response (this too doc/lit)
--> the response is this:
<houseListsing>
<house><street>54th street</street><price>100000</price></house>
<house><street>main street</street><price>200000</price></house>
</houseListing>
|
3 the client parse the xml and writes some html
--> html
<table>
<tr><td>street</td><td>price</td></tr>
<tr><td>54th street</td><td>100000</td></tr>
<tr><td>main street</td><td>200000</td></tr>
</table>
|
could someone provide me some code? or at least some resources? It's really hard to find something out there about doc/lit servers with nusoap or php soap ext.[/code]