Web Services Article Section Index
Query Neo4j with Cypher using the REST API
Run Java Apps on the Windows Azure Cloud Platform
Learn how to use the robust set of tools bundled in the Windows Azure SDK for Java.
Using SOAP with Java | Testing the Installation
Once you have followed the previous instructions, we can test your installation by accessing the URL: http://localhost:8080/soap/admin. You will see a default admin page for Apache SOAP coming up. ...more
Using SOAP with Java
Hello welcome to the first part of my 3 series articles on developing SOAP based applications using Java. This series is not a detailed description of SOAP protocol but just a quick-start tutorial ...more
Using SOAP with Java | Binary Data Types
Apache SOAP implementation also allows you to send binary-data in one of the following forms
Using SOAP with Java | Serialization and Deserialization
Welcome back to part two of the series. Hope you had a nice coding time and had no major problem in deploying your first SOAP application. If you had one, it is most likely a classpath related prob...more
Using SOAP with Java | The Client
Once you have followed the previous instructions, we can test your installation by accessing the URL: http://localhost:8080/soap/admin. You will see a default admin page for Apache SOAP coming up. ...more
Using SOAP with Java | The Client | Part 2
Now we come to the most important part of writing the client. As described in previous sections, the client now has the added responsibilities of defining the type mappings and the Serializer/DeS...more
Using SOAP with Java | Writing a Deserializer
Deserialization is the reverse process of constructing Java objects out of the XML instance. In the SOAP context, to write a Deserializer we will traverse through a DOM Node of the XML instance of ...more
Using SOAP with Java | Writing Your Own Serializers and Deserializers
Welcome back again to the last part of this three series article on using SOAP with Java. In this installment, you examine the concept of writing your own Serializers and Deserializers.