[equinox-dev] +1 for John W Ross on rt.equinox.bundles by Simon Kaegi

2011-03-31 Thread portal on behalf of Simon Kaegi
Simon Kaegi voted: +1 Makes sense. Having looked at his work agree John is a solid addition. Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] +1 for Glyn Normington on rt.equinox.bundles by Simon Kaegi

2011-03-31 Thread portal on behalf of Simon Kaegi
Simon Kaegi voted: +1 Good to hear. Glyn has long been involved in Equinox and it would be great to have him as a committer. Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org

[equinox-dev] +1 for Borislav Kapukaranov on rt.equinox.bundles by Simon Kaegi

2011-03-31 Thread portal on behalf of Simon Kaegi
Simon Kaegi voted: +1 -- Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

Re: [equinox-dev] No SessionManager error when trying to initialize JSP in an Equinox / embedded Jetty environment

2010-09-13 Thread Simon Kaegi
Hi Vijay, It looks like you're using the Jetty 7 integration which appears to have a bug in it. I've open a bug on your behalf here. https://bugs.eclipse.org/bugs/show_bug.cgi?id=325184 -Simon | | From: | |

[equinox-dev] +1 for Lazar Kirchev on rt.equinox.incubator by Simon Kaegi

2010-06-28 Thread portal on behalf of Simon Kaegi
Simon Kaegi voted: +1 -- Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

Re: [equinox-dev] Jetty Servlet Unavailable Exception

2010-06-10 Thread Simon Kaegi
this javax.servlet.Servlet class.? Thanks, Srijith. Simon Kaegi simon_ka...@ca.ibm.com 6/9/2010 11:06 PM Hi Srijith, This sort of error happens when you have more than one provider of the Servlet API. In this case your application is binding to a different exporter of the Servlet API than

Re: [equinox-dev] Jetty Servlet Unavailable Exception

2010-06-09 Thread Simon Kaegi
Hi Srijith, This sort of error happens when you have more than one provider of the Servlet API. In this case your application is binding to a different exporter of the Servlet API than what's being used by Jetty. It's usually simplest to just have the one javax.servlet bundle exporting the

[equinox-dev] +1 for Aldo Eisma on rt.equinox.incubator

2009-12-11 Thread portal on behalf of Simon Kaegi
+1 -- Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

Re: [equinox-dev] Re: How can I register a servlet to receive andhandle the path like /*?

2009-12-08 Thread Simon Kaegi
You should just use /scap see http://www.osgi.org/javadoc/r4v42/org/osgi/service/http/HttpService.html#registerServlet (java.lang.String, javax.servlet.Servlet, java.util.Dictionary, org.osgi.service.http.HttpContext) HTH -Simon | | From: | |

Re: [equinox-dev] How to register listener filter?

2009-12-03 Thread Simon Kaegi
The Http Service and subsequently the extension points in http.registry do not directly support either Filters or Listeners. The current idiom is to use a special wrapping Servlet that will perform the Filtering and support the various Listener events. You can see various examples of this

[equinox-dev] Committer vote for Scott Lewis has concluded successfully

2009-10-23 Thread portal on behalf of Simon Kaegi
Habeck ? BJ Hargrave +1 DJ Houghton +1 Simon Kaegi ? Peter Kriens ? Eric Li ? Stefan Liebig +1 Martin Lippert ? Jeff McAffer ? Susan McCourt ? Kim Moir ? Andrew Niefer ? Matthew Piggott +1 Pascal Rapicault +1 Heiko Seeberger ? Dave Stevenson

Re: [equinox-dev] injecting Databaseconnection (or -pool) into servletbridge

2009-09-10 Thread Simon Kaegi
The short answer is that getting JNDI to work is a bit tricky as there are generally lookup dependencies on the context class loader and for some servers the lookup must be done by an incoming request thread. Here's an answer I wrote a ways back that should help but feel free to ask more

Re: [equinox-dev] Problem with help contents in RCP application(embebed http server)

2009-08-28 Thread Simon Kaegi
org.eclipse.equinox.http contains a slimmed down Http Service implementation that we use in embedded use cases. Relevant to your case this implementation is not able to support the Eclipse Help systems Servlet and JSP needs. You want the implementation in org.eclipse.equinox.http.jetty as well

Re: [equinox-dev] Instructions for server side equinox appear to be incomplete... please help

2009-07-21 Thread Simon Kaegi
You're right. Please open a bug. The CVS repo moved from cvsroot/eclipse to cvsroot/rt and these instructions need to be updated. -Simon | | From: | |

Re: [equinox-dev] Getting servlet context real path.

2009-07-07 Thread Simon Kaegi
Hi Srijith, I've replied in the newsgroup as indeed that is the place for this sort of discussion as it gets the most eyes. -Simon | | From: | |

Re: [equinox-dev] Configuring a log file in order to save the logging information

2009-06-23 Thread Simon Kaegi
Hi David, For the OSGi Log Service there is no default behaviour for writing out log messages; you need to register a LogListener to listen for and log messages. A very simple LogListener might just write messages directly to System.err or System.out but you could also write to a File without

Re: [equinox-dev] Validation in Equinox Metatype service

2009-04-08 Thread Simon Kaegi
Hi Jan, There are currently no plans for further work in 3.5 however if you open a bug and submit a patch I'd definitely look at it. -Simon | | From: | |

Re: [equinox-dev] performance problems with Eclipse startup due to long DirectoryWatcher.poll() (25 minutes!)

2009-01-08 Thread Simon Kaegi
Looking at the stack this might be https://bugs.eclipse.org/bugs/show_bug.cgi?id=244628 Each delete of an artifactdescriptor currently causes us to rewrite the repo | | From: | |

[equinox-dev] Update to Jetty and Servlet API in the M4 SDK

2008-12-11 Thread Simon Kaegi
In M4 the platform team updated the version of Jetty that comes packaged with the SDK from 5.1 to 6.1. This impacts the following bundles: 1) org.mortbay.jetty (version 5.1) (removed) If your feature directly integrates with the Jetty 5 API you can continue to do so but must now add the

Re: [equinox-dev] Update to Jetty and Servlet API in the M4 SDK

2008-12-11 Thread Simon Kaegi
| --| I thought that an API compatible change was only meant to increment the minor version number, rather than the major number? Alex Sent from my (new) iPhone On 11 Dec 2008, at 19:02, Simon Kaegi

Re: [equinox-dev] Administrating equinox in production

2008-12-02 Thread Simon Kaegi
Is the OOME easily reproducible? If so, please follow up and open a bug. -- Unfortunately the console is currently limited to a single connection. There are also various http consoles to look at from both knopflerfish and felix (both require some tweaking) however IMO the console is still the

Re: [equinox-dev] Framework extensions must be co-located with the org.eclipse.osgi bundle?

2008-11-28 Thread Simon Kaegi
That sounds reasonable. If you haven't already why not open a bug as this feels like it's more complex than it should be. Another approach that might be worth looking at is to extend the symantics of osgi.framework.extensions to allow paths (similar to osgi.bundles) | | From: |

[equinox-dev] +1 for John Arthorne

2008-11-15 Thread portal on behalf of Simon Kaegi
+1 -- Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

Re: [equinox-dev] Disable default start of Jetty.

2008-10-10 Thread Simon Kaegi
You can disable the autostarting of the deafult instance by setting the framework property: org.eclipse.equinox.http.jetty.autostart=false -Simon | | From: | |

Re: [equinox-dev] Code move timeline

2008-07-17 Thread Simon Kaegi
I like this and agree that bundles had unfortunately become a dumping ground. The separation you guys have done looks good to me. One nit... I think we probably want org.eclipse.equinox.http.servlet in the osgi-compendium as it's what really provides the Http Service implementation and also is a

Re: [equinox-dev] P2 touchpoint parsing/writing problem

2008-06-27 Thread Simon Kaegi
Sorry. You had already. -- https://bugs.eclipse.org/bugs/show_bug.cgi?id=238697 | | From: | | --| |Simon Kaegi/Ottawa

RE: [equinox-dev] P2 touchpoint instructions doc

2008-06-24 Thread Simon Kaegi
not for some future touchpoints and actions. Is there some particular reason for using the current format and not have actions as classes read/written to XML? Henrik Lindberg [EMAIL PROTECTED] On 23 jun 2008, at 21.40, Simon Kaegi wrote: Hm, I think may able to answer this myself. The format

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-24 Thread Simon Kaegi
). With that said, I'm not too fussed about it. -Simon Regards Henrik Lindberg [EMAIL PROTECTED] On 23 jun 2008, at 21.40, Simon Kaegi wrote: Hm, I think may able to answer this myself. The format is actually documented :) The touchpoint data has a map, the keys in this map are the phases like

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-23 Thread Simon Kaegi
be destructive (for example over-writing a program argument). In these cases the actions undo can restore from a saved memento. -Simon Henrik Lindberg [EMAIL PROTECTED] On 20 jun 2008, at 04.56, Simon Kaegi wrote: I have now written a wiki page: http://wiki.eclipse.org

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-23 Thread Simon Kaegi
, Simon Kaegi wrote: A couple of notes and questions: - With the current encoding (a map of instructions), it is not possible to use the same instruction type more than once. Is this intentional? What if the author needs to create two directories etc? (I am asking because

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-19 Thread Simon Kaegi
://wiki.eclipse.org/Equinox_p2_Engine Your presentation is vastly better and easier to understand so I'll go through and do some merging/updating/re-organizing of that content. Thanks. -Simon Regards Henrik Lindberg [EMAIL PROTECTED] On 18 jun 2008, at 19.13, Simon Kaegi wrote: - How can I learn what

Re: [equinox-dev] P2 metadata authoring - status/questions

2008-06-18 Thread Simon Kaegi
Hi, I have been working on p2 meta data authoring, and have created a large part of an Installable Unit editor. As I did not want to lose the code in case of disaster, I checked it in to the Buckminster SVN in wait for the proper place to be created That's great. Is it in a workable state

Re: [equinox-dev] servletbridge activator ClassNotFound exception

2008-05-15 Thread Simon Kaegi
John, Off the top of my head I don't see anything wrong however from your description I'm wondering if you're using export to create your bundles or just handcrafting from the files on disk. Also, this is primarily a dev-list and for this sort of problem I'd suggest re-asking your question on the

[equinox-dev] JSF and OSGi Thread

2008-04-11 Thread Simon Kaegi
From (brau) on the #osgi channel... Interesting discussion about JSF forOSGi integration https://javaserverfaces.dev.java.net/servlets/BrowseList?list=devby=threadfrom=1102800 ___ equinox-dev mailing list equinox-dev@eclipse.org

Re: [equinox-dev] [p2] Categories in Profiles / Group layers

2008-04-08 Thread Simon Kaegi
One minor thing about todays HEAD: org.eclipse.equinox.internal.provisional.p2.engine.phases.Messages has an incorrect BUNDLE_NAME, this one is missing a provisional... Thanks. Fixed in HEAD. ___ equinox-dev mailing list equinox-dev@eclipse.org

[equinox-dev] +1 for Neil Bartlett

2008-03-28 Thread portal on behalf of Simon Kaegi
+1 -- Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] +1 for Boris Bokowski

2008-03-28 Thread portal on behalf of Simon Kaegi
+1 -- Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

RE: [equinox-dev] Incubator request for Extensions/Services Integration work

2008-03-27 Thread Simon Kaegi
+1 [EMAIL PROTECTED] wrote on 03/27/2008 01:08:57 PM: +1 I think a component programming model incubator area is a great idea. Tom [image removed] Jeff McAffer ---03/27/2008 12:06:17 PM---+1 [image removed] From: [image removed] Jeff McAffer [EMAIL PROTECTED] [image removed]

Re: [equinox-dev] I need jetty 6, for the clustering sake

2008-03-19 Thread Simon Kaegi
Hi ShaoGuang, Jetty 6.1 support is on its way. Look for an older posing in the archives for more details: [equinox-dev] org.eclipse.equinox.http.jetty - Jetty 6.1 support from [ 02/19/2008] HTH -Simon [EMAIL PROTECTED] wrote on 03/18/2008 03:35:08 AM: Hi every one, My team is

Re: [equinox-dev] Servlet mapping

2008-03-19 Thread Simon Kaegi
Hi Emmanuel, Just register with /messagebroker. The OSGi HttpService handles URI registration a little bit differently and looks for the longest matchng alias. * handling is not specified by the Http Service however the intent in this case seems pretty obvious so we maybe can add it in the

[equinox-dev] +1 for Andrew Niefer

2008-02-28 Thread portal on behalf of Simon Kaegi
+1 -- Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

RE: [equinox-dev] Equinox p2 -Problem running director app from the Getting Started for Developers Guide

2008-02-22 Thread Simon Kaegi
Hi Jeff, I just updated the director.app launch config and retested. Could you resynch to HEAD and try again. -Simon [EMAIL PROTECTED] wrote on 02/22/2008 11:13:04 AM: Still having the same issue. I removed everything and started over from the beginning. anything further I can look at to

Re: [equinox-dev] Equinox p2 -Problem running director app from the Getting Started for Developers Guide

2008-02-21 Thread Simon Kaegi
Jeff, I'm running into a similar problems when launching the dev-time ProvAdmin UI. I've opened up a bug to take a look -- https://bugs.eclipse.org/bugs/show_bug.cgi?id=219862 You might want to add yourself to the CC list. -Simon [EMAIL PROTECTED] wrote on 02/21/2008 12:56:59 PM: All -- I

Re: [equinox-dev] [prov] removing profile iu properties

2008-02-18 Thread Simon Kaegi
The IU profile properties are meant to be scoped by the existence of the IU in the profile. What that means is that there should never be garbage IU profile properties since when the IU is removed the associated properties are as well. I think what Pascal was getting at is that this is done in the

[equinox-dev] org.eclipse.equinox.http.jetty - Jetty 6.1 support

2008-02-18 Thread Simon Kaegi
To date we've been using Jetty 5.1 in the Eclipse SDK however the folk at Jetty have been working away on Jetty 6 and now 6.1. I've set up a branch for org.eclipse.equinox.http.jetty [jetty6] and have just done a preliminary integration with Jetty 6.1 and run through a basic battery of servlet and

Re: [equinox-dev] Tom Watson: Equinox co-lead

2008-01-24 Thread Simon Kaegi
Congrats Tom. [EMAIL PROTECTED] wrote on 01/23/2008 11:36:40 PM: Recently I was reviewing the Equinox project, the direction and the community around it. One of the things that stood out for me is that Tom Watson has been quietly leading vast swaths of the activity in Equinox from the

Re: [equinox-dev] Load servlet on startup equinox server

2008-01-08 Thread Simon Kaegi
Hi Rafael, I'm not familiar with what Muse produces to do the integration. From your description of the problem I'm guessing it writes a plugin.xml with a servlets extension. Eagerly starting of a servlet is supported with the load-on-startup attribute. [load-on-startup=true] For example:

Re: [equinox-dev] Configuration Admin bug

2007-12-07 Thread Simon Kaegi
to cm. If cm is completely replaced by a different implementation, then of course you cannot expect the configs to be preserved. Thanks! -Don On 12/6/07 2:28 PM, Simon Kaegi [EMAIL PROTECTED] wrote: Don, Could you provide a more detailed test case. The code specifically checks

Re: [equinox-dev] Configuration Admin bug

2007-12-06 Thread Simon Kaegi
Thank Don. I've created a bug report to track this. https://bugs.eclipse.org/bugs/show_bug.cgi?id=212168 -Simon [EMAIL PROTECTED] wrote on 12/06/2007 12:31:22 PM: In org.eclipse.equinox.cm.internal.ConfigurationAdminFactory at line 812. The line: if

Re: [equinox-dev] Configuration Admin bug

2007-12-06 Thread Simon Kaegi
Don, Could you provide a more detailed test case. The code specifically checks for a null BundleLocation so I suspect you're getting an NPE for another reason. The code has been significantly refactored so that the relevant check I think you're referring to is now in

Re: [equinox-dev] [prov] folders in artifact repository

2007-11-20 Thread Simon Kaegi
Hi Pascal, I'm working on this problem. The specific bug associated with this work is here -- https://bugs.eclipse.org/bugs/show_bug.cgi?id=179317 In terms of timeline I'm looking to do this tomorrow. I'm not looking at doing anything fancy like dynamically serving up a zip from the folders

Re: [equinox-dev] Moving Service Activator Toolkit (SAT) from the Open Healthcare Framework (OHF) to Equinox

2007-09-26 Thread Simon Kaegi
+1 [EMAIL PROTECTED] wrote on 09/26/2007 03:44:37 PM: Currently the Service Activator Toolkit (SAT) in the Open Healthcare Framework (OHF) technology project that is of great value to people programming OSGi Applications.  SAT is a Java component that simplifies the building of OSGi

[equinox-dev] +1 for Oleg Besedin

2007-09-12 Thread portal on behalf of Simon Kaegi
+1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

Re: [equinox-dev] Problems with http.jetty...

2007-09-09 Thread Simon Kaegi
Hi Kit, My best guess is that your bundle is not started and subsequently your web resources are not registered. This sort of thing is probably best handled in the user news group. If you use the console to do an ss and add that to a posting that would help. It might also help to verify in the

Re: [equinox-dev] [prov] Comments on Equinox Provisioning Engine Wiki page

2007-09-07 Thread Simon Kaegi
[EMAIL PROTECTED] wrote on 09/06/2007 10:28:55 AM: Simon thanks for adding the info to the wiki. I have a lot of questions and comments but will constrain myself to a few here. Once these are clarified I will attack the remainder. In the section Engine processing model and phases You list

[equinox-dev] +1 for Susan McCourt

2007-07-26 Thread portal on behalf of Simon Kaegi
+1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] +1 for Susan McCourt

2007-07-26 Thread portal on behalf of Simon Kaegi
+1 This is where you enter your comments about the candidate and you explain why you are voting +1, 0, or -1. Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org

Re: [equinox-dev] jetty 6 osgi support

2007-07-23 Thread Simon Kaegi
declares version [2. 3.0], the current jetty 5 integration declares imports for version [2.4.0] and the new jetty 6 jars depends on version [2.5.0] and supply another javax.servlet version. How is the best way to deal with this? Thanks, Gustavo Simon Kaegi wrote: Hi Gustavo, Starting from