Does anyone have a sample "Review Filing" filing they can send me from the system they are working on? I'd want to see how the CoreMessage, Case-TypeSpecific Message, and the Court-Specific Message are formatted along with some sample attachments might be referenced. The simplest version the better.
Specifically I'd like to see how the package of these are to be assembled. I've been comparing the Portable Document format thinking that is a good example of a package. I am not looking at Web Service communications at this time, only the message formatting.
An explaination of what your individual interpretation of the specification would be interesting also.
Thank you in advance for any replies.
Below is some VB.NET code which I am trying to test the "CoreFilingMessage.xml" against it's XSD. I am getting a System.Xml.XmlSchemaValidationException which is stating "All schemas in the set should be successfully preprocessed prior to compilation." Any ideas? Also still interested in seeing anyone's sample data sets.
Private
mytest(displayXMLDoc,
' based on URL: http://www.vbforums.com/showthread.php?t=528172
Sub mytest(ByVal myDocument As XmlDocument, ByVal schema As String)
'myDocument.Schemas.Add("namespace here or empty string", "C:\someschema.xsd")
myDocument.Schemas.Add("urn:oasis:names:tc:legalxml-courtfiling:schema:xsd:CoreFilingMessage-3.1", schema)
myDocument.Validate(eventHandler)
MsgBox(ex.ToString)
Private Sub ValidationEventHandler(ByVal sender As Object, ByVal e As ValidationEventArgs)
Select Case e.Severity
Case XmlSeverityType.Error
Debug.WriteLine("Error: {0}", e.Message)
Case XmlSeverityType.Warning
Debug.WriteLine("Warning {0}", e.Message)
End Select