Welcome to ECF Forum Sign in | Join | Faq

Electronic Court Filing

Started by mgalaty at 06-12-2008 8:06 AM. Topic has 1 replies.

Print Search
Sort Posts:    
   06-12-2008, 8:06 AM
mgalaty is not online. Last active: 6/12/2008 10:59:37 PM mgalaty

Top 10 Posts
Joined on 06-12-2008
Posts 7
Sample "Review Filing" Message?
Reply Quote

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.

 


   Report 
   07-08-2008, 6:57 PM
mgalaty is not online. Last active: 6/12/2008 10:59:37 PM mgalaty

Top 10 Posts
Joined on 06-12-2008
Posts 7
Re: Sample "Review Filing" Message?
Reply Quote

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 Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

   mytest(displayXMLDoc, "C:\ecf\ECF-3.1-CoreFilingMessage.xsd")

End Sub

 

' 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)

   Dim eventHandler As ValidationEventHandler = New ValidationEventHandler(AddressOf ValidationEventHandler)

   Try

   myDocument.Validate(eventHandler)

Catch ex As Exception

   MsgBox(ex.ToString)

End Try

End Sub

 

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

End Sub


   Report 
ECF Forum » Administrators » Electronic Cour... » Re: Sample "Review Filing" Message?

Powered by Community Server, by Telligent Systems