Re: Embedded Servicemix problem with servicemix.xml

2006-03-16 Thread Guillaume Nodet
This issue has been reported several times, but I do not have a clear understanding of the causes. You could just remove the schema locations though ... Guillaume Nodet On 3/15/06, Peter Klotz <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm using servicemix embedded in a Avalon Phoenix container. I to

soap-binding example

2006-03-16 Thread Jaime Fernández
I'm trying soap-binding example on servicemix-3.0-SNAPSHOT. I've copied soap-binding source folder into examples folder and executed "ant setup" to build the sample. The problem is that there is no "components" directory in my servicemix-3.0 binary distribution so the ant task fails:

RE: soap-binding example

2006-03-16 Thread Quinlan, Daire \(Daire\)
Its odd there isn't a components directory there, should be just off the servicemix root directory. using the 3.0 snapshot the two assemblies you're looking for are: servicemix-jsr181-3.0-SNAPSHOT.zip and servicemix-http-3.0-SNAPSHOT.zip all the ant script in that instance does is copy the two of

RE: soap-binding example

2006-03-16 Thread David Kaspar
It worked for me just running "ant" (the default target is run) To make a short story long, you have to be running on JDK 1.5 (1.4 will cause errors). David Kaspar ASITE SOLUTIONS LTD T+44 (0) 20 7749 7892 -Original Message- From: Jaime Fernández [mailto:[EMAIL PROTECTED] Sent: T

RE: PXE->JBI endpoint questions.

2006-03-16 Thread Quinlan, Daire \(Daire\)
Thanks for that Guillame, got it working. For some (stupid) reason I hadn't looked to closely at that example. I was confused as to the difference between normal operation (where pxe uses the soap address to pick up the endpoint ?) and the JBI case where it seems to use a combination of the servic

Re: soap-binding example

2006-03-16 Thread Jaime Fernández
I've just downloaded the last version of servicemix. It has the "components" directory, even with the soap-binding sample, and it works. On 3/16/06, Quinlan, Daire (Daire) <[EMAIL PROTECTED]> wrote: > > > Its odd there isn't a components directory there, should be just off the > servicemix root di

Re: PXE->JBI endpoint questions.

2006-03-16 Thread Guillaume Nodet
On 3/16/06, Quinlan, Daire (Daire) <[EMAIL PROTECTED]> wrote: > > > > On a related note though, surely on a NMS bus neither the service nor > the bindings should actually be necessary in the WSDL at all ? You're right, only the PortType should be necessary. However, it would only work if there i

POP3/IMAP polling

2006-03-16 Thread David Kaspar
I have searched the various resources for existing POP3/IMAP polling components but have not found any. Are there any such components already present? David

Queue creation in servicemix-jms

2006-03-16 Thread Charles Souillard
Hi all, I am trying to deploy a SU to servicemix-jms (SM-jms). This SU is a consumer, as its role is to forward a received message on HelloWorldQueue to another service called HelloWorldService deployed into my BPEL component. I am trying to understand how SM-jms is creating queues. I have br

RE: PXE->JBI endpoint questions.

2006-03-16 Thread Quinlan, Daire \(Daire\)
> You're right, only the PortType should be necessary. > However, it would only work if there is only one PortType > defined in the wsdl, which may be not always the case. > That's the reason why ServiceMix looks for the endpoint > definition to retrieve the interface name. We could also > che

Re: Queue creation in servicemix-jms

2006-03-16 Thread Guillaume Nodet
Yes, a great feature of ActiveMQ is that queues are created dynamically. However, queue creation is not specified by the jms spec and AFAIK the Session.createQueue method does not really creates the queue, but only a pointer to it. You will have to check Joram administration doc to see how queues c

Re: Queue creation in servicemix-jms

2006-03-16 Thread Charles Souillard
Guillaume, It is possible for me to that with JORAM. In fact session.createQueue is in the jms spec. My problem is that SM-jms doesn't bind the queue in jndi. How is it working for ActiveMQ ? Is the queue available in the jndi after session.createQueue ? The problem is I can't modify SM code to

Re: Queue creation in servicemix-jms

2006-03-16 Thread Guillaume Nodet
Usually, JMS brokers have to create the physical queue by some administration process and bound to JNDI. Using ActiveMQ, the physical destination will be create on the fly so that there is no need for JNDI. Please read the http://joram.objectweb.org/current/doc/Joram-4.3-en.pdf doc, it seems at a g

InstallationService.unloadInstaller()

2006-03-16 Thread David Grigglestone
Any thoughts on why when unloading a drools component, it fails to remove the component's root directory .. testing to date indicates that the jars are still in use (despite) the component's class loaders having been nulled (InstallerMBeanImpl.uninstall()). - David

Re: POP3/IMAP polling

2006-03-16 Thread Guillaume Nodet
Hi David ! Have you tried org.apache.servicemix.components.email.MimeMailPoller ? Cheers, Guillaume Nodet * *On 3/16/06, David Kaspar <[EMAIL PROTECTED]> wrote: > > I have searched the various resources for existing POP3/IMAP polling > components but have not found any. > > Are there any such com

RE: POP3/IMAP polling

2006-03-16 Thread David Kaspar
That's the one, Thank you David Kaspar -Original Message- From: Guillaume Nodet [mailto:[EMAIL PROTECTED] Sent: Thursday, March 16, 2006 4:13 PM To: servicemix-users@geronimo.apache.org Subject: Re: POP3/IMAP polling Hi David ! Have you tried org.apache.servicemix.components.email.Mi

How to expose a wsdl externally (WebService)?

2006-03-16 Thread Robert Almonte
Hi ServiceMix team, I would like to know if it is possible to expose a Web Service externally (WSDL) using a BC that host the service (using what servicemix already provides). I have been checking the soap-binding and xfire-binding example, but I still cannot get a whole picture to tie these t

Multipart MIME email messages?

2006-03-16 Thread Marc Tremblay
Is anyone currently working on adding the ability to send multipart MIME email messages? I'm going to need to be able to send multipart/alternative messages in the near future and would be willing to contribute to the effort. Is there anything I should be aware of before jumping in? M.

Re: How to expose a wsdl externally (WebService)?

2006-03-16 Thread Eric Dofonsou
I too had the same issue, Right now I build my own endpoint that wraps around the current endpoint and provide a mechanism to expose WSDL when it receives a ?WSDL request on the servicemix BC. However, the new servicemix-http component has a way to expose WSDL via a wsdlResource attribute (see : ht

Re: How to expose a wsdl externally (WebService)?

2006-03-16 Thread Guillaume Nodet
The servicemix-http component is also able to retrieve the wsdl from the target JBI endpoint and to expose it (adding binding informations), if none is provided with the wsdlResource attribute. Currently, it only adds the http or soap address to the port of the service, but this is a beginning ...

Re: Queue creation in servicemix-jms

2006-03-16 Thread Charles Souillard
Thanks Guillaume, I will have a look at the "biggest" JORAM doc... For my information, can you explain me how it works in activeMQ as I know you know it very well ? I just want to know how it is possible with activeMQ to send a message on a queue dynamically created and not available in the jnd