I just wondered if there are any libraries in Java or any other language implementing SOAP over protocol that is not HTTP? I've heard that some project had implemented SOAP over SMTP. Are there any other experiences?
+2
A:
This may be a good starting point. I know it's from 2003 but seems to be dead on the mark in regards to what you're asking for.
MattC
2009-09-14 22:20:06
+2
A:
One of the main features of SOAP 1.2 was the removal of the dependency on HTTP, allowing other transports to be used.
As for java implementations, Spring WebServices supports SOAP 1.2 over HTTP, JMS and SMTP. See section 5.3 of the docs.
skaffman
2009-09-14 22:25:55
+1
A:
Axis 1.4 has transport handlers not just for HTTP, but also for JMS and SMTP/POP3. If you look carefully, the Mail protocol is not recommended for production.
Vineet Reynolds
2009-09-14 23:22:26