vote up 1 vote down star

I'm trying to consume a SharePoint webservice from Coldfusion via cfinvoke. The soap response includes a byte-order-mark character(BOM). Adobe has stated that it will not handle that character.

Is it possible to get CF to handle that character?

Is it possible to get IIS/SP to not send that character?

flag

closed as not programming related by Konrad Rudolph Sep 11 '08 at 15:08

2 Answers

vote up 0 vote down

From this Stack Overflow thread, I'm guessing you mean the same BOM? The one mentioned there is 3 characters, (Hex) EF, BB, BF. Converting those to their decimal values, we get 239, 187, 191.

You need to clarify what you mean by "handling" the BOM, but for now I'll assume you mean you want to strip it out.

<cfset result = replace(variables.result, chr(239) & chr(187) & chr(191), '', 'ALL') />
link|flag
vote up 0 vote down

reposted when logged in @ http://beta.stackoverflow.com/questions/56812/bom-not-expected-in-cf-but-sent-by-iissp

link|flag
I'm closing this question to prevent two discussions of the same subject. – Konrad Rudolph Sep 11 '08 at 15:09

Not the answer you're looking for? Browse other questions tagged or ask your own question.