Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Equinox » Registry conflict (running org.eclipse.equinox.jsp.jasper.registry)
Registry conflict (running org.eclipse.equinox.jsp.jasper.registry) [message #100367] Fri, 26 October 2007 11:07 Go to next message
Eclipse UserFriend
Originally posted by: dp-conde.criticalsoftware.com

Hello,

I need to run org.eclipse.help.webapp package (as well as some other
packages) to have an embedded eclipse help system in my application.

The problem here is that this package has a dependency of one other
package (org.eclipse.equinox.jsp.jasper.registry) that conflicts with
some other packages that I need for the application.

So I was wondering, is it possible to run org.eclipse.help.webapp
without org.eclipse.equinox.jsp.jasper.registry? I'm using maven to
compile my project and I tried changing the dependencies on the pom.xml
file like this:

<dependency>
<groupId>org.eclipse.help</groupId>
<artifactId>webapp</artifactId>
<version>3.3.0</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.equinox.jsp.jasper</groupId>
<artifactId>registry</artifactId>
</exclusion>
</exclusions>
</dependency>

But this didn't work, any thoughts about this issue?

Thanks in advance,
Daniel Conde.
Re: Registry conflict (running org.eclipse.equinox.jsp.jasper.registry) [message #100399 is a reply to message #100367] Fri, 26 October 2007 13:28 Go to previous messageGo to next message
Simon Kaegi is currently offline Simon KaegiFriend
Messages: 381
Registered: July 2009
Senior Member
You might ask on the Help list but probably not.
org.eclipse.equinox.jsp.jasper.registry is what allows Help/UA to register
JSPs the alternative would be to manually register the JSPServlet with the
Http Service.

I'm surprised this bundle would cause problems as it's dependencies are
minor.
What's conflicting?
-Simon

"Daniel Conde" <dp-conde@criticalsoftware.com> wrote in message
news:ffshss$7rq$1@build.eclipse.org...
> Hello,
>
> I need to run org.eclipse.help.webapp package (as well as some other
> packages) to have an embedded eclipse help system in my application.
>
> The problem here is that this package has a dependency of one other
> package (org.eclipse.equinox.jsp.jasper.registry) that conflicts with
> some other packages that I need for the application.
>
> So I was wondering, is it possible to run org.eclipse.help.webapp without
> org.eclipse.equinox.jsp.jasper.registry? I'm using maven to compile my
> project and I tried changing the dependencies on the pom.xml file like
> this:
>
> <dependency>
> <groupId>org.eclipse.help</groupId>
> <artifactId>webapp</artifactId>
> <version>3.3.0</version>
> <exclusions>
> <exclusion>
> <groupId>org.eclipse.equinox.jsp.jasper</groupId>
> <artifactId>registry</artifactId>
> </exclusion>
> </exclusions>
> </dependency>
>
> But this didn't work, any thoughts about this issue?
>
> Thanks in advance,
> Daniel Conde.
Re: Registry conflict (running org.eclipse.equinox.jsp.jasper.registry) [message #100511 is a reply to message #100399] Mon, 29 October 2007 14:55 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: dp-conde.criticalsoftware.com

From what I see, it's probably conflicting with either
org.eclipse.equinox.registry or org.eclipse.equinox.http.registry.

What happens is that when I load org.eclipse.help.webapp, some of the
pictures aren't loaded correctly for the application.

Simon Kaegi wrote:
> You might ask on the Help list but probably not.
> org.eclipse.equinox.jsp.jasper.registry is what allows Help/UA to register
> JSPs the alternative would be to manually register the JSPServlet with the
> Http Service.
>
> I'm surprised this bundle would cause problems as it's dependencies are
> minor.
> What's conflicting?
> -Simon
>
> "Daniel Conde" <dp-conde@criticalsoftware.com> wrote in message
> news:ffshss$7rq$1@build.eclipse.org...
>> Hello,
>>
>> I need to run org.eclipse.help.webapp package (as well as some other
>> packages) to have an embedded eclipse help system in my application.
>>
>> The problem here is that this package has a dependency of one other
>> package (org.eclipse.equinox.jsp.jasper.registry) that conflicts with
>> some other packages that I need for the application.
>>
>> So I was wondering, is it possible to run org.eclipse.help.webapp without
>> org.eclipse.equinox.jsp.jasper.registry? I'm using maven to compile my
>> project and I tried changing the dependencies on the pom.xml file like
>> this:
>>
>> <dependency>
>> <groupId>org.eclipse.help</groupId>
>> <artifactId>webapp</artifactId>
>> <version>3.3.0</version>
>> <exclusions>
>> <exclusion>
>> <groupId>org.eclipse.equinox.jsp.jasper</groupId>
>> <artifactId>registry</artifactId>
>> </exclusion>
>> </exclusions>
>> </dependency>
>>
>> But this didn't work, any thoughts about this issue?
>>
>> Thanks in advance,
>> Daniel Conde.
>
>
Re: Registry conflict (running org.eclipse.equinox.jsp.jasper.registry) [message #100525 is a reply to message #100511] Mon, 29 October 2007 15:37 Go to previous message
Simon Kaegi is currently offline Simon KaegiFriend
Messages: 381
Registered: July 2009
Senior Member
org.eclipse.equinox.jsp.jasper.registr depends on those two bundles and is
built with them everyday when the SDK is built.
I don't really have enough information to understand what the source of the
conflict is in your environment. Can you provide more detail.

What is the other package that you need. I would bet that that's where we
would need to fix the problems.

HTH
-Simon

"Daniel Conde" <dp-conde@criticalsoftware.com> wrote in message
news:fg4sdl$t6g$1@build.eclipse.org...
> From what I see, it's probably conflicting with either
> org.eclipse.equinox.registry or org.eclipse.equinox.http.registry.
>
> What happens is that when I load org.eclipse.help.webapp, some of the
> pictures aren't loaded correctly for the application.
>
> Simon Kaegi wrote:
>> You might ask on the Help list but probably not.
>> org.eclipse.equinox.jsp.jasper.registry is what allows Help/UA to
>> register JSPs the alternative would be to manually register the
>> JSPServlet with the Http Service.
>>
>> I'm surprised this bundle would cause problems as it's dependencies are
>> minor.
>> What's conflicting?
>> -Simon
>>
>> "Daniel Conde" <dp-conde@criticalsoftware.com> wrote in message
>> news:ffshss$7rq$1@build.eclipse.org...
>>> Hello,
>>>
>>> I need to run org.eclipse.help.webapp package (as well as some other
>>> packages) to have an embedded eclipse help system in my application.
>>>
>>> The problem here is that this package has a dependency of one other
>>> package (org.eclipse.equinox.jsp.jasper.registry) that conflicts with
>>> some other packages that I need for the application.
>>>
>>> So I was wondering, is it possible to run org.eclipse.help.webapp
>>> without org.eclipse.equinox.jsp.jasper.registry? I'm using maven to
>>> compile my project and I tried changing the dependencies on the pom.xml
>>> file like this:
>>>
>>> <dependency>
>>> <groupId>org.eclipse.help</groupId>
>>> <artifactId>webapp</artifactId>
>>> <version>3.3.0</version>
>>> <exclusions>
>>> <exclusion>
>>> <groupId>org.eclipse.equinox.jsp.jasper</groupId>
>>> <artifactId>registry</artifactId>
>>> </exclusion>
>>> </exclusions>
>>> </dependency>
>>>
>>> But this didn't work, any thoughts about this issue?
>>>
>>> Thanks in advance,
>>> Daniel Conde.
>>
Previous Topic:How to use factory components with DS
Next Topic:jmx consoles
Goto Forum:
  


Current Time: Thu Apr 18 09:32:38 GMT 2024

Powered by FUDForum. Page generated in 0.02355 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top