• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Omniture and ColdFusion 10

New Here ,
Oct 22, 2013 Oct 22, 2013

Copy link to clipboard

Copied

We are running ColdFusion 10 application server and using Omniture in our application. Since upgrading to CF 10, we have been getting the following error:

Oct 19, 2013 3:43:30 PM org.apache.tomcat.util.http.Cookies processCookieHeader

INFO: Cookies: Invalid cookie. Value not a token or quoted value

Maybe there is an easier solution to rid ourselves of this error, but this is what I've found.

I have already pinpointed the issue, which is with the format of Omniture's one cookie which contains brackets. We reached out to them about chaning that format, and they replied the couldn't and that no one else is having the issue. I have found that at least other Tomcat users are having the same issue and it had been suggested to edit a setting. So one our options for eliminating this issue is to adjust the setting in Tomcat that is bult-in to CF 10. From what I've gathered I need to add ALLOW_HTTP_SEPARATORS_IN_V0 to my configuration and set it to true. I've found configuration files for Tomcast in the CF runtime directory. And I suspect I need to add some code to server.xml.

At this point, I'm not sure how to include the setting or if I'm correct about the proper config file.

If anyone can help me resolve this issue, it will be greatly appreciated.

Marc

Views

709

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 22, 2013 Oct 22, 2013

Copy link to clipboard

Copied

I was able to determine I had to incorrect file. If I wanteds to use the setting, it would need to be on catalina.properties file.

I did try the following lines, but that did not solve the issue:

tomcat.util.http.ServerCookie.ALLOW_HTTP_SEPARATORS_IN_V0=true

and then I tried

org.apache.tomcat.util.http.ServerCookie.ALLOW_HTTP_SEPARATORS_IN_V0=true

Either did not solve the issue after restarting CF.

So at this point I'm open to other suggestions.

Thanks,

Marc

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Oct 22, 2013 Oct 22, 2013

Copy link to clipboard

Copied

i don't know how to eliminate the issue, but I can eliminate the error message. Is that of interest?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 22, 2013 Oct 22, 2013

Copy link to clipboard

Copied

Yes. This will provide us with an option.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Oct 22, 2013 Oct 22, 2013

Copy link to clipboard

Copied

LATEST

Find the logging.properties files for your JRE. We use JRE 7 so ours is in C:\Program Files\Java\jre7. Then look in the lib subfolder for logging.properties file and change:

java.util.logging.ConsoleHandler.level = INFO

to

 

java.util.logging.ConsoleHandler.level = SEVERE

That should get rid of the errors at least.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation