RE: Jar file internals?

2005-08-02 Thread Steve Davis
I would hope the schema\src directory is not needed for validation or
parsing.
We will try deleting the src and see what happens.

-Original Message-
From: Jacob Danner [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 01, 2005 6:38 PM
To: user@xmlbeans.apache.org
Subject: RE: Jar file internals?


I don't think any. 
All of the files beginning with schema contain the .xsb files that
maintain sync with the xml infoset. I'm not sure what would happen if
you deleted those, but I'm sure things like validate and parse would
fail.
  

-Original Message-
From: Steve Davis [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 01, 2005 3:28 PM
To: user@xmlbeans.apache.org
Subject: Jar file internals?

Which parts of the jar file generated by scomp are needed for runtime
execution? I am seeing directories:
com\...
META-INF\...
schema\element\...
schema\javaname\...
schema\namespace\...
schema\src\...
schema\system\...
schema\type\...

Which of these directories can be safely removed without impacting the
application at runtime?



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Jar file internals?

2005-08-02 Thread Cezar Andrei
The directory schema/src is not needed for validation or parsing, but
the .xsb files are needed.

The src is included because there are applications that need the source
file of a given schema type.

If you don't use SchemaComponent.getSourceName() you probably don't use
the files in schema\src. 

But remember, all the info from the schema files is still in the xsb
files in a binary form and it's not impossible to infer an equivalent
schema file.

Cezar

 -Original Message-
 From: Steve Davis [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, August 02, 2005 11:09 AM
 To: user@xmlbeans.apache.org
 Subject: RE: Jar file internals?
 
 I would hope the schema\src directory is not needed for validation or
 parsing.
 We will try deleting the src and see what happens.
 
 -Original Message-
 From: Jacob Danner [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 6:38 PM
 To: user@xmlbeans.apache.org
 Subject: RE: Jar file internals?
 
 
 I don't think any.
 All of the files beginning with schema contain the .xsb files that
 maintain sync with the xml infoset. I'm not sure what would happen if
 you deleted those, but I'm sure things like validate and parse would
 fail.
 
 
 -Original Message-
 From: Steve Davis [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 3:28 PM
 To: user@xmlbeans.apache.org
 Subject: Jar file internals?
 
 Which parts of the jar file generated by scomp are needed for runtime
 execution? I am seeing directories:
   com\...
   META-INF\...
   schema\element\...
   schema\javaname\...
   schema\namespace\...
   schema\src\...
   schema\system\...
   schema\type\...
 
 Which of these directories can be safely removed without impacting the
 application at runtime?
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Jar file internals?

2005-08-02 Thread Steve Davis
Thank you Cezar

-Original Message-
From: Cezar Andrei [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 02, 2005 12:42 PM
To: user@xmlbeans.apache.org
Subject: RE: Jar file internals?


The directory schema/src is not needed for validation or parsing, but
the .xsb files are needed.

The src is included because there are applications that need the source
file of a given schema type.

If you don't use SchemaComponent.getSourceName() you probably don't use
the files in schema\src. 

But remember, all the info from the schema files is still in the xsb
files in a binary form and it's not impossible to infer an equivalent
schema file.

Cezar

 -Original Message-
 From: Steve Davis [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, August 02, 2005 11:09 AM
 To: user@xmlbeans.apache.org
 Subject: RE: Jar file internals?
 
 I would hope the schema\src directory is not needed for validation or 
 parsing. We will try deleting the src and see what happens.
 
 -Original Message-
 From: Jacob Danner [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 6:38 PM
 To: user@xmlbeans.apache.org
 Subject: RE: Jar file internals?
 
 
 I don't think any.
 All of the files beginning with schema contain the .xsb files that 
 maintain sync with the xml infoset. I'm not sure what would happen if 
 you deleted those, but I'm sure things like validate and parse would 
 fail.
 
 
 -Original Message-
 From: Steve Davis [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 01, 2005 3:28 PM
 To: user@xmlbeans.apache.org
 Subject: Jar file internals?
 
 Which parts of the jar file generated by scomp are needed for runtime 
 execution? I am seeing directories:
   com\...
   META-INF\...
   schema\element\...
   schema\javaname\...
   schema\namespace\...
   schema\src\...
   schema\system\...
   schema\type\...
 
 Which of these directories can be safely removed without impacting the

 application at runtime?
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Jar file internals?

2005-08-01 Thread Jacob Danner
I don't think any. 
All of the files beginning with schema contain the .xsb files that
maintain sync with the xml infoset. I'm not sure what would happen if
you deleted those, but I'm sure things like validate and parse would
fail.
  

-Original Message-
From: Steve Davis [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 01, 2005 3:28 PM
To: user@xmlbeans.apache.org
Subject: Jar file internals?

Which parts of the jar file generated by scomp are needed for runtime
execution? I am seeing directories:
com\...
META-INF\...
schema\element\...
schema\javaname\...
schema\namespace\...
schema\src\...
schema\system\...
schema\type\...

Which of these directories can be safely removed without impacting the
application at runtime?



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]