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
Founder
www.sakshum.com
www.sakshum.blogspot.com


On Thu, Feb 5, 2009 at 7:23 PM, johnlukemills <j...@pobox.com> wrote:

>   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.
>
> <cfcomponent>
> <cffunction
> name = "echoString"
> returnType = "string"
> output = "no"
> access = "remote">
> <cfargument name = "input" type = "string">
> <cfreturn #arguments.input#>
> </cffunction>
> </cfcomponent>
>
>  
>

Reply via email to