• 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

glassfish migration from 3.0.1 to 3.1.1

 
Ranch Hand
Posts: 180
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

I am trying to migrate application from 3.0.1 to 3.1.1, after i deploy my application for any resources which are encrypted like :

<security-constraint>
<display-name>Encrypt everything</display-name>
<web-resource-collection>
<web-resource-name>All work request resources</web-resource-name>
<description>Every web file in the work request system</description>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<description/>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>

shows blank page in 3.1.1 (but works in 3.0.1), it is because url should be https instead of http.

in 3.0.1, my app is redirected to https automatically , but it does not in 3.1.1 .

i configured glassfish 3.1.1 exactly the same as 3.0.1

i suppose the problem could be mod_jk, glassfish configuration or apache

please give some advice.

thank you
 
reply
    Bookmark Topic Watch Topic
  • New Topic