Does Weblogic 5.1 support the STANDARD javax.servlet.request.X509Certificate attribute?

Hello!
My strong suspicion from looking at the Weblogic SSL documentation on
http://e-docs.bea.com is that WebLogic SSL does not put any client-side
certificates into the 'javax.servlet.request.X509Certificate' attribute
of a servlet's HttpServletRequest (as an array of
java.security.cert.X509Certificate instances).
Currently, it appears that Weblogic uses a proprietary attribute name
('weblogic.security.somethingOrOther') and returns instances of the
deprecated Java 1.1 java.security.Certificate class.
When will Weblogic support this aspect of the Servlet 2.2 specification,
if it doesn't already?
Regards,
James W.

I just verified this with the Java doc. Either the Java documentation is
incorrect or we are still using the older version of the certificate
encoding class. I will check on this, we may have fixed it in a subsequent
service pack.
Thanks,
Michael
Michael Girdley
Product Manager, WebLogic Server & Express
BEA Systems Inc
"James Webster" <[email protected]> wrote in message
news:[email protected]..
Hello!
My strong suspicion from looking at the Weblogic SSL documentation on
http://e-docs.bea.com is that WebLogic SSL does not put any client-side
certificates into the 'javax.servlet.request.X509Certificate' attribute
of a servlet's HttpServletRequest (as an array of
java.security.cert.X509Certificate instances).
Currently, it appears that Weblogic uses a proprietary attribute name
('weblogic.security.somethingOrOther') and returns instances of the
deprecated Java 1.1 java.security.Certificate class.
When will Weblogic support this aspect of the Servlet 2.2 specification,
if it doesn't already?
Regards,
James W.

Similar Messages

  • Does WebLogic 6.x support Solaris for Intel x86 platform?

    Does WebLogic 6.x support Solaris for Intel x86 platform?
    Thanks,
    Levi

    levi wrote:
    Does WebLogic 6.x support Solaris for Intel x86 platform?
    Thanks,
    See http://edocs.bea.com/wls/platforms/index.html - as far as I
    can tell, it is not supported.
    regards,
    Per Jessen

  • Does DS 5.2 support the PKIX schema defined in RFC2587?

    hi,
    please, can anybody answer me this:
    1. does DS 5.2 support the schema defined in RFC2587
    (http://www.ietf.org/rfc/rfc2587.txt)?
    ...a minimal schema to support PKIX in an LDAPv2 environment...
    2. if so, please can you explain how i go about configuring DS 5.2 for RFC
    2587? or point me to the documentation?
    3. if it doesn't support RFC 2587 out of the box, what schema(s) does DS
    5.2 support by default?
    thanks in advance for your help.

    i think i have worked out what i need to do to make DS 5.2 rfc2587-compliant (i have also worked out - by rtfm - that it doesn't by default ;�).
    dn: cn=schema
    changetype: modify
    add: objectClasses
    objectClasses: ( 2.5.6.21 NAME 'pkiuser' DESC 'auxiliary class for non-CA certificate owners'
      SUP top AUXILIARY MAY userCertificate ) 
    dn: cn=schema
    changetype: modify
    add: objectClasses
    objectClasses: ( 2.5.6.22 NAME 'pkiCA' DESC 'class for Cartification Authorities' SUP top
      AUXILIARY MAY ( authorityRevocationList $ caCertificate $ certificateRevocationList $
      crossCertificatePair ) )
    dn:cn=schema
    changetype: modify
    replace: attributetypes
    attributetypes: ( 2.5.4.39 NAME ( 'certificateRevocationList'
      'certificateRevocationList;binary' ) DESC '  ' SYNTAX 1.3.6.1.4.1.1466.115.121.1.5
      SINGLE-VALUE ) any other suggestions still welcome. thanks in advance.

  • Does Photoshop Lightroom 4 support the Olympus OM-D

    Does Photoshop Lightroom 4 support the Olympus OM-D? Does not seem to out of the box but would like to know if there is a plug in or update available or coming soon.

    LR4.1 (coming soon, currently RC2)
    Download LR4.1 RC2 now from
    http://labs.adobe.com/technologies/lightroom4-1/?tabID=details#tabTop
    New Camera Support
    Canon EOS 5D Mark III — introduced with release candidate 1 (March 29, 2012) 
    Canon EOS 60Da 
    Fuji FinePix F770EXR 
    Fuji FinePix F775EXR 
    Nikon D3200 
    Olympus OM-D EM-5 
    Panasonic Lumix DMC-GF5 
    Pentax K-01 
    RICOH LENS A16 24-85mm F3.5-5.5 
    Samsung NX20 
    Samsung NX210 
    Samsung NX1000 
    Sony Alpha NEX-VG20 
    Sony SLT-A57

  • Does the package "javax.servlet" exist in J2SE?

    Hi all,
    Just a stupid question , how to know if the package "javax.servlet" exists in J2SE? and if doesn't exist Do I need to install J2EE to be able to use it or there is any work arround...
    I'm tryning to build a web application usins servlet, JSP and JavaBean...
    Please help I'm new to this all technology
    Thanks

    Just a stupid question , how to know if the package
    "javax.servlet" exists in J2SE? http://java.sun.com/j2se/1.4.1/docs/api/ ois the J2SE and doesn't contain the javax.servlet package. In general, javax.* is not part of the J2SE (apart from Swing that is!).
    and if doesn't exist
    Do I need to install J2EE to be able to use it or
    there is any work arround...Well, you need those classes but not necessarily the whole J2EE (the other answer mentions Tomcat and the servlet.jar file.
    I'm tryning to build a web application usins servlet,
    JSP and JavaBean... First things first - download Tomcat and follow the installation instructions. When you have Tomcat running on your PC you'll see at http://localhost:8080 the Tomcat examples - see how they work. An understanding of the Web application "standard" architecture is also useful (the WAR file). Look under the developer material on this site - it is pretty good.

  • Does weblogic 5.1 support form based authentication of servlets

              Hi,
              Does weblogic 5.1 support form based authentication?
              If yes is any setup need to be done?
              <HTML>
              <BODY>
              This is a test for form based authentication
              <FORM action="j_security_check">
              <input type="j_name" value="hi">
              <input type="j_password" value="hi">
                   <input type="submit" value="hi">
              </FORM>
              </BODY>
              </HTML>
              If i submit a form to j_security_check, weblogic throws "404 file not found error".
              thanks
              

              you must add this to yor web.xml file:
              <login-config>
              <auth-method>FORM</auth-method>
              <realm-name>LDAPRealm</realm-name>
              <form-login-config>
              <form-login-page>/logon.jsp</form-login-page>
              <form-error-page>/logonerror.jsp</form-error-page>
              </form-login-config>
              </login-config>
              greetings
              "Cameron Purdy" <[email protected]> wrote:
              >Yes. You have to specify in web.xml per spec.
              >
              >Peace,
              >
              >--
              >Cameron Purdy
              >Tangosol, Inc.
              >http://www.tangosol.com
              >+1.617.623.5782
              >WebLogic Consulting Available
              >
              >
              >"antony" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >>
              >> Hi,
              >>
              >> Does weblogic 5.1 support form based authentication?
              >> If yes is any setup need to be done?
              >>
              >> <HTML>
              >> <BODY>
              >> This is a test for form based authentication
              >> <FORM action="j_security_check">
              >> <input type="j_name" value="hi">
              >> <input type="j_password" value="hi">
              >> <input type="submit" value="hi">
              >> </FORM>
              >> </BODY>
              >> </HTML>
              >>
              >> If i submit a form to j_security_check, weblogic throws "404 file not
              >found error".
              >>
              >> thanks
              >>
              >
              >
              

  • Does Acrobat XI Pro support the feature of syncing settings in Creative Cloud?

    Does Acrobat XI Pro support the feature of syncing settings in Creative Cloud? I downloaded this software from my Creative Cloud account but I do not find the sync settings option in it. Is this feature not available?

    No it doesn't.
    Acrobat isn't part of the Creative Cloud product range, it is included in the CC subscription packages but it doesn't include features of the "... CC" products such as Sync or Typekit.

  • Does LabVIEW 8.6 support the NXT toolkit?

    Does LabVIEW 8.6 support the NXT toolkit?, the NXT toolkit 1.0.1 patch does not give instructions on how to load it with LabVIEW 8.6.   Does anyone know how to load the patch with LabVIEW 8.6?
    LEGOAustin

    Hi LEGOAUSTIN,
    Check out the forum dedicated to Lego: http://forums.ni.com/ni/board?board.id=beta18. It is largely community driven but sometimes NI employees post.
    I would also talk to Lego about NXT support. Check out his KB on the issue: http://digital.ni.com/public.nsf/allkb/59F9356834A0E85086257244007A3354?OpenDocument.
    What I can give you in the meantime is to ensure you've done the right order:
    Install the LEGO MINDSTORMS NXT Toolkit v1.0
    Restart the computer
    Install the LEGO patch 1.0.1
    As for explicit support in LabVIEW 8.6, it doesn't appear to be any right now and I cannot comment on the future.
    A quick Google Search came up with this as a possible work around: http://forums.nxtasy.org/index.php?showtopic=3277
    Message Edited by JeffL on 02-11-2009 10:34 AM
    Jeff | LabVIEW Software Engineer

  • While running my app I get the below error  - have different Class objects for the type javax/servlet/http/HttpServletRequest used in the signature

    I am running ATG[10.1.2] app on Jboss [EAP 5.1.0 GA] I am able to open dyn/admin however when I start my app I get the below error
    java.lang.LinkageError: loader constraint violation: when resolving method "atg.servlet.ServletUtil.setSessionConfNumCacheRequest(Ljavax/servlet/http/HttpServletRequest;)Ljavax/servlet/http/HttpServletRequest;" the class loader (instance of org/jboss/classloader/spi/base/BaseClassLoader) of the current class, atg/filter/dspjsp/PageFilter, and the class loader (instance of org/jboss/classloader/spi/base/BaseClassLoader) for resolved class, atg/servlet/ServletUtil, have different Class objects for the type javax/servlet/http/HttpServletRequest used in the signature
      at atg.filter.dspjsp.PageFilter.doFilter(PageFilter.java:215)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at atg.servlet.ForwardFilter.doFilter(ForwardFilter.java:263)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at atg.servlet.ErrorFilter.doFilter(ErrorFilter.java:279)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
      at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:446)
      at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:382)
      at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:310)
      at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:416)
      at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:342)
      at org.apache.catalina.core.StandardHostValve.throwable(StandardHostValve.java:286)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:141)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
      at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
      at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:598)
      at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
      at java.lang.Thread.run(Thread.java:680)
    11:22:47,413 ERROR [[localhost]] Exception Processing ErrorPage[errorCode=500, location=/global/errorPage500.jsp]

    The supported JBoss version for 10.1.2 is JBoss EAP 5.1.2 but I don't think that your issue is caused because of this. Your issue is more of an environmental thing as you are probably getting two different versions getting loaded of class javax.servlet.http.HttpServletRequest and so correspondingly two different Class objects as the error shows. One reason for this could be if you include any server-specific libraries (in present case the Servlet API JAR which contains the class javax.servlet.http.HttpServletRequest) of a different version in the /WEB-INF/lib of your web application. Try removing it from there if so and see if that helps.

  • Getting an error like this The import javax.servlet cannot be resolved

    HI
    i am getting an error like this "The import javax.servlet cannot be resolved".wht i ahve done in eclipse right click->open->servlet->packge name->servlet name->next->nexyt>finish.hereinterfaces is javax.servlet.Servlet.
    do i need add jar for it.can any one tell me why i got error like this.
    vijay

    Please don't doublepost. Answer is given here: http://forum.java.sun.com/thread.jspa?threadID=5220686

  • Does Photoshop Elements 12 Support the MWG Face Region Metadata Standard?

    I'm looking at the trial version of PhotoShop Elements 12. I see that it is possible to use the Organizer to automatically recognize faces and to manually define Face Regions in images.
    These then appear as People Tags in the Organizer.
    However, if I save the Metadata to the file, People Tags just seem to be added as IPTC/Core Keywords. I was hoping that PE12 would at least support the Metadata Working Group's Face Region standard, and that People Tags would be saved as XMP using the MWG-RS schema.
    Would someone more familiar with PE12 please confirm whether PE12 does or does not support the MWG standard?
    If it doesn't support it, then that's a disappointment, particularly considering the standard has been around since November 2010, and that Adobe is a founding member of the Metadata Working Group.

    The point about whether to use an automatic process or not is a separate issue. I can understand that some people would not want to use it. However, even doing it manually in PE12 does not use the MWG standard.
    Thanks for the pointer to the thread, which I note was started 2 years ago, with the last comment a year ago.
    From that, I draw the conclusion that the PE developers see this as a very low priority. All the more reason for me to look at competitor products that do support this standard (e.g. Picasa and Photo Supreme).
    Thanks again.

  • Does WebLogic 5.1 Support EAR Files

    In the WebLogic 5.1 online documentation I have been able to find a section
    on Web Application (WAR) examples, but I have not found any reference to
    support for Enterprise Application (EAR) examples using the search
    capabilities implemented with the BEA e-docs web pages.
    Are EAR files supported, or must we make do with WAR files? If EAR files
    are supported, please point me to the appropriate section of the online
    documentation.
    Thanks.

    John,
    I forgot to mention that the case I'm describing below is when I tried to use a
    web application in WebLogic 5.1 service pack 4. No one from BEA has attempted to
    solve the problem yet. Supposedly I have a sales guy trying to get me some
    support.
    Steve
    "Steven D. Wilkinson" wrote:
    John,
    That wouldn't suprise me because if you pass classes between servlets and JSPs
    in the HttpServletRequest object you get the dreaded ClassCastException. The
    problem is that the utility class that I'm passing is in the class path of the
    web application and the servlet has already loaded it into the JVM, then the
    JSP tries to load it. Well since WebLogic does funky stuff with the class
    loader and since the ClassLoader for Servlets is not the same as for Servlets
    you get the ClassCastException. Oh well, hopefully Tech Support will try to
    fix this.....
    Good luck....
    Always remember when BEA says that WebLogic is compliant to a spec that only
    means that they are for the things they have tested, not the whole spec.
    Humm.... Wonder if IPlanet Application Server would have this problem? :->
    Steve
    "John J. Feigal" wrote:
    In the WebLogic 5.1 online documentation I have been able to find a section
    on Web Application (WAR) examples, but I have not found any reference to
    support for Enterprise Application (EAR) examples using the search
    capabilities implemented with the BEA e-docs web pages.
    Are EAR files supported, or must we make do with WAR files? If EAR files
    are supported, please point me to the appropriate section of the online
    documentation.
    Thanks.--
    Steven D. Wilkinson
    [email protected]
    Steven D. Wilkinson
    [email protected]

  • Does weblogic 5.1 support JTA ?

              Hi,
              I am interested in knowing if weblogic 5.1 support JTA.
              Though the EJB1.1 spec speaks of JTA, there is not mention of JTA in weblogic
              5.1 docs.
              THanks
              Jai
              

    WLS 5.1 does support JTA, but it does not support XA or 2PC. These are
              supported in WLS 6.0 and later.
              -- Rob
              kumar J wrote:
              > Hi,
              >
              > I am interested in knowing if weblogic 5.1 support JTA.
              >
              > Though the EJB1.1 spec speaks of JTA, there is not mention of JTA in weblogic
              > 5.1 docs.
              >
              > THanks
              > Jai
              

  • How does WebLogic 8.1 get the BASE HREF value?

    We have a WebLogic 8.1 SP4 server with a Juniper DX load balancer in front. We are trying to get Juniper to handle all the SSL traffic for the WebLogic application. Between Juniper and WebLogic, it would be just HTTP and between Juniper and web clients it would be HTTPS. One of the main issues we are seeing is that Struts HTML:BASE tag is returning the Juniper address as we expected, with the correct SSL port and application context/paths. However, the protocol for this base href is set to HTTP and not HTTPS. Consequently, our pages do not load properly.
    I am trying to understand where this value comes from. The underlying code uses request.getScheme() to get the protocol. So, we could "customize" the tags to work around this, but that is a hack that I am trying to avoid. I assume that the HTTP stack that WebLogic 8.1 uses is providing this info from the HTTP request. Does this come from the web browser? How does WebLogic get this to put it into the request object in the web container? We have sniffed the HTTP headers on the web client side and we cannot see where this is coming from.

    I remember facing a similar issue with webloigc 8.1 and apache
    I dont think its a problem with the tag..
    I think i have changed the transport-guarantee in web.xml
    If you have NONE try setting that to CONFIDENTIAL and vice versa

  • Does Galaxy Note 3 support the latest Flash Player? [was: note3]

    Galaxy note3 version 4.3 is it supported by flash player lastest version xx.xxx.xx.81?
    [Subject line edited by moderator for clarity]

    Mike M wrote:
    Trey Carey wrote:
    quek peow wrote:
    Galaxy note3 version 4.3 is it supported by flash player lastest version xx.xxx.xx.81?
    [Subject line edited by moderator for clarity]
    I feel so bad for you, you should use HTML5. It works great, iuf you need some HTML5 player code ill post it.
    I feel pretty badly for you. As a web designer, I know that HTML5 (HyperText Markup Language version 5) is a standard for the design compliance of the code in web pages, and NOT a player. There is no such thing as user installable "HTML5 player code", as you describe it. Either a browser is standards compliant, or it isn't. You can't just put  a plug-in into it and make it do something the engine is incapable of.
    No, I wasnt implying you install some app or anything, if any webpage you visit is used as a HTML5 player then android should be able to play the video. I have had great sucess with HTML5,  Code such as:
    <!doctype html> <html> <head> <meta charset="utf-8"> <title>HTML5 with Video</title>  <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->  </head> <body>  <!--begin video--> <video width="500" height="325" poster="Your_poster_image.jpg" controls> <!--these are legitimate 6 sec, sample videos for testing purposes.--> <source src="http://techslides.com/demos/sample-videos/small.webm" type="video/webm"> <source src="http://techslides.com/demos/sample-videos/small.ogv" type="video/ogg"> <source src="http://techslides.com/demos/sample-videos/small.mp4" type="video/mp4"> NOTE: If you see this, you're using an outdated browser that doesn't support the video tag. </video> <!--end video-->  </body> </html>

Maybe you are looking for

  • How do I determine the status of a bug report whose tracking number is 3919162?

    I was given this tracking # by a tech support guy who passed my problem on to the engineering department as a bug. He told me that I could get the status on the 'pre-release forum' but I can't figure out how. Can someone advise? Thanks, Bob

  • Trying to turn on iCloud on iPod and just shows the iCloud program "working".  Never does ask for id

    I am trying to turn on iCloud on iPod touch 5, and when I choose icloud, it just shows the iPod "working".  it never asks for an appleID.  It is like it is locked up or something.  Help!!

  • Missing events when importing

    I have a corrupted iPhoto library so I exported all 64,000 photos to a folder on the desktop.  I then created a new iPhoto library and imported them all back in.  When done, they are all in one event - not split by day correctly.  I checked preferenc

  • IMac freezes up completely

    Has anyone had their iMac freezing on them when viewing video in full screen mode? The pictue stops, but the sound is still going, but the computer isn't accepting ANY user input. It's happened to me on a couple of occasions now. I'm using Mac OS X 1

  • StartTransaction and EndTransaction

    I need to import a XML file, with Journal Entries, several times in a month. The file has about 100 Journal Entries and, for example, if the 80th, gives an error, after that, the process stops and has to "rollback" the others 79. First of All, when i