aspose file tools
The moose likes Web Services and the fly likes SOAP & dtds & xsds Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "SOAP & dtds & xsds" Watch "SOAP & dtds & xsds" New topic
Author

SOAP & dtds & xsds

Todd Johnson
Ranch Hand

Joined: Sep 03, 2005
Posts: 61
I'm just getting started with SOAP. We are looking to using SOAP messaging (not RPC) between many devices, platforms, and languages. I know you cannot use DTDs with SOAP, but can you use XML schemas? If not, we'll end up writing a lot of code to verify the messages we send/receive are formed correctly based on the design of our messages.

Thanks!
Todd
Peer Reynders
Bartender

Joined: Aug 19, 2005
Posts: 2906
Yes
XML Schema is an integral part of SOAP web services.
However in production you would typically only validate content received from sources outside of your control to minimize the overhead.

3.4.2 Receiving Requests

4.3.3 Validating XML Documents

Patterns and Strategies for Building Document-Based Web Services


"Don't succumb to the false authority of a tool or model. There is no substitute for thinking."
Andy Hunt, Pragmatic Thinking & Learning: Refactor Your Wetware p.41
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: SOAP & dtds & xsds
 
Similar Threads
How to get document object From SOAP Message?
Code to get SOAP request
Retrieving the SOAP response XML
Axis2: Incoming SOAP messages: logging and validation
Generate SOAP message from Java class