Re: Classloading across bundles

2008-08-01 Thread Alin Dreghiciu
; } That's throws a ClassNotFoundException, I assume, because clazz (declared in B and not imported explicitly in A) is not loadable from with A. On 01/08/2008 16:25, Alin Dreghiciu [EMAIL PROTECTED] wrote: Do you use Proxy.newProxyInstance? The first param of this method is a class loader. So, what

[jira] Commented: (FELIX-650) Bundle-SymbolicName not handled correctly when header contains parameters

2008-08-01 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12619052#action_12619052 ] Alin Dreghiciu commented on FELIX-650: -- Interesting. Bundle-SymbolicName is a mandatory

[jira] Closed: (FELIX-650) Bundle-SymbolicName not handled correctly when header contains parameters

2008-08-01 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu closed FELIX-650. Bundle-SymbolicName not handled correctly when header contains parameters

[jira] Commented: (FELIX-102) Implement singleton bundle support

2008-08-01 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-102?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12619057#action_12619057 ] Alin Dreghiciu commented on FELIX-102: -- Correct, I got your point. To me it sound like

[jira] Commented: (FELIX-102) Implement singleton bundle support

2008-08-01 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-102?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12619064#action_12619064 ] Alin Dreghiciu commented on FELIX-102: -- My main reason for extracting

[jira] Resolved: (FELIX-482) Replace System.err logging with a log service call

2008-07-29 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-482?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu resolved FELIX-482. -- Resolution: Fixed Replace System.err logging with a log service call

[jira] Created: (FELIX-650) Bundle-SymbolicName not handled correctly when header contains parameters

2008-07-29 Thread Alin Dreghiciu (JIRA)
Type: Bug Components: Framework Reporter: Alin Dreghiciu The OSGi specs mandates that syntax for Bundle-Symbolicname is: Bundle-SymbolicName ::= symbolic-name ( ';' parameter ) * meaning that you can add parameters to symbolic name as for example singleton:=true. Let's use

[jira] Updated: (FELIX-650) Bundle-SymbolicName not handled correctly when header contains parameters

2008-07-29 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-650: - Attachment: FELIX-650.patch Bundle-SymbolicName not handled correctly when header contains

[jira] Commented: (FELIX-650) Bundle-SymbolicName not handled correctly when header contains parameters

2008-07-29 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12617817#action_12617817 ] Alin Dreghiciu commented on FELIX-650: -- I know that Felix does not implement

[jira] Updated: (FELIX-102) Implement singleton bundle support

2008-07-29 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-102?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-102: - Attachment: FELIX-102.patch The attached patch implements the singleton support. Basically while

[jira] Updated: (FELIX-482) Replace System.err logging with a log service call

2008-07-28 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-482?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-482: - Attachment: FELIX-482.patch I attached a patch that changes the System.errr/System.out

Re: Plans for Felix to implement 4.1.0 specs?

2008-07-28 Thread Alin Dreghiciu
Okay. Thanx. On Mon, Jul 28, 2008 at 5:01 PM, Richard S. Hall [EMAIL PROTECTED] wrote: FYI, we have two issues for core and compendium: http://issues.apache.org/jira/browse/FELIX-514 http://issues.apache.org/jira/browse/FELIX-595 - richard Alin Dreghiciu wrote: Hi guys

Refreshing packages does not work correctly?

2008-07-28 Thread Alin Dreghiciu
on equinox/kf and as expected on step 5 the obr bundle could not be resolved. -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http://www.qi4j.org - New Energy for Java - Domain Driven Development. http://malaysia.jayway.net - New Energy for Projects

Re: Refreshing packages does not work correctly?

2008-07-28 Thread Alin Dreghiciu
28.07.2008 um 18:58 schrieb Alin Dreghiciu [EMAIL PROTECTED]: Hi guys, While working on FELIX-482 I had the following (interesting) situation: 1. I had obr bundle importing org.osgi.service.log package (not optional import) 2. On a new felix instance I installed the the osgi compendium bundle

Re: Refreshing packages does not work correctly?

2008-07-28 Thread Alin Dreghiciu
if this was added in 4.1 or will be added in 4.2, but I am fairly certain it was changed. - richard Alin Dreghiciu wrote: Indeed the complete refresh worked as can be seen bellow on Example 1. But that still does not comply to the specs in my view as on doing refresh on a bundle the framework should re

Re: Refreshing packages does not work correctly?

2008-07-28 Thread Alin Dreghiciu
, Richard S. Hall [EMAIL PROTECTED] wrote: Alin Dreghiciu wrote: You are right. The citation was from 4.0.1. I looked into 4.1.0 and there this statement is gone and has been replaced by If none of the old exports are used, then the old exports must be removed. Otherwise, all old exports must

Re: Refreshing packages does not work correctly?

2008-07-28 Thread Alin Dreghiciu
(1.0.1) [ 9] [Active ] [5] Apache Felix Bundle Repository (1.1.0.SNAPSHOT) - On Mon, Jul 28, 2008 at 10:27 PM, Richard S. Hall [EMAIL PROTECTED] wrote: Alin Dreghiciu wrote: I wanted to say something like you explained that you don't do: I expected that Felix will do something like

[jira] Created: (FELIX-648) Make system bundle export org.osgi.service.permissionadmin/condpermadmin

2008-07-27 Thread Alin Dreghiciu (JIRA)
: New Feature Components: Framework Reporter: Alin Dreghiciu Priority: Trivial As org.osgi.service.permissionadmin and condpermadmin package is part of core OSGi spec I'm thinking that the system bundle of Felix should also export those packages even

Plans for Felix to implement 4.1.0 specs?

2008-07-27 Thread Alin Dreghiciu
this is possible I can work on it and provide a patch. -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http://www.qi4j.org - New Energy for Java - Domain Driven Development. http://malaysia.jayway.net - New Energy for Projects - Great People

[jira] Commented: (FELIX-648) Make system bundle export org.osgi.service.permissionadmin/condpermadmin

2008-07-27 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12617338#action_12617338 ] Alin Dreghiciu commented on FELIX-648: -- I could find workarounds for my case

Re: DS and references without an interface

2008-07-23 Thread Alin Dreghiciu
of the reference element is required. So I would assume, that this is not possible - with the current specification. And AFAIK the Felix SCR is not able to do this either. Regards Felix Alin Dreghiciu schrieb: Hi guys, Is there any way to specify in Declarative Services a reference

DS and references without an interface

2008-07-20 Thread Alin Dreghiciu
Hi guys, Is there any way to specify in Declarative Services a reference without a type, just with a filter (target)? My use case is that I want all services that have certain service properties regardless the type of the service. Thanx, -- Alin Dreghiciu http://www.ops4j.org - New Energy

Re: General questions about starting and stopping bundles

2008-07-01 Thread Alin Dreghiciu
to a service, then it is actually much more complex to handle (and design for) the come and go situation. Regards, Dieter -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http://www.qi4j.org - New Energy for Java - Domain Driven Development. http

Re: General questions about starting and stopping bundles

2008-06-28 Thread Alin Dreghiciu
anymore the service after it has been unregistered. Any comments and answers are appreciated. Regards, Dieter -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http://www.qi4j.org - New Energy for Java - Domain Driven Development. http

Re: Needing an OSGi expert to help Struts

2008-06-14 Thread Alin Dreghiciu
Inc. - www.wso2.org -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http://www.qi4j.org - New Energy for Java - Domain Driven Development. http://malaysia.jayway.net - New Energy for Projects - Great People working on Great Projects

Re: Library Enabling Test Framework...?

2008-06-04 Thread Alin Dreghiciu
? Alin Dreghiciu On Wed, Jun 4, 2008 at 3:55 PM, Alex Karasulu [EMAIL PROTECTED] wrote: Niclas, Robert, It sounded to me as if Robert was more interested in a integration testing framework rather than the build tool used to generate the manifest and build the bundle. Please excuse me if I'm wrong

Re: Library Enabling Test Framework...?

2008-06-04 Thread Alin Dreghiciu
? Alin Dreghiciu On Wed, Jun 4, 2008 at 3:55 PM, Alex Karasulu [EMAIL PROTECTED] wrote: Niclas, Robert, It sounded to me as if Robert was more interested in a integration testing framework rather than the build tool used to generate the manifest and build the bundle. Please excuse me if I'm wrong

Re: [VOTE] Accept Pax Logging donation from OPS4J

2008-06-02 Thread Alin Dreghiciu
is encouraged to express their thoughts. Cheers -- Niclas Hedhman, Software Developer I live here; http://tinyurl.com/2qq9er I work here; http://tinyurl.com/2ymelc I relax here; http://tinyurl.com/2cgsug -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open

Re: More to come [was; Re: [VOTE] Accept Pax Logging donation from OPS4J]

2008-06-02 Thread Alin Dreghiciu
Pax Web to Felix f in Pax Web we still keep those projects as dependencies, so 3 looks like the most viable option but I do not know if Apache projects can depend on non Apache projects. Alin Dreghiciu On Mon, Jun 2, 2008 at 11:06 AM, Niclas Hedhman [EMAIL PROTECTED] wrote: On Monday 02 June 2008

Re: [VOTE] Release Web Console 1.0.0

2008-05-21 Thread Alin Dreghiciu
=1 (not binding) On Wed, May 21, 2008 at 10:08 AM, Didier Donsez [EMAIL PROTECTED] wrote: +1 Didier -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http://www.qi4j.org - New Energy for Java - Domain Driven Development. http

Re: [VOTE] Release Web Console 1.0.0

2008-05-21 Thread Alin Dreghiciu
sorry, +1 On Wed, May 21, 2008 at 11:43 AM, Alin Dreghiciu [EMAIL PROTECTED] wrote: =1 (not binding) On Wed, May 21, 2008 at 10:08 AM, Didier Donsez [EMAIL PROTECTED] wrote: +1 Didier -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation

Re: OSGi Web Console

2008-05-20 Thread Alin Dreghiciu
feedback. Regards Felix [1] https://issues.apache.org/jira/browse/FELIX/component/12312330 [2] https://issues.apache.org/jira/browse/FELIX-574 -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http://www.qi4j.org - New Energy for Java

Re: [VOTE] Moving the Sling Management Console to Apache Felix

2008-05-07 Thread Alin Dreghiciu
:48 PM, Marcel Offermans [EMAIL PROTECTED] wrote: +1 It is a very nice web based console that would complement Apache Felix well, I'm all for moving it! -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http

Re: [Vote] release maven-bundle-plugin 1.4.1

2008-05-05 Thread Alin Dreghiciu
file for verifying the signature in this directory. So, please check the release and cast your votes. (vote will run for 72hrs) -- Cheers, Stuart -- Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http://www.qi4j.org - New Energy

Re: SpringSource Bundle Repository Bundles will only contain standard OSGi manifest headers

2008-05-03 Thread Alin Dreghiciu
with different experiences and use cases in the field participate. Alin Dreghiciu http://www.ops4j.org - New Energy for OSS Communities - Open Participation Software. http://www.qi4j.org- New Energy for Java - Domain Driven Development. http://malaysia.jayway.net - Great People working

Re: SpringSource Bundle Repository

2008-05-02 Thread Alin Dreghiciu
As I saw, but I did not go to much n detail, the Spring Bundle Repository is their own bundle repository, meaning that they have a directory where they and the user can store bundles depending on their type (normal bundles and PARs). I assume that they parse the metadata and use it to resolve the

Re: SpringSource Bundle Repository

2008-05-02 Thread Alin Dreghiciu
I wasn't aware of initially, in that they introduce some new manifest headers for specifying dependencies. If they do this for their repository bundles, then it might not be so useful for us...I am not sure what it means for us, so it will have to be investigated too. - richard Alin

Re: Bnd: Exporting META-INF ?

2008-03-19 Thread Alin Dreghiciu
, Guillaume Sauthier [EMAIL PROTECTED] wrote: Alin Dreghiciu wrote: I especially requested that from Peter K a while ago. Mainly my request was related to not export META-INF if you used * in Export-Package instruction, if I recall it correctly. The reasoning was related to how are you going

Re: [VOTE] Changing version schema for org.osgi.* modules

2008-03-12 Thread Alin Dreghiciu
(not binding) I'm wondering about two facts related to this artifacts: 1. Are this bundle you are talking about 4.0.0 or 4.0.1 ? 2. Please don't mind but why is Felix required to have it's own artifacts for this bundles? Are they different then the ones from OSGi Alliance? If the are not why not

Re: [VOTE] Changing version schema for org.osgi.* modules

2008-03-12 Thread Alin Dreghiciu
On Thu, Mar 13, 2008 at 2:03 AM, Stefano Lenzi [EMAIL PROTECTED] wrote: Alin Dreghiciu wrote: (not binding) I'm wondering about two facts related to this artifacts: 1. Are this bundle you are talking about 4.0.0 or 4.0.1 ? I'm speaking about the one that we release

[jira] Commented: (FELIX-481) Change OBR default repository url

2008-02-20 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12570937#action_12570937 ] Alin Dreghiciu commented on FELIX-481: -- The main problem addressed by this issue

[jira] Commented: (FELIX-481) Change OBR default repository url

2008-02-20 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12570955#action_12570955 ] Alin Dreghiciu commented on FELIX-481: -- You are right. The repository is 6.5Mb

[jira] Commented: (FELIX-481) Change OBR default repository url

2008-02-20 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12570958#action_12570958 ] Alin Dreghiciu commented on FELIX-481: -- Richard's proposal (Felix own repository

[jira] Commented: (FELIX-481) Change OBR default repository url

2008-02-08 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12566962#action_12566962 ] Alin Dreghiciu commented on FELIX-481: -- I do not get exactly what you mean but I have

[jira] Created: (FELIX-485) Lazy read of obr.repository.url

2008-02-08 Thread Alin Dreghiciu (JIRA)
: 1.0.0 Reporter: Alin Dreghiciu Priority: Minor Initial repository list is created by reading the obr.repository.url in RepositoryAdminImpl. This can(should) be changed with a lazy initialization (so read of obr.repository.url) by the moment that is actually needed

[jira] Created: (FELIX-480) NPE on discoverResources with invalid syntax filter

2008-02-07 Thread Alin Dreghiciu (JIRA)
Repository (OBR) Affects Versions: 1.0.0 Reporter: Alin Dreghiciu Priority: Minor When using the RepositoryAdmin.discoverResources with an invalid syntax filter string it will result into a NPE as the osgi filter creation syntax exception is just sent to System.err

[jira] Updated: (FELIX-480) NPE on discoverResources with invalid syntax filter

2008-02-07 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-480?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-480: - Attachment: FELIX-480.patch Patch to return an empty resource array in case of a filter syntax

[jira] Created: (FELIX-483) Log detailed information on invalid syntax in parsed repository xml requirements

2008-02-07 Thread Alin Dreghiciu (JIRA)
Issue Type: Improvement Components: Bundle Repository (OBR) Affects Versions: 1.0.0 Reporter: Alin Dreghiciu While parsing the repository xml BundleRepository logs an exception message while parsing requirements. This is fine but the information logged

[jira] Created: (FELIX-484) Possible NPE in BundleRepository RequirementImpl

2008-02-07 Thread Alin Dreghiciu (JIRA)
(OBR) Affects Versions: 1.0.0 Reporter: Alin Dreghiciu In case of setting an invalid syntax requirement filter in RequirementImpl internal Filter (m_filter) is set to null. This results in NPE as soon as getFilter, isSatisfied, equals or hashcode gets called. I think

Re: Status and future of bundle repository

2008-02-06 Thread Alin Dreghiciu
Correction: ... is a kind of slow on parsing the repository xml even under not such a big repository like the one from osgi alliance (how this will scale on large repository or federation of repositories). If I use a local system file copy repository.xml instead of accessing directly the one

Re: bundleplugin 1.2.1-SNAPSHOT

2008-02-02 Thread Alin Dreghiciu
. Version 0.0.236 solves your problem ... sorry for the delay ... Kind regards, Peter Kriens On 24 jan 2008, at 11:01, Alin Dreghiciu wrote: Hi Peter, I found the following case: 1. I have a bundle that inlines another bundle jar 2. The inlined bundle has an osgi manifest header (e.g. Export

Re: [Vote] release org.osgi.service.obr 1.0.1

2008-02-01 Thread Alin Dreghiciu
Hi, Shouldn't org.osgi.service.obr be a bundle not a plain jar? I know that is included into org.apache.felix.bundlerepository bundle but why it should not be a stand alone bundle? Something related (maybe) is that org.apache.felix.bundlerepository: 1. exports org.osgi.service.obr package

Re: [Vote] release org.osgi.service.obr 1.0.1

2008-02-01 Thread Alin Dreghiciu
Anyhow (see bellow) my vote is +1 as the changes does not influence the discussion bellow. Alin On Feb 1, 2008 7:23 PM, Stuart McCulloch [EMAIL PROTECTED] wrote: On 01/02/2008, Alin Dreghiciu [EMAIL PROTECTED] wrote: Hi, Shouldn't org.osgi.service.obr be a bundle not a plain jar? I know

Re: [VOTE] Release configadmin 1.0.0

2008-01-30 Thread Alin Dreghiciu
+1 On Jan 31, 2008 3:56 AM, Carsten Ziegeler [EMAIL PROTECTED] wrote: Hi, I've compiled the release candidate for our first official configadmin release (1.0.0) and put it up here: http://people.apache.org/~cziegeler/releases/felix/configadmin/ The KEYS file for verifying the signature is

[jira] Created: (FELIX-472) Embed-Dependency, Include-Resource and inline

2008-01-28 Thread Alin Dreghiciu (JIRA)
Reporter: Alin Dreghiciu When using Embed-Dependency maven bundle plugin adds the necessary entries to Include-Resource bnd instruction. This entries are added by appending them to the end of Include-Resource string. This works fine by most of the cases but this will not allow

Re: [VOTE] Felix 1.0.2 framework and main release as well as bundlerepository 1.0.1 release

2008-01-27 Thread Alin Dreghiciu
+1 (not binding) Alin On Jan 28, 2008 8:04 AM, Karl Pauls [EMAIL PROTECTED] wrote: I would like to call a vote on the framework and main 1.0.2 as well as on the bundlerepository 1.0.1 release. The source release archives, signature files, SHA and MD5 message digests for each are available

Re: [Vote] release maven-bundle-plugin 1.2.0

2008-01-18 Thread Alin Dreghiciu
Stuart, PeterK found the spilt package problem. Can you wait and include a new release from Peter ? Thanx, Alin On Jan 18, 2008 4:29 PM, Niall Pemberton [EMAIL PROTECTED] wrote: On Jan 17, 2008 6:48 PM, Stuart McCulloch [EMAIL PROTECTED] wrote: Hi folks, I'd like to (finally!) start a

Re: [Vote] release maven-bundle-plugin 1.2.0

2008-01-18 Thread Alin Dreghiciu
would suggest to go on with this release and do a next release when other stuff is ready, such as fixes in dependencies, the spurious windows issue, etc. Regards Felix Am Freitag, den 18.01.2008, 17:25 +0800 schrieb Alin Dreghiciu: Stuart, PeterK found the spilt package problem. Can you

Re: http.jetty based on Jetty 6

2008-01-15 Thread Alin Dreghiciu
On Jan 16, 2008 3:06 PM, Rob Walker [EMAIL PROTECTED] wrote: ... That's one reason I've always been reluctant to see the Felix Http Service adorned or extended with features beyond the standard. I can see how beneficial such extensions are, but they then mean bundles and applications using

Re: http.jetty based on Jetty 6

2008-01-12 Thread Alin Dreghiciu
Beside Niclas points there are some additional facts related to OPS4J: * it's open participation meaning that virtually anybody can contribute. No need for patches. * release process. we tend to release often. Alin On Jan 13, 2008 1:05 PM, Niclas Hedhman [EMAIL PROTECTED] wrote: On Thursday 10

Re: Look at migration to more recent Jetty version (FELIX-55)

2008-01-08 Thread Alin Dreghiciu
Hi, I hope you do not get me wrong here but still have to ask. Does it worth reinventing the wheel? Pax Web is already built based on jetty6 ad is ASLv2. Maybe I is good to have the Felix http service remain on Jetty so the we get a wider selection, and spend the effort if possible on improving

Re: New PMC Member

2008-01-08 Thread Alin Dreghiciu
Stuart, Congratulations. Face to face tomorrow :) I'm in Dubai now. Alin On Jan 9, 2008 1:22 AM, David Leangen [EMAIL PROTECTED] wrote: Congrats, Stuart! -Original Message- From: Felix Meschberger [mailto:[EMAIL PROTECTED] Sent: 9 January 2008 07:24 To: Felix Dev Subject:

Re: Felix integration inside Eclipse pages = page

2007-12-21 Thread Alin Dreghiciu
Hi Clement, Hope you don't mind but may be interesting to know that at ops4j we developed an Eclipse plugin called Pax Cursor (based on Pax Runner) that makes deploying of bundles into Felix (both versions till now and the ones to come) quite trivial: http://wiki.ops4j.org/confluence/x/0QBN Alin

Re: Felix integration inside Eclipse pages = page

2007-12-21 Thread Alin Dreghiciu
Did you try 0.1.1 or 0.2.0 SNAPHSOT: http://wiki.ops4j.org/confluence/x/FgJN Alin On Dec 21, 2007 3:13 PM, Clement Escoffier [EMAIL PROTECTED] wrote: Hi, I just try it, it is very cool ! I add it on the wiki page. Clement -Message d'origine- De: Alin Dreghiciu [mailto:[EMAIL

Re: bundleplugin update

2007-12-20 Thread Alin Dreghiciu
+1. On Dec 20, 2007 6:19 PM, Stuart McCulloch [EMAIL PROTECTED] wrote: Hi folks, Carlos has released the maven-dependency-tree and maven-osgi shared components (thanks Carlos!) which means there are no more external snapshot dependencies blocking release of the bundleplugin. So we just

Re: [Quick vote] Coding Standard for Import Statements

2007-12-18 Thread Alin Dreghiciu
I don't know if this counts only for committers but my vote it would be b) I prefer the proposed way. And IDE's give plenty of support on this. Alin On Dec 18, 2007 4:16 PM, Carsten Ziegeler [EMAIL PROTECTED] wrote: Hi, I think we shouldn't make not a big fuzz about this, but I think we

[jira] Closed: (FELIX-394) Bundle.getEntryPaths NPE on system bundle

2007-11-30 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-394?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu closed FELIX-394. Bundle.getEntryPaths NPE on system bundle

[jira] Created: (FELIX-394) Bundle.getEntryPaths NPE on system bundle

2007-10-15 Thread Alin Dreghiciu (JIRA)
: Alin Dreghiciu Priority: Minor When calling bundle.getEntryPaths on the system bundle an NPE is thrown: java.lang.NullPointerException at org.apache.felix.framework.GetEntryPathsEnumeration.init(GetEntryPathsEnumeration.java:35

Re: Moving bnd to Java 5 ...

2007-10-09 Thread Alin Dreghiciu
Peter, Why not move to java 5, use all those things you like and then use the retrotranslator to provide also a java 1.4 jar. I do that in pax runner and works fine. Alin On 10/9/07, Peter Kriens [EMAIL PROTECTED] wrote: I want to move bnd to Java 5. Not only do I wan to take advantage of the

Re: Issue when building Felix main project

2007-10-08 Thread Alin Dreghiciu
: Alin Dreghiciu [mailto:[EMAIL PROTECTED] Envoyé: dimanche 7 octobre 2007 15:11 À: dev@felix.apache.org Objet: Re: Issue when building Felix main project The difference between the two builds is the version of mavne-bundle- plugin. When building from main module maven bundle plugin

[jira] Updated: (FELIX-379) Registering multiple servlets may hide some

2007-09-28 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-379?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-379: - Comment: was deleted Registering multiple servlets may hide some

Re: Provisoning system

2007-09-28 Thread Alin Dreghiciu
/ support. Cheers, Alin Dreghiciu On 9/28/07, Guillaume Nodet [EMAIL PROTECTED] wrote: For ServiceMix 4.0, we are thinking about implementing a provisioning system (see https://issues.apache.org/activemq/browse/SM-1071). As ServiceMix will be based on OSGi, OBR sounds like a good tool to use

Re: Provisoning system

2007-09-28 Thread Alin Dreghiciu
Marcel,Will the donated implementation be inlude also Resource Processors beside the Deployment Admin implementation. As for example an impl of Autoconf Resource Processer? Thanx, Alin On 9/28/07, Marcel Offermans [EMAIL PROTECTED] wrote: On Sep 28, 2007, at 10:56 , Guillaume Nodet wrote:

Re: Provisoning system

2007-09-28 Thread Alin Dreghiciu
Indeed, as I told you is not matching your requirements.But the usecases I describe may give you some out of the box functionality that you may use. Alin On 9/28/07, Guillaume Nodet [EMAIL PROTECTED] wrote: Thanks a lot for these detailed explanations. After a very brief overview of pax

Re: Provisoning system

2007-09-28 Thread Alin Dreghiciu
in the development) of this spec once the Deployment Admin has been donated. Regards Felix Am Freitag, den 28.09.2007, 19:51 +0200 schrieb Alin Dreghiciu: Marcel,Will the donated implementation be inlude also Resource Processors beside the Deployment Admin implementation

Re: Felix-370 Integration

2007-09-21 Thread Alin Dreghiciu
On 9/20/07, Richard S. Hall [EMAIL PROTECTED] wrote: Stefano Lenzi wrote: * tools/plugins/maven-felix-plugin - this should probably be in someone's sandbox, since it is an idea that is being fleshed out. I can move it in my sandbox, I'm interested in developing such plugin, I

Re: Felix-370 Integration

2007-09-21 Thread Alin Dreghiciu
On 9/21/07, Stuart McCulloch [EMAIL PROTECTED] wrote: yes, can do - but are you suggesting the felix plugin gets deprecated? I would vote for deprecation as I do not see the necessity for more plugins with the same target. And since pax construct is a superset if it will handle exclusions and

Re: Maven-OBR-Plugin

2007-09-11 Thread Alin Dreghiciu
be reused? Alin Dreghiciu On 9/11/07, Clement Escoffier [EMAIL PROTECTED] wrote: Hello, Just to announce that I commit two projects in my sandbox : - The maven-obr-plugin : creating OBR repository automatically when you install or deploy 'bundle' artifacts. - A obr

Java packages and execution environments

2007-09-03 Thread Alin Dreghiciu
Hi, Do you guys know if there is anywhere a standard/strict list of packages that should be available per execution environment? Regards, Alin

Re: No interest in commons releases?

2007-08-24 Thread Alin Dreghiciu
on the osgi metadata and improve them with the help of comunity that use them, a validation that we can not archive with votes. Alin Dreghiciu On 8/24/07, Carsten Ziegeler [EMAIL PROTECTED] wrote: I'm wondering if there is any interest in the commons releases I tried to push out at all? So far

ConfigurationAdmin and properties starting with .

2007-08-08 Thread Alin Dreghiciu
Hi guys, I have a question: Is there any restriction on the key of a service property, restriction that says that the key should not start with . (dot)? I'm asking this because I'm using the configuration admin and the configuration admin is complaining about properties that start with . when

Re: ConfigurationAdmin and properties starting with .

2007-08-08 Thread Alin Dreghiciu
using other characters, feel free to report a JIRA issue. I will the (try to) fix this issue. Regards Felix Am Mittwoch, den 08.08.2007, 17:38 +0300 schrieb Alin Dreghiciu: Hi guys, I have a question: Is there any restriction on the key of a service property, restriction that says

Re: Issues regarding felix commons

2007-07-04 Thread Alin Dreghiciu
Please do, as there are a couple of wrapped jars that are quite useful. Thanx, Alin Dreghiciu On 7/4/07, Carsten Ziegeler [EMAIL PROTECTED] wrote: Richard S. Hall wrote: Sounds good to me. I was just going to post a message asking for volunteers for Felix Commons caretakers. I know

[jira] Commented: (FELIX-55) Look at migration to more recent Jetty version

2007-07-03 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-55?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12509932 ] Alin Dreghiciu commented on FELIX-55: - Related to this, there is an effort going on at ops4j to implement the http

Re: Commons bundles and versionning

2007-05-25 Thread Alin Dreghiciu
think it really depends on how many bundles will end in the commons area. On 5/25/07, Alin Dreghiciu [EMAIL PROTECTED] wrote: I had the same doubt this days and it also started from the servlet api. As right now by posting a new pom for another version to be wrapped indeed we will get

[jira] Created: (FELIX-294) commons-validator 1.3.1 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
commons-validator 1.3.1 wrapping - Key: FELIX-294 URL: https://issues.apache.org/jira/browse/FELIX-294 Project: Felix Issue Type: New Feature Components: Felix Commons Reporter: Alin

[jira] Updated: (FELIX-294) commons-validator 1.3.1 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-294?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-294: - Attachment: pom.xml commons-validator 1.3.1 wrapping

[jira] Created: (FELIX-295) servlet-api 2.4 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
servlet-api 2.4 wrapping - Key: FELIX-295 URL: https://issues.apache.org/jira/browse/FELIX-295 Project: Felix Issue Type: New Feature Components: Felix Commons Reporter: Alin Dreghiciu

[jira] Updated: (FELIX-295) servlet-api 2.4 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-295?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-295: - Attachment: pom.xml servlet-api 2.4 wrapping - Key

[jira] Created: (FELIX-296) jsp-api 2.0 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
jsp-api 2.0 wrapping Key: FELIX-296 URL: https://issues.apache.org/jira/browse/FELIX-296 Project: Felix Issue Type: New Feature Components: Felix Commons Reporter: Alin Dreghiciu

[jira] Updated: (FELIX-296) jsp-api 2.0 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-296?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-296: - Attachment: pom.xml jsp-api 2.0 wrapping Key: FELIX-296

[jira] Created: (FELIX-297) portlet-api 1.0 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
portlet-api 1.0 wrapping Key: FELIX-297 URL: https://issues.apache.org/jira/browse/FELIX-297 Project: Felix Issue Type: New Feature Components: Felix Commons Reporter: Alin Dreghiciu Create

[jira] Updated: (FELIX-297) portlet-api 1.0 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-297?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-297: - Attachment: pom.xml portlet-api 1.0 wrapping Key

[jira] Created: (FELIX-299) backport-util-concurrent 3.0 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
: Alin Dreghiciu Create an OSGi bundle for the backport-util-concurrent 3.0 jar. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.

[jira] Updated: (FELIX-298) c3p0 0.9.1.1 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-298: - Priority: Minor (was: Major) c3p0 0.9.1.1 wrapping - Key

[jira] Created: (FELIX-298) c3p0 0.9.1.1 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
c3p0 0.9.1.1 wrapping - Key: FELIX-298 URL: https://issues.apache.org/jira/browse/FELIX-298 Project: Felix Issue Type: New Feature Components: Felix Commons Reporter: Alin Dreghiciu

[jira] Updated: (FELIX-298) c3p0 0.9.1.1 wrapping

2007-05-24 Thread Alin Dreghiciu (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alin Dreghiciu updated FELIX-298: - Attachment: pom.xml c3p0 0.9.1.1 wrapping - Key: FELIX

Felix commons

2007-05-24 Thread Alin Dreghiciu
can imagine that this is possible since the wrapped jars do not change but I just wanna be sure. Thanx, Alin Dreghiciu

Re: [jira] Created: (FELIX-299) backport-util-concurrent 3.0 wrapping

2007-05-24 Thread Alin Dreghiciu
limitations. Till then I will search around for something to wrap as 300 :) Alin On 5/24/07, Richard S. Hall [EMAIL PROTECTED] wrote: I think Alin just wants to create the 300th issue... ;-) - richard Alin Dreghiciu (JIRA) wrote: backport-util-concurrent 3.0 wrapping

Re: Roadmap

2007-05-21 Thread Alin Dreghiciu
+1 On 5/21/07, Marcel Offermans [EMAIL PROTECTED] wrote: On May 21, 2007, at 15:08 , Richard S. Hall wrote: Tim Moloney wrote: I agree with the proposed roadmap. My only comment is on the name of the plugin. bundleplugin doesn't follow the Maven convention of maven-foo-plugin or

<    1   2   3   >