CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread coldfusion . developer
Help I'm using a CFC to create a Web service. One of the columns in my query past through the Web service has HTML tags in the ntext data type column.The Web Service doesn't like it and throws an error for just this column. I think the markup needs to be stripped from the data and then I think

RE: CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread Raymond Camden
What error are you getting exactly? You should have no problem returning a string w/ HTML in it. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread Alexander Sherwood
At 11:48 AM 5/18/2004, you wrote: Help I'm using a CFC to create a Web service. One of the columns in my query past through the Web service has HTML tags in the ntext data type column.The Web Service doesn't like it and throws an error for just this column. I think the markup needs to be

Re: CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread coldfusion . developer
What error are you getting exactly? You should have no problem returning a string w/ HTML in it. Error Occurred While Processing Request Could not perform web service invocation myFunction because AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode:

Re: CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread coldfusion . developer
At 11:48 AM 5/18/2004, you wrote: You could encode the HTML text, but then you'll have to escape your entities. Not sure how to do that.Can you please give me a quick example. Thanks. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread Raymond Camden
Ah, I now seem to remember running into this when building a RSS feed for the blog. You could use XMLFormat() on the data. Since you have a query though you would have to loop over the query and use querySetCell() to update each item. [Todays Threads] [This Message] [Subscription] [Fast