Does anybody have any idea why 2 identical classic asp pages, hitting the
same Oracle schema, but deployed on 2 different servers will render the
registered trade mark differently?
Example:
PROTONIX®
get displayed when calling the page deployed on server A, while
PROTONIX?
get displayed from calling the same code deployed on server B (still hitting
the same Oracle schema)
The Oracle field is defined is VARCHAR2
Both pages are being called from the same browser instance on workstation C. 11 2301
Roy wrote: Does anybody have any idea why 2 identical classic asp pages, hitting the same Oracle schema, but deployed on 2 different servers will render the registered trade mark differently?
Does "same Oracle schema" mean "same Oracle instance"? Could the problem not
be the web server?
--
Dave Anderson
Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Both servers use IIS, what should I check on the server to find out the cause?
"Dave Anderson" wrote: Roy wrote: Does anybody have any idea why 2 identical classic asp pages, hitting the same Oracle schema, but deployed on 2 different servers will render the registered trade mark differently?
Does "same Oracle schema" mean "same Oracle instance"? Could the problem not be the web server?
-- Dave Anderson
Unsolicited commercial email will be read at a cost of $500 per message. Use of this email address implies consent to these terms.
"Roy" <Ro*@discussions.microsoft.com> wrote in message
news:7E**********************************@microsof t.com... Does anybody have any idea why 2 identical classic asp pages, hitting the same Oracle schema, but deployed on 2 different servers will render the registered trade mark differently?
Example:
PROTONIX®
get displayed when calling the page deployed on server A, while
PROTONIX?
get displayed from calling the same code deployed on server B (still
hitting the same Oracle schema)
The Oracle field is defined is VARCHAR2
Both pages are being called from the same browser instance on workstation
C.
Ultimately you will be outputing your text using a form of Response.Write.
It's at this point that a unicode string in ASP is encoded according the
current Session.CodePage setting. (In IIS 6 there is a Response.CodePage as
well).
You will probably find that Session.CodePage on server A is different than
on server B at the point when the value is written.
The default Session.CodePage is defined by the system code page however any
page that modifies this value can affect the output of other pages during
that session.
Both servers show 1252 as Session.CodePage.
Any other ideas on what difference I should check?
"Anthony Jones" wrote: "Roy" <Ro*@discussions.microsoft.com> wrote in message news:7E**********************************@microsof t.com... Does anybody have any idea why 2 identical classic asp pages, hitting the same Oracle schema, but deployed on 2 different servers will render the registered trade mark differently?
Example:
PROTONIX®
get displayed when calling the page deployed on server A, while
PROTONIX?
get displayed from calling the same code deployed on server B (still hitting the same Oracle schema)
The Oracle field is defined is VARCHAR2
Both pages are being called from the same browser instance on workstation C.
Ultimately you will be outputing your text using a form of Response.Write.
It's at this point that a unicode string in ASP is encoded according the current Session.CodePage setting. (In IIS 6 there is a Response.CodePage as well).
You will probably find that Session.CodePage on server A is different than on server B at the point when the value is written.
The default Session.CodePage is defined by the system code page however any page that modifies this value can affect the output of other pages during that session.
"Roy" <Ro*@discussions.microsoft.com> wrote in message
news:C7**********************************@microsof t.com... Both servers show 1252 as Session.CodePage. Any other ideas on what difference I should check?
One diagnostic you might try is to have the code create a unicode text file
using the Scripting.FileSystemObject and write the content of the field
value to the file. Make sure you use Unicode.
Open the file in Notepad to see what character is actually coming through.
if ® then something is happening to it on its way to the browser but if it's
? then the character isn't coming through to ADO correctly.
Does anything else happen to the value before you Response.Write it?
Does it ultimately end up being sent to the client via Response.Write or
some other method?
"Anthony Jones" wrote:
"Roy" <Ro*@discussions.microsoft.com> wrote in message news:7E**********************************@microsof t.com... Does anybody have any idea why 2 identical classic asp pages, hitting
the same Oracle schema, but deployed on 2 different servers will render
the registered trade mark differently?
Example:
PROTONIX®
get displayed when calling the page deployed on server A, while
PROTONIX?
get displayed from calling the same code deployed on server B (still hitting the same Oracle schema)
The Oracle field is defined is VARCHAR2
Both pages are being called from the same browser instance on
workstation C.
Ultimately you will be outputing your text using a form of
Response.Write. It's at this point that a unicode string in ASP is encoded according the current Session.CodePage setting. (In IIS 6 there is a Response.CodePage
as well).
You will probably find that Session.CodePage on server A is different
than on server B at the point when the value is written.
The default Session.CodePage is defined by the system code page however
any page that modifies this value can affect the output of other pages
during that session.
I used Scripting.FileSystemObject to save a text file in unicode and the
character came as ?. So this is an ADO issue.
What should I check on the ADO side ?
Thank so much for your great suggestion in the puzzle.
Roy.
"Anthony Jones" wrote: "Roy" <Ro*@discussions.microsoft.com> wrote in message news:C7**********************************@microsof t.com... Both servers show 1252 as Session.CodePage. Any other ideas on what difference I should check?
One diagnostic you might try is to have the code create a unicode text file using the Scripting.FileSystemObject and write the content of the field value to the file. Make sure you use Unicode.
Open the file in Notepad to see what character is actually coming through. if ® then something is happening to it on its way to the browser but if it's ? then the character isn't coming through to ADO correctly.
Does anything else happen to the value before you Response.Write it? Does it ultimately end up being sent to the client via Response.Write or some other method?
"Anthony Jones" wrote:
"Roy" <Ro*@discussions.microsoft.com> wrote in message news:7E**********************************@microsof t.com... > Does anybody have any idea why 2 identical classic asp pages, hitting the > same Oracle schema, but deployed on 2 different servers will render the > registered trade mark differently? > > Example: > > PROTONIX® > > get displayed when calling the page deployed on server A, while > > PROTONIX? > > get displayed from calling the same code deployed on server B (still hitting > the same Oracle schema) > > The Oracle field is defined is VARCHAR2 > > Both pages are being called from the same browser instance on workstation C. >
Ultimately you will be outputing your text using a form of Response.Write. It's at this point that a unicode string in ASP is encoded according the current Session.CodePage setting. (In IIS 6 there is a Response.CodePage as well).
You will probably find that Session.CodePage on server A is different than on server B at the point when the value is written.
The default Session.CodePage is defined by the system code page however any page that modifies this value can affect the output of other pages during that session.
"Roy" <Ro*@discussions.microsoft.com> wrote in message
news:37**********************************@microsof t.com... I used Scripting.FileSystemObject to save a text file in unicode and the character came as ?. So this is an ADO issue. What should I check on the ADO side ?
I'm afraid I know very little about Oracle I suggest you take this problem
to an Oracle forum where those familiar with it will be able to help you.
Thank so much for your great suggestion in the puzzle.
Roy.
"Anthony Jones" wrote:
"Roy" <Ro*@discussions.microsoft.com> wrote in message news:C7**********************************@microsof t.com... Both servers show 1252 as Session.CodePage. Any other ideas on what difference I should check?
One diagnostic you might try is to have the code create a unicode text
file using the Scripting.FileSystemObject and write the content of the field value to the file. Make sure you use Unicode.
Open the file in Notepad to see what character is actually coming
through. if ® then something is happening to it on its way to the browser but if
it's ? then the character isn't coming through to ADO correctly.
Does anything else happen to the value before you Response.Write it? Does it ultimately end up being sent to the client via Response.Write or some other method?
"Anthony Jones" wrote:
> > "Roy" <Ro*@discussions.microsoft.com> wrote in message > news:7E**********************************@microsof t.com... > > Does anybody have any idea why 2 identical classic asp pages,
hitting the > > same Oracle schema, but deployed on 2 different servers will
render the > > registered trade mark differently? > > > > Example: > > > > PROTONIX® > > > > get displayed when calling the page deployed on server A, while > > > > PROTONIX? > > > > get displayed from calling the same code deployed on server B
(still > hitting > > the same Oracle schema) > > > > The Oracle field is defined is VARCHAR2 > > > > Both pages are being called from the same browser instance on workstation > C. > > > > Ultimately you will be outputing your text using a form of Response.Write. > > It's at this point that a unicode string in ASP is encoded according
the > current Session.CodePage setting. (In IIS 6 there is a
Response.CodePage as > well). > > You will probably find that Session.CodePage on server A is
different than > on server B at the point when the value is written. > > The default Session.CodePage is defined by the system code page
however any > page that modifies this value can affect the output of other pages during > that session. > > > > > >
See Below ( no top posting please)
On Fri, 9 Jun 2006 12:48:32 +0100, "Anthony Jones" <An*@yadayadayada.com> wrote: "Roy" <Ro*@discussions.microsoft.com> wrote in message news:37**********************************@microso ft.com... I used Scripting.FileSystemObject to save a text file in unicode and the character came as ?. So this is an ADO issue. What should I check on the ADO side ?
I'm afraid I know very little about Oracle I suggest you take this problem to an Oracle forum where those familiar with it will be able to help you.
Thank so much for your great suggestion in the puzzle.
Roy.
"Anthony Jones" wrote:
> > "Roy" <Ro*@discussions.microsoft.com> wrote in message > news:C7**********************************@microsof t.com... > > Both servers show 1252 as Session.CodePage. > > Any other ideas on what difference I should check? > > > > One diagnostic you might try is to have the code create a unicode textfile > using the Scripting.FileSystemObject and write the content of the field > value to the file. Make sure you use Unicode. > > Open the file in Notepad to see what character is actually comingthrough. > if ® then something is happening to it on its way to the browser but ifit's > ? then the character isn't coming through to ADO correctly. > > Does anything else happen to the value before you Response.Write it? > Does it ultimately end up being sent to the client via Response.Write or > some other method? > > > > "Anthony Jones" wrote: > > > > > > > > "Roy" <Ro*@discussions.microsoft.com> wrote in message > > > news:7E**********************************@microsof t.com... > > > > Does anybody have any idea why 2 identical classic asp pages,hitting > the > > > > same Oracle schema, but deployed on 2 different servers willrender > the > > > > registered trade mark differently? > > > > > > > > Example: > > > > > > > > PROTONIX® > > > > > > > > get displayed when calling the page deployed on server A, while > > > > > > > > PROTONIX? > > > > > > > > get displayed from calling the same code deployed on server B(still > > > hitting > > > > the same Oracle schema) > > > > > > > > The Oracle field is defined is VARCHAR2 > > > > > > > > Both pages are being called from the same browser instance on > workstation > > > C. > > > > > > > > > > Ultimately you will be outputing your text using a form of > Response.Write. > > > > > > It's at this point that a unicode string in ASP is encoded accordingthe > > > current Session.CodePage setting. (In IIS 6 there is aResponse.CodePage > as > > > well). > > > > > > You will probably find that Session.CodePage on server A isdifferent > than > > > on server B at the point when the value is written. > > > > > > The default Session.CodePage is defined by the system code pagehowever > any > > > page that modifies this value can affect the output of other pages > during > > > that session. > > > > > > > > > > > > > > > > > > > > >
The NLS_ parameters ( which control the character set used) is controlled by the registry setings of the Oracle client
machine ( in your case the web server using the asp code) ; as long as ANY NLS_ parameter is set in the client regisrty,
ALL NLS_ parameters will use the registry setings or revert to default..
So, when running the same code from2 different servers results in different resuts, it is likely to mean that the values
in the registry section for Oracle differ.
"Turkbear" wrote: See Below ( no top posting please) On Fri, 9 Jun 2006 12:48:32 +0100, "Anthony Jones" <An*@yadayadayada.com> wrote:
"Roy" <Ro*@discussions.microsoft.com> wrote in message news:37**********************************@microso ft.com... I used Scripting.FileSystemObject to save a text file in unicode and the character came as ?. So this is an ADO issue. What should I check on the ADO side ?
I'm afraid I know very little about Oracle I suggest you take this problem to an Oracle forum where those familiar with it will be able to help you.
Thank so much for your great suggestion in the puzzle.
Roy.
"Anthony Jones" wrote:
> > "Roy" <Ro*@discussions.microsoft.com> wrote in message > news:C7**********************************@microsof t.com... > > Both servers show 1252 as Session.CodePage. > > Any other ideas on what difference I should check? > > > > One diagnostic you might try is to have the code create a unicode text file > using the Scripting.FileSystemObject and write the content of the field > value to the file. Make sure you use Unicode. > > Open the file in Notepad to see what character is actually coming through. > if ® then something is happening to it on its way to the browser but if it's > ? then the character isn't coming through to ADO correctly. > > Does anything else happen to the value before you Response.Write it? > Does it ultimately end up being sent to the client via Response.Write or > some other method? > > > > "Anthony Jones" wrote: > > > > > > > > "Roy" <Ro*@discussions.microsoft.com> wrote in message > > > news:7E**********************************@microsof t.com... > > > > Does anybody have any idea why 2 identical classic asp pages, hitting > the > > > > same Oracle schema, but deployed on 2 different servers will render > the > > > > registered trade mark differently? > > > > > > > > Example: > > > > > > > > PROTONIX® > > > > > > > > get displayed when calling the page deployed on server A, while > > > > > > > > PROTONIX? > > > > > > > > get displayed from calling the same code deployed on server B (still > > > hitting > > > > the same Oracle schema) > > > > > > > > The Oracle field is defined is VARCHAR2 > > > > > > > > Both pages are being called from the same browser instance on > workstation > > > C. > > > > > > > > > > Ultimately you will be outputing your text using a form of > Response.Write. > > > > > > It's at this point that a unicode string in ASP is encoded according the > > > current Session.CodePage setting. (In IIS 6 there is a Response.CodePage > as > > > well). > > > > > > You will probably find that Session.CodePage on server A is different > than > > > on server B at the point when the value is written. > > > > > > The default Session.CodePage is defined by the system code page however > any > > > page that modifies this value can affect the output of other pages > during > > > that session. > > > > > > > > > > > > > > > > > > > > >
The NLS_ parameters ( which control the character set used) is controlled by the registry setings of the Oracle client machine ( in your case the web server using the asp code) ; as long as ANY NLS_ parameter is set in the client regisrty, ALL NLS_ parameters will use the registry setings or revert to default..
So, when running the same code from2 different servers results in different resuts, it is likely to mean that the values in the registry section for Oracle differ.
How do I access these registry settings? Is that through Oracle client gui,
or the windows registry editor?
Turkbear wrote: See Below ( no top posting please)
Please do some snipping ...
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
On Fri, 9 Jun 2006 10:43:02 -0700, Roy <Ro*@discussions.microsoft.com> wrote:
"Turkbear" wrote:
.Snipped >
The NLS_ parameters ( which control the character set used) is controlled by the registry setings of the Oracle client machine ( in your case the web server using the asp code) ; as long as ANY NLS_ parameter is set in the client regisrty, ALL NLS_ parameters will use the registry setings or revert to default..
So, when running the same code from2 different servers results in different resuts, it is likely to mean that the values in the registry section for Oracle differ.
How do I access these registry settings? Is that through Oracle client gui, or the windows registry editor?
The windows registry on each web server ( be careful, ask your DBA for help if unsure what to remove)..
There should be an section in HKLM_Software_Oracle where NLS_ parametrrs are listed..Be sure they are the same ( or
delete them entirely, then Oracle's system setings will apply) This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Mohammed Mazid |
last post by:
Can anyone please help me on how to move to the next and previous
question?
Here is a snippet of my code:
Private Sub cmdNext_Click()
End Sub...
|
by: Stevey |
last post by:
I have the following XML file...
<?xml version="1.0"?>
<animals>
<animal>
<name>Tiger</name>
<questions>
<question index="0">true</question>...
|
by: nospam |
last post by:
Ok, 3rd or is it the 4th time I have asked this question on Partial Types,
so, since it seems to me that Partial Types is still in the design or...
|
by: Ekqvist Marko |
last post by:
Hi,
I have one Access database table including questions and answers. Now
I need to give answer id automatically to questionID column. But I
don't...
|
by: glenn |
last post by:
I am use to programming in php and the way session and post vars are past
from fields on one page through to the post page automatically where I can...
|
by: Rider |
last post by:
Hi, simple(?) question about asp.net configuration..
I've installed ASP.NET 2.0 QuickStart Sample successfully. But, When I'm
first start...
|
by: Jeff |
last post by:
In the function below, can size ever be 0 (zero)?
char *clc_strdup(const char * CLC_RESTRICT s)
{
size_t size;
char *p;
...
|
by: spibou |
last post by:
In the statement "a *= expression" is expression assumed to be
parenthesized ? For example if I write "a *= b+c" is this the same
as "a = a *...
|
by: Allan Ebdrup |
last post by:
Hi,
I'm trying to render a Matrix question in my ASP.Net 2.0 page, A matrix
question is a question where you have several options that can all be...
|
by: Zhang Weiwu |
last post by:
Hello!
I wrote this:
..required-question p:after {
content: "*";
}
Corresponding HTML:
<div class="required-question"><p>Question...
|
by: concettolabs |
last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
|
by: teenabhardwaj |
last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
| |