The OneStream Community is temporarily frozen until June 29th due to the ongoing maintenance. Please read the blog post here to learn more.
Forum Discussion
OS_Love
2 years agoNew Contributor III
Application Package error
Hi ,
I am trying to create a offline package but getting the below error.(snapshot attached)
'',hexadecimal value 0x03 is an invalid character
What is the easy solution?
RobbSalzmann
2 years agoValued Contributor II
0x03 is ^C aka EoTX or ETX (End of Transmission). It probably got in your string by pasting some code from another source. I imagine the package is stored as XML and ETX is an invalid char In XML
The easy solution is to remove the 0x03 character from your string:
stringWithETX.Replace(ChrW(&H3), String.Empty)
Related Content
- 4 years ago
- 6 months ago