| Name: |
Periodic table by symbol |
| Description: |
A set of methods for getting data from the periodic table. |
| SOAP Endpoint URL: |
http://soap.fmui.de/RPC |
| SOAP Action: |
"" (2 double quotes) |
| Method Namespace: |
urn:SpheonJSOAPChemistry |
| Methods: |
getElementBySymbol getNumberlBySymbol getNameBySymbol getMassBySymbol getMeltingPointBySymbol getBoilingPointBySymbol foundBySymbol |
| Parameter: |
String |
| Return: |
getElementBySymbol: ChemistryElement (see WSDL) getNumberBySymbol: String getNameBySymbol: String getMassBySymbol: Double getMeltingPointBySymbol: Double getBoilingPointBySymbol: Double foundBySymbol: String |
| WSDL URL: |
http://soap.fmui.de/chemistry.wsdl |
| Sample applet: |
Sample Chemistry Applet |
| Example SOAP Request: |
<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<ns1:getNameBySymbol xmlns:ns1="urn:SpheonJSOAPChemistry" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<symbol xsi:type="xsd:string">ag</symbol>
</ns1:getNameBySymbol>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope> |
| Example SOAP Response: |
<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<ns1:getNameBySymbolResponse xmlns:ns1="urn:SpheonJSOAPChemistry" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<return xsi:type="xsd:string">Silver</return>
</ns1:getNameBySymbolResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope> |