Re: Communication between two esbs.

2008-07-23 Thread Gert Vanthienen
L.S., You can use the JMS flow (http://servicemix.apache.org/nmr-flows.html) to achieve this. If you configure the underlying ActiveMQ instances to work as a network-of-brokers (http://activemq.apache.org/networks-of-brokers.html), the JMS Flow will allow you to access service endpoints on t

Communication between two esbs.

2008-07-23 Thread skg
Hi, How the two different ESB based on servicemix can interact with each other. Can any one provide me some link or any document which implements this scenario. -- View this message in context: http://www.nabble.com/Communication-between-two-esbs.-tp18625549p18625549.html Sent from the ServiceM

Re: Validating in coming soap messages

2008-07-23 Thread Gert Vanthienen
Håkon, If you are not experiencing problems with the CXF validation and are only using CXF to expose your services, I would stick to that one. If you want use the new validation component, you'll need to set it up explicitly in your route using the EIP or Camel component. This is also the

Re: JBoss deployer and servicemix-bean

2008-07-23 Thread MOKRANE
how did you get jboss deployer? dipali.kucheria wrote: > > I have deployed JBoss-servicemix-deployer on JBoss 4.2.2. > I am trying to integrate with Websphere MQ as Consumer and have a POJO > listen to the message . > > I have following configuration in my deploy\*-sm.xml file : > > http://

Re: CXF and log4j

2008-07-23 Thread Bruce Snyder
On Wed, Jul 23, 2008 at 8:54 AM, Fullocto <[EMAIL PROTECTED]> wrote: > > Hi Freeman, > > Do you know how I can stop displaying the log information in servicemix > console to see if there is a difference in performance? > > I tried to add a logger in ServiceMix_HOME/conf/log4j.xml > logger name=org.

CXF and log4j

2008-07-23 Thread Fullocto
Hi Freeman, Do you know how I can stop displaying the log information in servicemix console to see if there is a difference in performance? I tried to add a logger in ServiceMix_HOME/conf/log4j.xml logger name=org.apache.cxf level value="error" but it doesn't want to move away -- View this mes

Validating in coming soap messages

2008-07-23 Thread Håkon Sagehaug
Hi Now I use cxf to validate in coming messages, but noticed that there was a component called validation. Can this be used for the same task, and will it be any difference performance vice or any other draw backs cheers, Håkon -- Håkon Sagehaug, Software Developer Parallab, Bergen Center for

CXF BC provider setting wrong content-type for soap 1.1?

2008-07-23 Thread Lukasz L.
I'm using CXF BC provider to make a call to external web service. Target service expects "Content-Type=text/xml" but CXF provider sends "application/soap+xml" without regarding SOAP version which is 1.1. I got an error: "server found request content type to be 'application/soap+xml; charset=UTF-8'

Re: Simple HTTP does not work.

2008-07-23 Thread gigeril
Ok i see!! thank you very much for your friendly and very fast help!! gnodet wrote: > > Yes, but as I said, the default marshaler assumes xml, so you'd have > to write your own set of consumer / provider marshaler to transform > the HTTP request from / to a JBI exchange. > Here are the inter

Re: Simple HTTP does not work.

2008-07-23 Thread Guillaume Nodet
Yes, but as I said, the default marshaler assumes xml, so you'd have to write your own set of consumer / provider marshaler to transform the HTTP request from / to a JBI exchange. Here are the interfaces to define: https://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-http/t

Re: Simple HTTP does not work.

2008-07-23 Thread gigeril
Yes in this Case it is xml, but I also want to sent plaintext as an Request ist this possible? gnodet wrote: > > The "Content-Type=text/xml" header indicates the body of the POST > method is an xml. Isn't the body you are sending an xml ? At least, > it seems so. If you client is not able to

Re: understanding the working of routing slip in servicemix-eip

2008-07-23 Thread Guillaume Nodet
Opps, there is a typo in the doc. it should be "pubSubDomain" with a 'n' at the end. On Wed, Jul 23, 2008 at 2:03 PM, navigator09 <[EMAIL PROTECTED]> wrote: > > > > How do I configure servicemix-jms su to point to a topic? when I used the > "pubSubDomaim " property in the jms provider it says no

Re: Configuring proxy server for new HTTP Provider/CXF BC

2008-07-23 Thread Lukasz L.
thanks for suggestions, acctully it worked for me when I added . and changed busCfg="classpath:cxf.xml" to busCfg="cxf.xml" to xbean.xml which is strange because '.' location should be on classpath by deafult. before that my cxf.xml file wasn't found, so final

Re: Simple HTTP does not work.

2008-07-23 Thread Guillaume Nodet
The "Content-Type=text/xml" header indicates the body of the POST method is an xml. Isn't the body you are sending an xml ? At least, it seems so. If you client is not able to handle xml payloads, I'd suggest using the new and endpoint and define a custom marshaler to generate a request that su

Re: understanding the working of routing slip in servicemix-eip

2008-07-23 Thread navigator09
How do I configure servicemix-jms su to point to a topic? when I used the "pubSubDomaim " property in the jms provider it says no such property available. Regards, Ganesh gnodet wrote: > > Right, or you may be able to use the EIP recipient list pattern to > forward a copy of the exchange to

Re: understanding the working of routing slip in servicemix-eip

2008-07-23 Thread Guillaume Nodet
Right, or you may be able to use the EIP recipient list pattern to forward a copy of the exchange to multiple JBI endpoints. On Wed, Jul 23, 2008 at 12:30 PM, Manuel EVENO <[EMAIL PROTECTED]> wrote: > If you need multiple consumer of a message, you should use JMS Topic instead > of JMS Queue. > Se

Re: Simple HTTP does not work.

2008-07-23 Thread gigeril
It works now to send messages over this I didn't configured the targetService properly. No i have another problem. My client sends the Tag "?" with an POST Method to the Server (RequestHeader="Content-type", "text/xml"). On the server i get the "?" within the RequestBody. This only happens if Se

Re: understanding the working of routing slip in servicemix-eip

2008-07-23 Thread Manuel EVENO
If you need multiple consumer of a message, you should use JMS Topic instead of JMS Queue. See http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JMS3.html#wp78715 On Wed, Jul 23, 2008 at 12:00 PM, navigator09 <[EMAIL PROTECTED]> wrote: > > Hi, > > I am implementing routing slip pattern in the appli

understanding the working of routing slip in servicemix-eip

2008-07-23 Thread navigator09
Hi, I am implementing routing slip pattern in the application. In the pattern I have routed the output of the webservice to a jms queue exposed as a service using the jms-su. A camel router is listing to the queue and processing the response and at the same time I also have a python script list

Re: Simple HTTP does not work.

2008-07-23 Thread Freeman Fang
Hi, I'm a little confused with your configuration. If you want to use htttp consumer and provider as a bridge (or proxy), the flow should be http client ===> servicemix http consumer>servicemix http provider> http server And the targetService and targetEndpoint

Re: Caught:org.springframework.beans.factory.BeanDefinitionStoreException:Unexcepted exception parsing XML document

2008-07-23 Thread Freeman Fang
Hi, Would you append the full stacktrace? Seems like some lib miss cause the problem Freeman klinsmann wrote: Hi everyone, I met a problem ,please,please help me!!! Caught:org.springframework.beans.factory.BeanDefinitionStoreException:Unexcepted exception parsing XML document from file [c:\

Simple HTTP does not work.

2008-07-23 Thread gigeril
I've got a Problem with ServiceMix and the HTTP Connector. I am using apache-servicemix-3.3-20080721.213539-7 for testing it. I am always getting the following error: WARN - jetty - / java.lang.IllegalStateException: Cannot write non xml faults for non soap messages

Caught:org.springframework.beans.factory.BeanDefinitionStoreException:Unexcepted exception parsing XML document

2008-07-23 Thread klinsmann
Hi everyone, I met a problem ,please,please help me!!! Caught:org.springframework.beans.factory.BeanDefinitionStoreException:Unexcepted exception parsing XML document from file [c:\servicemix3.2\book\1.xml]; nested exception is java .lang.IllegalStateEXception:Unable to invoke parseNestedCustomE

Re: Meeting a problem when using "servicemix 1.xml"

2008-07-23 Thread klinsmann
Hello, I have just copy the jar files which is in servicemix-shared-3.2.2-installer.zip to lib folder and run "servicemix 1.xml" again. The problem before has been solved, but there is a new problem : -- Caught:org.springframework.beans.factory.BeanDefinitionStoreException:Unexcepted exce

Re: Meeting a problem when using "servicemix 1.xml"

2008-07-23 Thread Ivanhoe Abrahams
Hi You shoul have a file called servicemix-shared-3.2.2-installer.zip in you hotdeploy directory. This zip file contains a series of jar files, one of which contains this class. So it should be picked up automatically Ivanhoe On Wed, Jul 23, 2008 at 10:05 AM, klinsmann <[EMAIL PROTECTED]> wrot

Meeting a problem when using "servicemix 1.xml"

2008-07-23 Thread klinsmann
Hi, Please please help me!!When i run my configuration of servicemix, I meet a problem: loading Apache ServiceMix from file: c:\servicemix3.2\book\1.xml Caught:org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Class that bean clas

Re: xml stylesheet in wsdl

2008-07-23 Thread Håkon Sagehaug
Hi Thanks for the help on this one cheers, Håkon 2008/7/23 Freeman Fang <[EMAIL PROTECTED]>: > I just post thread on cxf-dev list, to get more ideas > > Regards > Freeman > > > Freeman Fang wrote: > >> Hi Gert, >> >> It's hard to do it in servicemix IMHO. >> Actually cxf bc consumer publish a se

Re: xml stylesheet in wsdl

2008-07-23 Thread Freeman Fang
I just post thread on cxf-dev list, to get more ideas Regards Freeman Freeman Fang wrote: Hi Gert, It's hard to do it in servicemix IMHO. Actually cxf bc consumer publish a service using jetty on some port if we use http transport underlying and we reuse the mechanism in cxf to publish wsdl