Re: using service name to call a service

2007-06-05 Thread Mike Edwards
Muhwas, I dont understand what you are saying here. Surely, the actual service has a specific interface - it isn't simply anything, so you can only cast to the actual business interface it actually implements. Or did you envisage your client code introspecting the returned service proxy

Re: using service name to call a service

2007-06-01 Thread muhwas
interface were not passed as a parameter, what interface would you expect the returned proxy to implement? Dave - Original Message - From: Simon Laws [EMAIL PROTECTED] To: tuscany-dev@ws.apache.org Sent: Thursday, April 19, 2007 7:35 AM Subject: Re: using service name

Re: using service name to call a service

2007-04-19 Thread Simon Laws
On 4/13/07, muhwas [EMAIL PROTECTED] wrote: Hi guys, I was wondering if there is any way to get a reference to web service interface using service name (in SCDL file) only instead of doing compositeContext.locateService(ClassName.class,composite) thank you, muhwas

Re: using service name to call a service

2007-04-19 Thread scabooz
- Original Message - From: Simon Laws [EMAIL PROTECTED] To: tuscany-dev@ws.apache.org Sent: Thursday, April 19, 2007 7:35 AM Subject: Re: using service name to call a service On 4/13/07, muhwas [EMAIL PROTECTED] wrote: Hi guys, I was wondering if there is any way to get

Re: using service name to call a service

2007-04-19 Thread muhwas
to implement? Dave - Original Message - From: Simon Laws [EMAIL PROTECTED] To: tuscany-dev@ws.apache.org Sent: Thursday, April 19, 2007 7:35 AM Subject: Re: using service name to call a service On 4/13/07, muhwas [EMAIL PROTECTED] wrote: Hi guys, I was wondering

Re: using service name to call a service

2007-04-19 Thread scabooz
the use cases related to dynamically obtaining service references. thanks, Dave - Original Message - From: muhwas [EMAIL PROTECTED] To: tuscany-dev@ws.apache.org Sent: Thursday, April 19, 2007 3:00 PM Subject: Re: using service name to call a service I have tried that and it worked

Re: using service name to call a service

2007-04-19 Thread muhwas
I was trying to isolate the tuscany related code from client code and move the tuscany related code that is CompositeContext, locateService etc in common service factory. Then client can call the service using the service name only. Before i tried to pass the bussiness interface also because

using service name to call a service

2007-04-13 Thread muhwas
Hi guys, I was wondering if there is any way to get a reference to web service interface using service name (in SCDL file) only instead of doing compositeContext.locateService(ClassName.class,composite) thank you, muhwas - To