Re: [flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-05 Thread Vik
Big Thankx to all you guys...especially to Tracy & Nate Yes I really did not need a webservice to achieve what I was looking for. I was just in need of a xml response which I could achieve by simply creating a servlet which sends me a response as an XML. Thanks again!!! Thankx and Regards Vik F

[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-05 Thread johnlukemills
If what you want to do is deploy a web service on your server, the simplest way by far is to use ColdFusion. The Cfcomponent from the ColdFusion 8 developers guide is all you need.

[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-05 Thread valdhor
__ > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of valdhor > Sent: Wednesday, February 04, 2009 9:29 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Simplest way to create a webservice and deploy >

Re: [flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-04 Thread Nate Beck
pes. >> >> >> >> I have not done this with java, but have done it using a JSP page. >> >> http://www.cflex.net/showFileDetails.cfm?ObjectID=556 >> >> >> >> Tracy Spratt >> Lariat Services >> >> Flex development bandwidth availab

Re: [flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-04 Thread Vik
t; > Tracy Spratt > Lariat Services > > Flex development bandwidth available > -- > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *valdhor > *Sent:* Wednesday, February 04, 2009 9:29 AM > *To:

RE: [flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-04 Thread Tracy Spratt
att Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of valdhor Sent: Wednesday, February 04, 2009 9:29 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Simplest way to cre

[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-04 Thread valdhor
As far as I know there is no simple way to create a web service. I thought the easiest way would be to use the built-in functionality of PHP (Should only take a few lines). I found out the hard way that it is not that simple. It took me months of research and a lot of tinkering (Not to mention a fe

Re: [flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-03 Thread Vik
Hmm I think this is not at least the simplest way to start with especially for a beginner. Any other ideas? Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Wed, Feb 4, 2009 at 12:51 AM, valdhor wrote: > http://java.sun.com/webservices/docs/1.6/tutorial/doc/ ? > > --

[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-03 Thread valdhor
http://java.sun.com/webservices/docs/1.6/tutorial/doc/ ? --- In flexcoders@yahoogroups.com, Vik wrote: > > Hie > I am very new to web services. My very simple requirement is to > return the records from a db table as an xml when i invoke a ws from my flex > application. > > I have already code