[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2008-01-31 Thread tobiaskrais
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Thu Jan 31 10:00:23 + 
2008 ---
Here a solution: add following lines in your
ProtocolHandler.dispatch(URL aURL, PropertyValue[] lArgs) method:
-%-
ClassLoader clazzLoader = ProtocolHandler.class.getClassLoader();
Thread.currentThread().setContextClassLoader(clazzLoader);
-%-
The current thread comes with the OOo class loader. These lines set the
classloader with the classes you defined in your MANIFEST.MF of the jar
with the ProtocolHandler in your extension. Thus the thread relies no
more on the OOo class loader, but on the one you defined.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-09-17 Thread mux2005
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Mon Sep 17 11:55:42 + 
2007 ---
@dnaber:

We use

private final URL resourceURL =
this.getClass().getClassLoader().getResource(data/resource.conf);

where data/resource.conf is in the JAR-file. Then from the URL you can get an
InputStream via openStream(). This construct has not been affected by the change
in OOo 2.3.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-27 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Mon Aug 27 16:19:24 + 
2007 ---
@dnaber:  Maybe the leading slash in /de/rules/grammar.xml is your problem? 
(Although I do not know why it should have ever worked, then.)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-27 Thread dnaber
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Mon Aug 27 20:17:14 + 
2007 ---
@sb: we now managed to work around the problem by explicitly putting all JARs   
into the Class-Path entry in the manifest. 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-25 Thread dnaber
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Sat Aug 25 22:38:13 + 
2007 ---
mux2005, my software LanguageTool is also a victim of this bug. Could   
 
you describe your classloader workaround in more detail? The code that worked  
for OOo 2.2 is this:  
  
InputStream is = this.getClass().getResourceAsStream(/de/rules/grammar.xml)   
 
  
i.e. /de/rules/grammar.xml is a file in the JAR and I have to load it this
 
way because I don't know where my extension is installed. With OOo 2.3 I get   
back null. I now tried this but it fails: 

Class cl = Class.forName(de.danielnaber.languagetool.FakeClass, true, mycl);  
  
is = cl.getResourceAsStream(/de/rules/grammar.xml); 

mycl is an instance of the WollMuxClassLoader you suggested to use, but the   
  
InputStream I get back is still always null. Any idea? 

 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-24 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Fri Aug 24 08:12:27 + 
2007 ---
So what now? This issue has target set to 2.3... and is STILL UNCONFIRMED.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-24 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User sb changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Fri Aug 24 11:09:23 + 
2007 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-24 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User sb changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from [EMAIL PROTECTED] Fri Aug 24 11:08:55 + 
2007 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-22 Thread kso
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User kso changed the following:

What|Old value |New value

  CC|'baumux,chris_mux,clutz,jl|'baumux,chris_mux,clutz,jl
|,mh,sb'   |,kso,mh,sb'





--- Additional comments from [EMAIL PROTECTED] Wed Aug 22 07:25:48 + 
2007 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-22 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Wed Aug 22 07:41:13 + 
2007 ---
@mux:

2+3:  You can easily construct a classloader that has access to the classes in
the jar of your extension:  If C is such a class in the jar of your extension,
make C.class.getClassLoader() the parent of the classloader you construct.

1+4:  There was real need to get the classpath mess cleaned up, see
http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=SRC680%2Fsb36
(unfortunately, the interesting issue there is the internal task
Performance-9 - improve AutoPilots Perfomance---a historic mistake to have
that as a nonpublic issue, I assume).

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-21 Thread mh
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User mh changed the following:

What|Old value |New value

  CC|'baumux,chris_mux,clutz,jl|'baumux,chris_mux,clutz,jl
|,sb'  |,mh,sb'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-13 Thread mux2005
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Mon Aug 13 13:04:36 + 
2007 ---
@sb:

1. A lot of things that you need to rely on when doing extensive UNO programming
are unspecified. This is never a justification to break backwards compatibility
without need.

2. Because I need a classloader than can load classes from my extension's JAR
file as well as user-configurable locations.

3. The location of the extension's jar-file is an implementation detail that
depends on the organization of OOo's cache directory. So because I can't know
that location in order to put it on the classpath, I think it should be there
already. Furthermore, I think it's only natural if any classloader created from
my component's code has access to all of the classes from my component.

4. This talks about bpotential/b performance and name-clash problems and is
mostly about having all of OOo's JARs on the classpath.

a) I don't think potential problems are a justification for breaking backwards
compatibility

b) I'm NOT arguing that all of the JARs from program/classes should be on the
global classpath. I'm just talking about the extension's jar. Although if OOo
were my product I'd be very careful about removing the program/classes JARs,
too. You never know whose code has relied on this.

I believe that it's prudent to at least do some information gathering first on
how many extensions will be affected by this change. I don't know the market.
Maybe there are no commercial Java extensions at all. In that case the change
won't matter. But if some commercial extensions are affected, forcing customers
to do a paid upgrade, then this change should be reconsidered.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-07 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Tue Aug  7 08:41:54 + 
2007 ---
1  It had never been specified that extension jars are put on the classpath. 
Extension code that relies on that behavior is thus broken.

2  Mux, why do you need an additional classloader at all when your extension
loads some classes contained in its own JAR-File?

3  Mux, why do you think that an extension jar should end up on the global
classpath?  Au contraire, having dedicated classloaders for extensions improves
performance and robustness.

4  See issue 51803 for background information about cleaning up the classpath,
and
http://www.openoffice.org/servlets/ReadMsg?list=interface-announcemsgNo=740
for further details (esp. UNO-Type-Path; see issue 66821 on why that message is
hardly readable).

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-03 Thread jsk
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User jsk changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Fri Aug  3 07:24:56 + 
2007 ---
close

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-03 Thread jsk
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User jsk changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from [EMAIL PROTECTED] Fri Aug  3 07:24:31 + 
2007 ---
As there is a workaround available and i'm missing a sample extension to test
the issue i set it to invalid.

@mux2005: With you are not happy with this, please reopen.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-03 Thread mux2005
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Fri Aug  3 10:16:52 + 
2007 ---
Created an attachment (id=47291)
Outputs the CLASSPATH for OOo's JVM


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-03 Thread mux2005
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User mux2005 changed the following:

What|Old value |New value

  Status|CLOSED|UNCONFIRMED

  Resolution|INVALID   |





--- Additional comments from [EMAIL PROTECTED] Fri Aug  3 10:15:35 + 
2007 ---
Well, I am not happy with it, and if Java extensions have any practical
relevance in the marketplace (which admittedly may not be so) neither should
you. The workaround requires a change to the source code and a recompilation of
the extension. In the case of proprietary extensions that option is not
available to customers. Besides, from a technical POV I think that having the
JAR-File for the extension on the CLASSPATH is the Right Thing.

As for being able to test this: 

1. Install any Java extension. You can use ours, for instance, which you can
find at http://www.projekt-limux.org/wollmux/

2. Run the BeanShell macro contained in the attached document
output_classpath_from_beanshell.odt

3. On OOo 2.2.1 you'll see that the extension's JAR file, as well as the OOo
class files from program/classes are in the CLASSPATH. On OOo 2.3 they are not.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-08-03 Thread jl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Fri Aug  3 10:38:10 + 
2007 ---
AFAIK, it should not be necessary any more to use the class path for extensions.
Anyway sb can tell us more about it. He will be back next week.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-07-27 Thread mux2005
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User mux2005 changed the following:

What|Old value |New value

  CC|''|'baumux,chris_mux,clutz'

Keywords|  |regression





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-07-27 Thread mux2005
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100





--- Additional comments from [EMAIL PROTECTED] Fri Jul 27 11:59:02 + 
2007 ---
I've found a workaround for us. I've changed the constructor of our classloader
like this:

private static class WollMuxClassLoader extends URLClassLoader

  {

public WollMuxClassLoader()

{

  super(new URL[] {}, WollMuxClassLoader.class.getClassLoader());

}


This uses the classloader that was used to load our classloader as delegation
parent. And this classloader can load classes from the component's JAR file. 
So at least new versions of our extension will work with OOo 2.3. I'd still like
to see this fixed in the 2.3 release version. Until now, all versions of our
extension could be used with all versions of OOo since 2.04. If this
compatibility is broken, it makes development and support more difficult for us.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-07-27 Thread of
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User of changed the following:

What|Old value |New value

  CC|'baumux,chris_mux,clutz'  |'baumux,chris_mux,clutz,jl
|  |'

Target milestone|---   |OOo 2.3





--- Additional comments from [EMAIL PROTECTED] Fri Jul 27 09:34:08 + 
2007 ---
This issue has been stated as a regression. I can't judge it but it sounds to as
a P2 issue.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-07-27 Thread mux2005
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100
 Issue #|80100
 Summary|.jar file for extension no longer in CLASSPATH
   Component|framework
 Version|680m221
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|tm
 Reported by|mux2005





--- Additional comments from [EMAIL PROTECTED] Fri Jul 27 09:06:19 + 
2007 ---
We have an OOo extension written in Java that loads some classes contained in
its own JAR-File (i.e. inside the JAR-File that's inside the uno.pkg) at runtime
via URLClassLoader.loadClass() (for a new instance of URLClassLoader). Until OOo
2.2.1 the JAR-File of the Extension was on the CLASSPATH. The property
java.class.path on OOo 2.2.1 looks like this (trimmed for clarity, home
directory replaced with $HOME):

$HOME/.openoffice.org2/user/uno_packages/cache/registry/com.sun.star.comp.deployment.component.PackageRegistryBackend/../../uno_packages/zHz1ed_/WollMux.uno.pkg/WollMux.uno.jar:/opt/openoffice.org2.2/program/classes/jurt.jar:/opt/openoffice.org2.2/program/classes/ridl.jar:
/opt/openoffice.org2.2/program/classes/java_uno.jar:[lots more JARs from
program/classes/]:/opt/openoffice.org2.2/program/classes/hsqldb.jar:
/opt/openoffice.org2.2/program/classes/sdbc_hsqldb.jar:/usr/share/java/xercesImpl.jar

Now in m221 the only thing it contains is this:

/usr/share/java/xercesImpl.jar

Without the JAR-File for the extension on the CLASSPATH, the Classloader can't
find the classes, which breaks our component. We're using this component on
several 1000 (!!!) desktops. This regression is a complete disaster for us.

NOTE: The problem also affects Windows.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-07-27 Thread of
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User of changed the following:

What|Old value |New value

 Assigned to|tm|jsk





--- Additional comments from [EMAIL PROTECTED] Fri Jul 27 09:08:03 + 
2007 ---
@ jsk: Please have a look.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[framework-issues] [Issue 80100] .jar file for extension no longer in CLASSPATH

2007-07-27 Thread jl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80100


User jl changed the following:

What|Old value |New value

  CC|'baumux,chris_mux,clutz,jl|'baumux,chris_mux,clutz,jl
|' |,sb'





--- Additional comments from [EMAIL PROTECTED] Fri Jul 27 16:26:37 + 
2007 ---
Added SB on cc.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]