473,320 Members | 1,766 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

sample of configuration for Hebrew

Hello,
I would like to change web.config file so it will fit to Hebrew pages.

I need a sample of how to do that (configuration section, but I need a
sample code, please).

Thanks :)
Nov 17 '05 #1
5 2790
Hi,

What exactly you need to change? One of my clients that develop many web
Hebrew applications as one enterprise system does it without any changes
in web.cofig.

Natty Gur[MVP]
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #2
Hello again,

I am using web-services, and the web-service function has hebrew in the
result.
When using hosting company (the hosting on my computer works good, but
hosting on other machine doesn't work - I see instead of Hebrew characters
"a" with two dots above it, etc...)

Two things I think I should do.
1) Find another hosting company, which I don't know who's the best, after I
invastigate a lot which is the appropoiate to my needs and money (mine is
www.webhost4life.com, and for the same deal they asked me 140$ a year
without tax, Israelians companies ask me 1500$ a year + tax). If you know a
company in Israel that can supply me the same deal for about 140$, I would
be glade (150M bytes, 10G-15G band width, unlimited domain names, sql-server
included in the deal ...))
I don't understand why Israelian hosting companies are so so expensive !?

2) Change some configuration on the server (webservice is a server side, so
how I can I do that without changing web.config, which I think this is the
obvious solution)

Maybe there are some important things I should know, but I need a solution,
so if you can give me a sample for web.config I would be glade.
If you can give me some advises, I would be glade too.

Thanks :)

"Natty Gur" <na***@dao2com.com> wrote in message
news:ep**************@TK2MSFTNGP12.phx.gbl...
Hi,

What exactly you need to change? One of my clients that develop many web
Hebrew applications as one enterprise system does it without any changes
in web.cofig.

Natty Gur[MVP]
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 17 '05 #3
Hi,

It looks like an encoding issue. check that your web.config configure to
encode response in UTF-8 and browser encoding (response.charset) set to
"UTF-8".

let me know ...

Natty Gur[MVP]
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #4
Hello,

I am a newbie on web.config,
so what I put on web.config something like this,
in the web site.
(windows-1255 is the character set for Hebrew).

<configuration>
<system.web>
<globalization requestEncoding="windows-1255"
responseEncoding="windows-1255" />
</system.web>
</configuration>

but when I want to use the web-service I get the message :service
unavailable,
(seems that the hosting company can handle web.config).
so I delete the web.config, and what I get is instead of hebrew character,
just jibrish (unexpected characters),
but web-service work (wrongly with characters).

I need a little help in the web.config.
For now, just for that case, I need a little sample, that works, please.

Thanks :)

"Natty Gur" <na***@dao2com.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
Hi,

It looks like an encoding issue. check that your web.config configure to
encode response in UTF-8 and browser encoding (response.charset) set to
"UTF-8".

let me know ...

Natty Gur[MVP]
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 17 '05 #5
Thanks,

For my opinion, I have already solved the problem.
What I did :
<configuration>
<system.web>
<globalization
requestEncoding="windows-1255"
responseEncoding="windows-1255"
fileEncoding="windows-1255"
culture="he-IL"
uiCulture="he-IL"
/>
</system.web>
</configuration>

This code is case sensitive, so requestencoding is different then
requestEncoding (and requestencoding is an error),
that took me hours to figure out (isn't there is a simple validator for
web.config, that point me to the mistakes in web.config ? - also validators
for javascript, aspx, asmx - I am looking for such free tools a long time
....).

Thanks, anyway ...

"Mr. x" <a@b.com> wrote in message news:3f********@news.012.net.il...
Hello,

I am a newbie on web.config,
so what I put on web.config something like this,
in the web site.
(windows-1255 is the character set for Hebrew).

<configuration>
<system.web>
<globalization requestEncoding="windows-1255"
responseEncoding="windows-1255" />
</system.web>
</configuration>

but when I want to use the web-service I get the message :service
unavailable,
(seems that the hosting company can handle web.config).
so I delete the web.config, and what I get is instead of hebrew character,
just jibrish (unexpected characters),
but web-service work (wrongly with characters).

I need a little help in the web.config.
For now, just for that case, I need a little sample, that works, please.

Thanks :)

"Natty Gur" <na***@dao2com.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
Hi,

It looks like an encoding issue. check that your web.config configure to
encode response in UTF-8 and browser encoding (response.charset) set to
"UTF-8".

let me know ...

Natty Gur[MVP]
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


Nov 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Shmuel | last post by:
How can I output hebrew ? I have tried to make php script to write hebrew, but it can't do it, why? I tried to put put this line in the beginning of the script: <meta http-equiv=Content-Type...
5
by: Mr. x | last post by:
Hello, I am building a web-site. For a reason, I don't know why, if I put my site on my computer - I see hebrew character fine, but when I put my site on hosting company I don't see hebrew...
1
by: Laurence Neville | last post by:
This is regarding a change in the Short Date format under Hebrew Regional Settings, that has caused huge problems in our ASP web application. The change appears to have been introduced sometime...
2
by: Ben Kayam | last post by:
Hello, I have a hebrew string that include numbers and other letters, i need to revere only the hebrew fonts. somebody told me using the bidi. please help me.
3
by: Eitan | last post by:
Hello, I am looking for a function which convert hebrew string (windows) to hebrew string (dos). That's should pay attantion to commas, numbers, and any other character, that may have problem...
0
by: Sim Zacks | last post by:
I read the recent posts about Hebrew support already and I am having a similar problem, but with an MS Access front end. The database is Unicode encoded. I can input Hebrew, query in hebrew and...
40
by: Shmuel (Seymour J.) Metz | last post by:
I'd like to include some Hebrew names in a web page. HTML 4 doesn't appear to include character attributes for ISO-8859-8. I'd prefer avoiding numeric references, e.g.,...
2
by: Zippy | last post by:
Hi. I'm working in Access 2003 - standard English version - and am trying to write a program with a Hebrew user interface. Being that Hebrew is a right-to-left language, the orders of columns...
2
by: Mitul | last post by:
Hello Friend, I am having very strange problem with mail function. As I have to implement Newsletter things in my hebrew site. I have implemented everything but having problem with subject line...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.