Re: General Question

2006-05-01 Thread Guillaume Nodet
If this happens only when you start ServiceMix, it may be that the quartz component fires an event before the target endpoint is activated... Not sure if there is a simple way to avoid that though (unless you use service units and the lwcontainer). Cheers, Guillaume Nodet On 5/1/06, dajevu <[EM

Re: Error when initializing servicemix-wsn2005 component

2006-05-01 Thread Guillaume Nodet
The WS-Notification component needs some configuration to be integrated in the default distribution of ServiceMix (which is obvisously not a good idea). I will take a look at that asap so that you should be able to just drop the component... Cheers, Guillaume Nodet On 4/30/06, frederic.dreyfus

Re: Class loading problem

2006-05-01 Thread Guillaume Nodet
ServiceMix has the spring jars inside its classpath, so it is also available to the components. But if you want your component to be container independant, you have to include it. Cheers, Guillaume Nodet On 4/29/06, Hossam Karim <[EMAIL PROTECTED]> wrote: I guess you mean the component class l

Re: Support of WSRF?

2006-05-01 Thread James Strachan
There is some WS-RF used inside the WS-Notification implementation; but its not been generallsed to provide general WS-RF services yet. On 4/30/06, Guillaume Nodet <[EMAIL PROTECTED]> wrote: There is no support for WSRF in ServiceMix. What' s your use case ? Cheers, Guillaume Nodet On 4/29/06,

RE: Class loading problem

2006-05-01 Thread Hossam Karim
So if I am loading some beans XML source that comes with the component installation artifact, is it expected that Spring can normally load the beans, or should a special procedure be taken according to your understanding of SM class loading mechanism? -Original Message- From: Guillaume No

How to partition business logic into components

2006-05-01 Thread Nicanor
I'm very new to ServiceMix, although I'm an experienced Java developer. I installed SM, ran a few of the examples, and read quite a bit of the documentation. Now I'm ready to plan my first pilot project and would like suggestions for an effective component design. Here is the scenario (somewhat s

Re: Class loading problem

2006-05-01 Thread Guillaume Nodet
You should include the jars where the beans are in the component classpath. If you want to do that at bootstrap time, you need to include them in the bootstrap classloader that you define in your jbi descriptor. This classloader has servicemix container classloader as a parent and includes all t

Re: Send a remote WS-Notification subscription

2006-05-01 Thread frederic.dreyfus
I tried your example but it did not work. Actually, I have a simple WSNComponent declared in my servicemix.xml file : Then I deploy a JBI component into the deploy directory. This JBI component contains the soap binding : http://localhost:8192/Broker/";

RE: Class loading problem

2006-05-01 Thread Hossam Karim
Well, it is not working, Spring can't find the classes although they are in the components class path, and the loading takes place in the 'init' method -Original Message- From: Guillaume Nodet [mailto:[EMAIL PROTECTED] Sent: Monday, May 01, 2006 2:22 PM To: servicemix-users@geronimo.apac

Re: xfire components

2006-05-01 Thread mqaiserm
what you mean ? XFire componenets are not supported in servicemix and now we should use jsr181 components ? am I right ? -- View this message in context: http://www.nabble.com/xfire-components-t1526097.html#a4172232 Sent from the ServiceMix - User forum at Nabble.com.

Re: How to partition business logic into components

2006-05-01 Thread Bruce Snyder
On 5/1/06, Nicanor <[EMAIL PROTECTED]> wrote: I'm very new to ServiceMix, although I'm an experienced Java developer. I installed SM, ran a few of the examples, and read quite a bit of the documentation. Now I'm ready to plan my first pilot project and would like suggestions for an effective com

Re: xfire components

2006-05-01 Thread Guillaume Nodet
Lightweight components have never supported wsdl. WSDL is supported by standard JBI components and I'm not very keen on spending time implementing features that are already provided by other components... unless you provide a patch ;) So yes, you should use the jsr181 component which is also based

Exchange throttling

2006-05-01 Thread Marc Tremblay
How do I turn on exchange throttling? I see there is a setExchangeThrottling(boolean) method on ComponentMBeanImpl but I can't figure out how to set it to 'true' from within my servicemix.xml configuration file. Marc

Re: Send a remote WS-Notification subscription

2006-05-01 Thread Guillaume Nodet
I fixed a bug preventing the WSDL to be exposed. I also added a simple demo showing how to expose the WS-NotificationBroker over http/soap. All this should be available in next nightly snapshot. Cheers, Guillaume Nodet On 5/1/06, frederic.dreyfus <[EMAIL PROTECTED]> wrote: I tried your example

DefaultServiceMixClient.send()

2006-05-01 Thread Marc Tremblay
Hello all, I have the code shown below calling a DefaultServiceMixClient instance to send messages to ServiceMix. ServiceMixClient client = getServiceMixClient(); InOnly exchange = client.createInOnlyExchange(); NormalizedMessage normalizedMessage = exchange.getInMessag

Re: DefaultServiceMixClient.send()

2006-05-01 Thread Guillaume Nodet
Hi Marc, Take a look at http://servicemix.org/Writing+lightweight+components The behavior you see is a typical one when one component's queue is full. Cheers, Guillaume Nodet On 5/1/06, Marc Tremblay <[EMAIL PROTECTED]> wrote: Hello all, I have the code shown below calling a DefaultServiceMix

Re: Exchange throttling

2006-05-01 Thread Guillaume Nodet
AFAIK, this can only be done using jmx. You should raise a JIRA for that. Cheers, Guillaume Nodet On 5/1/06, Marc Tremblay <[EMAIL PROTECTED]> wrote: How do I turn on exchange throttling? I see there is a setExchangeThrottling(boolean) method on ComponentMBeanImpl but I can't figure out how to

Re: Class loading problem

2006-05-01 Thread Guillaume Nodet
You may try the following things: * set the thread classloader to the classloader of the component (though this should have already been done by ServiceMix) * change the classloader so that it delegates to the component before trying the parent classloader: this will ensure spring is loaded from

soap header support using SAAJ

2006-05-01 Thread dajevu
Hi, I'm trying to invoke a web service that requires a soap header. The raw XML that works is: http://idalica.compiere.soa"; xmlns:sess="http://ws.apache.org/namespaces/axis2"; xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xs="http://www.w3.org/2001/XMLSchema";> urn:

Re: soap header support using SAAJ

2006-05-01 Thread dajevu
Never mind -- I figured out that I can just pass the whole envelope to SAAJ. jeff -- View this message in context: http://www.nabble.com/soap-header-support-using-SAAJ-t1535663.html#a4172306 Sent from the ServiceMix - User forum at Nabble.com.

AW: Maximum memory

2006-05-01 Thread Gerdes, Mike
Ok, I will set up a JIRA. -Ursprüngliche Nachricht- Von: Guillaume Nodet [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 28. April 2006 23:11 An: servicemix-users@geronimo.apache.org Betreff: Re: Maximum memory I guess the only real way you can control that is to change the size of the qu