Re: handling InputStream as a service parameter

2008-05-07 Thread ant elder
On Tue, May 6, 2008 at 11:08 PM, Simon Nash [EMAIL PROTECTED] wrote: Eugeny N Dzhurinsky wrote: Hello there! I noticed there's no way to define a service which accepts an InputStream and returns an InputStream as a result (in fact it is possible to start such service, but when a

Re: Need help again on binding to external web service with login authentication within Tuscany

2008-05-07 Thread Marina Deslaugiers
Hi Simon, Thanks for the explanations. I will download and have a look to the calculator example you mention. However, I already have seen the sample/helloworld-ws-reference (service)-secure and I do not know whether and how I can use the policies they define ; indeed, as I said, I use

Re: Need help again on binding to external web service with login authentication within Tuscany

2008-05-07 Thread Simon Laws
On Wed, May 7, 2008 at 1:49 PM, Marina Deslaugiers [EMAIL PROTECTED] wrote: Hi Simon, Thanks for the explanations. I will download and have a look to the calculator example you mention. However, I already have seen the sample/helloworld-ws-reference(service)-secure and I do not know

Re: Need help again on binding to external web service with login authentication within Tuscany

2008-05-07 Thread Marina Deslaugiers
Hi, Thanks very much for you quick answer. Well, the information I get about that is the following: - the authentication process on remote web service side is use of HTTP Basic Authentication scheme The account information, and more exactly the client application identifier (i.e

Problem with the Serialization of an SDO object

2008-05-07 Thread C.Vamshi Shekhar
Greetings I was working with jboss-esb and was trying to serialize the SDO's over jms messages and got the following error. Any idea how to resolve this?? ERROR [JmsGatewayListener] Problems invoking method process java.lang.reflect.InvocationTargetException at

Problem with the Serialization of an SDO object

2008-05-07 Thread C.Vamshi Shekhar
Greetings I was working with jboss-esb and was trying to serialize the SDO's over jms messages and got the following error. Any idea how to resolve this?? ERROR [JmsGatewayListener] Problems invoking method process java.lang.reflect.InvocationTargetException at

Authentication and policy issues

2008-05-07 Thread Steve Chamberlain
Hi all I have a few related issues to raise concerning authentication. Firstly, when can we hope to see the policy framework being implemented in bindings other than WS? My concern is particularly token-based authentication with the JMS binding. I know, given the new policy framework SPIs, it

Beginner question on running Tuscany demo-mortgage-loanapproval

2008-05-07 Thread Dan Becker
This is a rather simple question on running the SCA demo-mortgage-loanapproval. I am attempting to run this from my Eclipse environment, so I have most of the Tuscany projects on the build path as dependent projects and much of my MAven repos on the build path as dependent libraries.

RE: Beginner question on running Tuscany demo-mortgage-loanapproval

2008-05-07 Thread Ashwini Kumar Jeksani
Hi Dan, Before running the mortgage-loanapproval run the mortgage-creditcheck which will start the CreditCheck Service. In your case it is trying to connect to the CreditCheck Service which was not started. For more information refer to the README under mortgage-loanapproval for information

Re: How do I expose my BPEL component as a webservice?

2008-05-07 Thread Mike Edwards
Dalys, Can you post the contents of the following files, please: - composite file - BPEL process file - WSDL file The WSDL file is especially important here - it defines the interface that the BPEL process is using and also any policies that may apply. It appears as if there is a failure at

Re: handling InputStream as a service parameter

2008-05-07 Thread Raymond Feng
Hi, It seems that you are trying to pass binary data over Web Service binding. Tuscany doesn't support it yet (At this moment we assume InputStream contains XML data). We have started some discussions on the tuscany-dev mailing list recently. From the databinding perspective, we probably need

Re: Problem with the Serialization of an SDO object

2008-05-07 Thread Raymond Feng
Hi, You need to make sure the SDO types are correctly registered before the deserialization of the SDO data objects. For generated SDO classes, you can call the XXXFactory.INSTANCE.register(...) method. Thanks, Raymond -- From: C.Vamshi Shekhar