I checked , and I see that TranslateTable seems to set BOM ,
Because when I run the following two examples,
the files I got where identical
method 1:
Set stream=##class(%Stream.FileCharacter).%New() Set sc=stream.LinkToFile("c:\temp\UTF8ExampleWithBom.txt") Set stream.BOM=$C(239,187,191) Do stream.TranslateTableSet("UTF8") Do stream.Write("Hello שלום") w stream.%Save()
method 2:
Set stream=##class(%Stream.FileCharacter).%New() Set sc=stream.LinkToFile("c:\temp\UTF8ExampleNoBom.txt") Do stream.TranslateTableSet("UTF8") Do stream.Write("Hello שלום") w stream.%Save()
go to post
Thanks so much Dmitry!
that solved my problem.
Regards,
Nael
go to post
OK Thanks a lot Vivek.
So the syntax is supported, and I have a specific problem with this table.
I will contact WRC.
Regards,
Nael
go to post
Ok good to know thanks.
I accepted.
Its not east to notice it in my opinion.. but maybe it's just me.
Thanks,
Nael
go to post
Hi,
How do I accept an answer?
go to post
Thanks Dmitry!
Is that documented?
go to post
Hi Tomas,
thanks,
I checked , and I see that TranslateTable seems to set BOM ,
Because when I run the following two examples,
the files I got where identical
method 1:
Set stream=##class(%Stream.FileCharacter).%New()
Set sc=stream.LinkToFile("c:\temp\UTF8ExampleWithBom.txt")
Set stream.BOM=$C(239,187,191)
Do stream.TranslateTableSet("UTF8")
Do stream.Write("Hello שלום")
w stream.%Save()
method 2:
Set stream=##class(%Stream.FileCharacter).%New()
Set sc=stream.LinkToFile("c:\temp\UTF8ExampleNoBom.txt")
Do stream.TranslateTableSet("UTF8")
Do stream.Write("Hello שלום")
w stream.%Save()
go to post
Thank you Tomas,
to clarify-
and
Do stream.TranslateTableSet("UTF8")
are not equivalent , correct?
but TranslateTableSet does set the BOM ?
Thanks,
Nael
go to post
Hi,
It did work after all..
When I changed the command
Do stream.Write("Hello " _ $CHAR(955) _ "!")
to a command containing English and Hebrew letters, I got a UTF8 encoded file.
Thanks for your help!
Regards,
Nael
go to post
Thanks a lot for your quick answer Alok!
I tried it, it didn't work -
I just got a file containing-
"Hello !"
And the file is ANSI encoded.
I guess Its because we have special translation tables, and I don't know the details of that configuration.
I just thought- if its that easy to do with XML files, why not with regular files?
Regards,
Nael
go to post
Hi,
Yes this helps, Thanks.
Regards,
Nael.
go to post
Edit:
it woks now, after we added 57772 port the url.
thanks.
Hi,
Thanks, this is very useful.
We followed the installation instructions, but it does not work, we get an 404 error . the URL is correct with a slash at the end.
I noticed that if i try to create a csp page in the ClassExplorer Web application, i get an error -
5912 = page does not exist.
The application settings:
What's missing?