• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

jsessionid and searchbots

 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello,
i have some problems with google and my dynamic websides written in java.
all links on these pages are dynamic. that means, that they are equipped with a jsessionid.
and this sessionid seems to be the source of my problem.
the googlebot can't handle it and all links containing this id,
will be ranked wrong or completly ignored by the spider.
what can i do to make google using these links correctly?
please help!
christoph
[ December 04, 2003: Message edited by: christoph weingarten ]
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm puzzled as to why you need an active session on a page which you wish to be indexed by google. This is generally not a good idea, and google often refuses to cache and search such pages because it (rightly) assumes that the information on the page is likely to be different next time someone looks at it.
Try to see if you can divide your site into pages you wish to be cached and searched by google, and pages which are sufficiently dynamic that caching them makes no sense. Then eliminate the session id from the "static" pages. You can then add a "robots.txt" file to your site to indicate to search engines which directories or pages are suitable for indexing.
 
christoph weingarten
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks for your reply.
the user can use the side either with or without personalised stuff in it. he can login almost everywhere and in this case he will see additional data on the screen. thats the reason for the active session.
if i understand you right here, it's some kind of conceptual problem of my side. your argument regarding the changing informations on personalised sides is quite right.
I have to review...
thanks
christoph
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic