> There is a problem with my application. I write a java webservice client. > When I call it from Eclipse. It will work fine take some > time (say 10 to 50 sec) and give me the result. > > But when I call it from the coldfusion like this. > > <cfobject action="create" type="java" class="com.test.ClientTest" > name="etTestObj" > > > <CFSET ctx=etTestObj.init()> > <cfoutput> #ctx.addNumbers()# </cfoutput> > > This method does not return anything. What I have to do with this asyncronous > request. > > Waiting for urgent response.
First, let me second everything Mike just mentioned. CF has its own web service client library (Apache AXIS) just for this sort of thing. Second, to see what's going on at runtime, you might be better off running CF as an application rather than as a service. The steps for doing this will vary depending on whether you've installed CF using the default or multiserver options. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329784 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

