Apache .htpasswd authentication

hi
i need to write a custom authentication servlet filter which needs to authenticate users against a Apache .htpasswd file.
does anyone know of a Java class library which would authenticate users against a .htpasswd file?

Actually, I upgraded my IE to 5.5 and when I type in or click on the link, it works beautifully. But if I put the same link inside a servlet:
response.sendRedirect("url"), it doesn't work. Does anybody knows why??
Thanks.

Similar Messages

  • Apache PW Authentication & Leopard

    i have an apache site running on my G%. i had password authentication working fine under Panther and Tiger. just upgraded to Leopard and it seems not to be working. it's as though none of the httpd.conf edits (that i see are still there) are not taking effect OR something changed with Apache in Leopard -- or the like.
    the httpdd.conf customizations that have worked for quite some time are:
    Order deny,allow
    Deny from all
    Allow from 127.0.0.1
    AuthName "By Invitation Only"
    AuthType Basic
    AuthUserFile /Library/WebServer/.htpasswd
    Require valid-user
    Satisfy Any
    and they are still in what i believe to be the active httpd.conf file. additionally, the .htpasswd file is also located in the right place and is intact after the upgrade.
    it's not as though the site is inaccessible. access to my site from the outside world is just swell... just no authentication before providing access.
    any ideas of why the password authentication would just not work??
    thanks!!

    That was exactly it!
    I am grateful and so glad I decided to put the question to the forums. I stared and poked at it for more than an hour. I'm not an expert by far, so I was "double checking" myself in circles at 2AM. Thanks SO much for the dot connection.
    Any idea where I can read more about the Leopard specific Apache install???
    Separately, it was funny because it still took me a while to find the issue. Even when I found my way to /etc/apache2, when i then invoked bbedit httpd.conf from within that directory, it opened up the old one -- or rather the one I was already familiar with in /etc/httpd. I eventually had to have bbedit 'open hidden' to get to the proper new one.
    Anyway, thanks for the info!
    David

  • OES2 Apache ldap authentication

    Perhaps saying OES2 is enough to post this here?
    Trying to get apache to authenticate users in eDirectory, to allow access to directories on server. No "virtual server" per se, just "deeper" folders.
    A distinction without a difference? I don't know. Only know it's not working. ldap requests via apache are not getting off the box. ldapsearch queries are. tcpdump says so.
    Is there a secret directive? Well, of course there are, but we can't speak of those here.
    joe a.

    After a bit of sleuthing and general nosing about the docs, etc, this has been edited to correctly use the standard error codes
    and execute the index.blah correctly, as well as redirect http->https "correctly".
    joe a.
    Originally Posted by joea
    Below is a sanitized snippet from /etc/apache2/default-server.conf. This was originally set up by another
    person, a long while back, and may not have been correctly setup to begin with.
    Note the error message, which just display index.htm.
    I have to look into that. Probably should have been a virtual server from the start.
    This way, it does not try to find index.htm or html, instead appears to want css
    file, etc. Hence the error messages hack to redirect it. I've been on more pressing matters,
    so have not had the time to refresh my apache "skills".
    <Directory /srv/www/htdocs/my_page>
    AllowOverride None
    RewriteEngine on
    RewriteCond %{https} ^off$
    rewriterule ^/(.*)$ https://%{SERVER_NAME}/a/$1
    SSLOptions +StrictRequire
    SSLRequireSSL
    SSLRequire %{HTTP_HOST} eq "some-dns-address"
    ErrorDocument 402 /my_page/index.htm
    ErrorDocument 401 /my_page/index.htm
    ErrorDocument 403 /my_page/index.htm
    ErrorDocument 404 /my_page/index.htm
    AuthType Basic
    AuthName "My_Secure(?) Location"
    AuthUserFile /dev/null
    AuthBasicAuthoritative On
    AuthBasicProvider ldap
    AuthzLDAPAuthoritative On
    AuthLDAPURL "ldaps://11.22.33.44/o=my_location???(objectClass=user)"
    AuthLDAPBindDN "cn=my_LDAP_User,o=my_location"
    AuthLDAPBindPassword the_password
    Require ldap-group cn=allowed_group, ou=my_ou, o=my_location
    Satisfy All
    Options +FollowSymlinks
    </Directory>

  • Apache and Weblogic authentication

    Apache 2.0 and WL 8.1 SP6;
    Apache redirects to a wl web app and the web app's front page is password protected using Apache's authentication services.
    Turns out, the users configured with Apache's 'htpasswd' have to be duplicated in weblogic. Curious to know why this is. There appears to be no documentation of this necessity that I could find.
    Any ideas about the configuration principles involved here?
    Thanks,
    Karoly

    Hi Scott,
    The only way it can work is when Apache adds another token to the request
    say
    MyToken : value
    U can create a Custom Identity Asserter to read that token and authenticate the user.
    U can find the steps to create custom identity asserter here
    http://weblogic-wonders.com/weblogic/2010/03/15/custom-identity-asserter-for-weblogic-server/
    HTH,
    Faisal

  • Radius authentication for the browser-based webtop

    Hiya all,
    With help of the radius-authentication module for apache (http://www.freeradius.org/mod_auth_radius/) and web-authentication it is possible to use radius-authentication for the classic-webtop. Has anyone got Radius authentication working for the browser-basedwebtop?
    SSGD version:
    Sun Secure Global Desktop Software for Intel Solaris 10+ (4.30.915)
    Architecture code: i3so0510
    This host: SunOS sgd1.<removed> 5.10 Generic_118855-36 i86pc i386 i86pc
    I have the radius-module running for authentication of a single directory with the apache-config-lines:
    SetEnvIf Request_URI "\.(cab|jar|gif|der)$" sgd_noauth_ok
    <LocationMatch "/secure">
    Order Allow,Deny
    Allow from env=sgd_noauth_ok
    AuthName "Radius authentication for SGD"
    Authtype Basic
    AuthRadiusAuthoritative on
    AuthRadiusCookieValid 540
    AuthRadiusActive On
    Require valid-user
    Satisfy any
    </LocationMatch>
    When changing the line <LocationMatch "/secure"> to <LocationMatch "/sgd"> the browser asks for a authentication and then a 'Not Found' page is being displayed.
    When using the config-lines from http://docs.sun.com/source/819-6255/webauth_config_browser.html the login-page is being displayed normally and SSGD works.
    The main difference I can find between the location /secure and /sgd is: /secure is a simple directory and /sgd is a JkMount to Tomcat.
    Changing the JkLogLevel to debug gives the following info in the JkLogFile:
    Radius authentication:
    [Wed Jun 06 09:31:20 2007] [22647:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (449): Attempting to map URI '/sgd' from 5 maps
    [Wed Jun 06 09:31:20 2007] [22647:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context URI '/examples/*'
    [Wed Jun 06 09:31:20 2007] [22647:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context URI '/axis/*'
    [Wed Jun 06 09:31:20 2007] [22647:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context URI '/sgd/*'
    [Wed Jun 06 09:31:20 2007] [22647:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context URI '/axis'
    [Wed Jun 06 09:31:20 2007] [22647:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context URI '/sgd'
    [Wed Jun 06 09:31:20 2007] [22647:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (486): Found an exact match tta -> /sgd
    With the password-authentication file:
    [Tue Jun 05 13:55:29 2007] [12123:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (449): Attempting to map URI '/sgd/' from 5 maps
    [Tue Jun 05 13:55:29 2007] [12123:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context URI '/examples/*'
    [Tue Jun 05 13:55:29 2007] [12123:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context URI '/axis/*'
    [Tue Jun 05 13:55:29 2007] [12123:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (461): Attempting to map context URI '/sgd/*'
    [Tue Jun 05 13:55:29 2007] [12123:0000] [debug] map_uri_to_worker::jk_uri_worker_map.c (475): Found a wildchar match tta -> /sgd/*
    [Tue Jun 05 13:55:29 2007] [12123:0000] [debug] wc_get_worker_for_name::jk_worker.c (111): found a worker tta
    [Tue Jun 05 13:55:29 2007] [12123:0000] [debug] wc_maintain::jk_worker.c (301): Maintaining worker axis
    [Tue Jun 05 13:55:29 2007] [12123:0000] [debug] wc_maintain::jk_worker.c (301): Maintaining worker tta
    [Tue Jun 05 13:55:29 2007] [12123:0000] [debug] wc_maintain::jk_worker.c (301): Maintaining worker examples
    It seems that the JkMount is not being evaluated correctly after using the radius-authentication.
    Any help will be usefull since I am allready stuck on this problem for a couple of days :(
    Thanks,
    Remold | Everett

    I got response from the Fat Bloke on the mailing list.
    Adding the following line in the apache httpd.conf seams to help and resolved my problem:
    Alias /sgd "/opt/tarantella/webserver/tomcat/5.0.28_axis1.2final_jk1.2.8/webapps/sgd"
    Thanks The Fat Bloke !!
    - Remold
    These instructions are for a 4.2 SGD installation using SGD's third
    party web authentication with mod_auth_radius.so (www.freeradius.org).
    With 4.2 Sun didn't distribute enough of the Apache configured tree
    to enable the use of axps to build the mod_auth_radius module, 4.3 is
    better - Sun now install a modified axps and include files, I haven't
    tried this with 4.3 yet though.
    I built the mod_auth_radius module for Apache 1.3.33 (shipped with 4.2)
    So, this is how we got this working with Radius (tested with SBR
    server and freeradius.org server.)
    Install SGD in the usual way.
    Enable 3rd party authentication:
    According to:
    http://docs.sun.com/source/819-4309-10/en-us/base/standard/
    webauth_config_browser.html
    Configure the Tomcat component of the Secure Global Desktop Web
    Server to
    trust the web server authentication. On each array member, edit the
    /opt/tarantella/webserver/tomcat/version/conf/server.xml file. Add the
    following attribute to the connector element (<Connector>) for the
    Coyote/JK2 AJP 1.3 Connector:
    tomcatAuthentication="false"
    # cat /opt/tarantella/webserver/tomcat/5.0.28_axis1.2final_jk1.2.8/
    conf/server.xml
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector port="8009" minProcessors="5" maxProcessors="75"
    tomcatAuthentication="false"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    "By default, for security reasons, Secure Global Desktop
    Administrators can't
    log in to the browser-based webtop with web server authentication.
    The standard
    login page always displays for these users even if they have been
    authenticated
    by the web server. To change this behavior, run the following command:"
    # tarantella config edit --tarantella-config-login-thirdparty-
    allowadmins 1
    Without this, after authenticating via webauth, the user will be
    prompted for a
    second username and password combination.
    # /opt/tarantella/bin/tarantella objectmanager &
    # /opt/tarantella/bin/tarantella arraymanager &
    In Array Manager:
    Select "Secure Global Desktop Login" on left side and click
    "Properites" at bottom
    Under "Secure Global Desktop Login Properties"
    cd /opt/tarantella/webserver/apache/
    1.3.33_mod_ssl-2.8.22_openssl-0.9.7e_jk1.2.8/conf
    edit httpd.conf:
    ### For SGD Apache based authentication
    Include conf/httpd4radius.conf
    at the end of httpd.conf add:
    Alias /sgd "/opt/tarantella/webserver/tomcat/
    5.0.28_axis1.2final_jk1.2.8/webapps/sgd"
    # cat httpd4radius.conf
    LoadModule radius_auth_module libexec/mod_auth_radius.so
    AddModule mod_auth_radius.c
    # Add to the BOTTOM of httpd.conf
    # If we're using mod_auth_radius, then add it's specific
    # configuration options.
    <IfModule mod_auth_radius.c>
    # AddRadiusAuth server[:port] <shared-secret> [ timeout [ : retries ]]
    # Use localhost, the old RADIUS port, secret 'testing123',
    # time out after 5 seconds, and retry 3 times.
    AddRadiusAuth radiusserver:1812 testing123 5:3
    # AuthRadiusBindAddress <hostname/ip-address>
    # Bind client (local) socket to this local IP address.
    # The server will then see RADIUS client requests will come from
    # the given IP address.
    # By default, the module does not bind to any particular address,
    # and the operating system chooses the address to use.
    # AddRadiusCookieValid <minutes-for-which-cookie-is-valid>
    # the special value of 0 (zero) means the cookie is valid forever.
    AddRadiusCookieValid 5
    </IfModule>
    <LocationMatch /radius >
    Order Allow,Deny
    AuthType Basic
    AuthName "RADIUS Authentication"
    AuthAuthoritative off
    AuthRadiusAuthoritative on
    AuthRadiusCookieValid 5
    AuthRadiusActive On
    Require valid-user
    Satisfy any
    </LocationMatch>
    SetEnvIf Request_URI "\.(cab|jar|gif|der)$" sgd_noauth_ok
    <LocationMatch /sgd >
    Order Allow,Deny
    Allow from env=sgd_noauth_ok
    AuthType Basic
    AuthName "RADIUS Authentication"
    AuthAuthoritative off
    AuthRadiusAuthoritative on
    AuthRadiusCookieValid 5
    AuthRadiusActive On
    Require valid-user
    Satisfy any
    </LocationMatch>
    Put appropriate mod_auth_radius.so into
    /opt/tarantella/webserver/apache/
    1.3.33_mod_ssl-2.8.22_openssl-0.9.7e_jk1.2.8/libexec
    # mkdir /opt/tarantella/webserver/apache/
    1.3.33_mod_ssl-2.8.22_openssl-0.9.7e_jk1.2.8/htdocs/radius/
    # cat /opt/tarantella/webserver/apache/
    1.3.33_mod_ssl-2.8.22_openssl-0.9.7e_jk1.2.8/htdocs/htpasswd/index.html
    <HTML>
    <HEAD>
    <TITLE> Test Page for RADIUS authentication </TITLE>
    </HEAD>
    <BODY>
    <B> You have reached the test page for RADIUS authentication.
    </BODY>
    </HTML>
    I hope this helps!
    -FB

  • Issue with using poi.hwpf.HWPFDocument in servlet on Apache 6.0.16

    Hi Friends,
    I have come to the point where I just don't know what to do now. I am trying to extract text from a word document using the POI from apache. When I run the program locally there is no issue at all. However, when I try to run it on through a servlet I get the above error. I have read somewhere else that this might have something to do JRE, etc.
    All help will be highly appreciated.
    Here is the stack trace of the issue:
    17-08-2008 16:17:49 org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet UploadFileDataServlet threw exception
    java.lang.NoSuchMethodError: org.apache.poi.POIDocument: method <init>()V not found
    at org.apache.poi.hwpf.HWPFDocument.<init>(HWPFDocument.java:113)
    at myDataSharer.reader.MSWordParse.getDocWords(MSWordParse.java:48)
    at myDataSharer.dataset.UploadFileDataServlet.doPost(UploadFileDataServlet.java:165)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
    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.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:433)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:619)
    Source code of the program running locally :
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package myDataSharer.reader;
    import org.apache.poi.hwpf.extractor.*;
    import org.apache.poi.POIDocument;
    import java.io.*;
    import org.apache.poi.poifs.filesystem.*;
    import org.apache.poi.hwpf.*;
    * @author MDANANI
    public class MSWordParse {
    private String fileName = "";
    public MSWordParse() {
    public static void main(String[] args){
    MSWordParse wp = new MSWordParse();
    System.out.println(wp.getDocWords());
    public String getDocWords() {
    String docWords = "";
    this.fileName = "c:/Project1.doc";
    try {
    POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(fileName));
    // Create a document for this file
    HWPFDocument doc = new HWPFDocument(fs);
    WordExtractor we = new WordExtractor(doc);
    docWords = we.getText();
    } catch (Exception e) {
    e.printStackTrace();
    return docWords;
    return docWords;
    }

    i have added commons-fileupload.jar but the error still remains.
    Please take a look at this line of exception:
    Please adjust your web.xml to use org.apache.myfaces.webapp.filter.ExtensionsFilter
    whereas in my web.xml Extensions filter is from:
    org.apache.myfaces.component.html.util.ExtensionsFilter
    I get a broken link error if i try to point to org.apache.myfaces.webapp.filter.ExtensionsFilter

  • ADF applicatiopn on Apache Tomcat server

    Hi all
    Iam intersted to know that can we deploy My ADF(genric applicaion) application containing task flows on my apache tomacat server .
    Thanks in advance
    Bipin

    Hi sammera
    i have add that dll in bin directory and also followed the steps in that link
    still iam getting the exception
    SEVERE: Error configuring application listener of class oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack
    java.lang.ClassNotFoundException: oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1680)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1526)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4148)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4704)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:799)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:779)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:601)
         at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:943)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:563)
         at org.apache.catalina.startup.HostConfig.check(HostConfig.java:1397)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.java:297)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761)
         at org.apache.catalina.manager.ManagerServlet.check(ManagerServlet.java:1500)
         at org.apache.catalina.manager.HTMLManagerServlet.doPost(HTMLManagerServlet.java:252)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.filters.CsrfPreventionFilter.doFilter(CsrfPreventionFilter.java:186)
         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.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:563)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
         at java.lang.Thread.run(Thread.java:619)
    Jul 15, 2011 4:45:20 PM org.apache.catalina.core.StandardContext listenerStartEdited by: Bipin Patil on Jul 15, 2011 4:38 AM

  • Apache service reset config on reboot

    Hi to all,
    i upgraded one of my servers from SnowLeopard Server (10.6.8) to 10.9.4 Mavericks Server, all services migrated fine
    except for Web Service, in this case i needed to rewrite in every virtual host file <mod_rewrite> and <Directory> sections because
    some of these setting didn't migrate in new config files (Now under /Library/Server/Web/Config/sites instead of "classic" /etc/apache2/sites).
    The problem is that OsX doesn't keep modified settings in config files after a reboot so i need every time to rewrite them.
    It seems that OsX restore them to "default" deleting only <mod_rewrite> and apache "basic authentication" inside <Directory> section...
    Taking a look at logs didn't help because there isn't an error related to apache. I tried also to to run "apachectl -t" but syntax is OK..
    Any idea?
    thank you

    Put your stuff in a separate file and place an include directive in the apple managed file.

  • Checksum failed while authenticating via Kerberos

    Hi All,
    I having a problem getting authentication using kerberos to work, I get the message checksum failed. The environment is Windows 2008 Server as DC and IE 8 as client and the application is running inside JBoss (in this case I am using the negotiation-toolkit) and the following trace is in the server.log. Can someone point me in the right direction for solving this problem, i've configured two local environments using w2k3 and w2k8 which are both working just fine but in the customers network it fails with the following trace:
    l
    2011-03-30 11:33:21,845 TRACE [org.jboss.security.SecurityRolesAssociation] (http-0.0.0.0-8888-1) Setting threadlocal:{}
    2011-03-30 11:33:21,846 TRACE [org.jboss.security.plugins.authorization.JBossAuthorizationContext] (http-0.0.0.0-8888-1) Control flag for entry:org.jboss.security.authorization.config.AuthorizationModuleEntry{org.jboss.security.authorization.modules.DelegatingAuthorizationModule:{}REQUIRED}is:[REQUIRED]
    2011-03-30 11:33:21,846 TRACE [org.jboss.security.negotiation.NegotiationAuthenticator] (http-0.0.0.0-8888-1) Authenticating user
    2011-03-30 11:33:21,846 DEBUG [org.jboss.security.negotiation.NegotiationAuthenticator] (http-0.0.0.0-8888-1) Header - Negotiate 2011-03-30 11:33:21,847 TRACE [org.jboss.security.negotiation.common.MessageTrace.Request.Base64] (http-0.0.0.0-8888-1) 2011-03-30 11:33:21,847 TRACE [org.jboss.security.negotiation.common.MessageTrace.Request.Hex] (http-0.0.0.0-8888-1)2011-03-30 11:33:21,848 TRACE [org.jboss.security.negotiation.common.NegotiationContext] (http-0.0.0.0-8888-1) associate 176127440
    2011-03-30 11:33:21,850 TRACE [org.jboss.security.plugins.auth.JaasSecurityManagerBase.SPNEGO] (http-0.0.0.0-8888-1) Begin isValid, principal:FFE8282EB0A470619839BBD7EDF16A5E, cache info: null
    2011-03-30 11:33:21,850 TRACE [org.jboss.security.plugins.auth.JaasSecurityManagerBase.SPNEGO] (http-0.0.0.0-8888-1) defaultLogin, principal=FFE8282EB0A470619839BBD7EDF16A5E
    2011-03-30 11:33:21,850 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] (http-0.0.0.0-8888-1) Begin getAppConfigurationEntry(SPNEGO), size=13
    2011-03-30 11:33:21,850 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] (http-0.0.0.0-8888-1) End getAppConfigurationEntry(SPNEGO), authInfo=AppConfigurationEntry[]:
    [0]
    LoginModule Class: org.jboss.security.negotiation.spnego.SPNEGOLoginModule
    ControlFlag: LoginModuleControlFlag: requisite
    Options:
    name=serverSecurityDomain, value=host
    name=password-stacking, value=useFirstPass
    [1]
    LoginModule Class: org.jboss.security.auth.spi.UsersRolesLoginModule
    ControlFlag: LoginModuleControlFlag: required
    Options:
    name=usersProperties, value=props/spnego-users.properties
    name=rolesProperties, value=props/spnego-roles.properties
    name=password-stacking, value=useFirstPass
    2011-03-30 11:33:21,850 TRACE [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) initialize
    2011-03-30 11:33:21,850 TRACE [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) Security domain: SPNEGO
    2011-03-30 11:33:21,850 DEBUG [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) serverSecurityDomain=host
    2011-03-30 11:33:21,850 TRACE [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) login
    2011-03-30 11:33:21,850 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] (http-0.0.0.0-8888-1) Begin getAppConfigurationEntry(host), size=13
    2011-03-30 11:33:21,850 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] (http-0.0.0.0-8888-1) End getAppConfigurationEntry(host), authInfo=AppConfigurationEntry[]:
    [0]
    LoginModule Class: com.sun.security.auth.module.Krb5LoginModule
    ControlFlag: LoginModuleControlFlag: required
    Options:
    name=principal, value=host/[email protected]
    name=useKeyTab, value=true
    name=storeKey, value=true
    name=keyTab, value=/DATA/jbossserver.host.keytab
    name=debug, value=true
    name=doNotPrompt, value=true
    2011-03-30 11:33:21,850 INFO [STDOUT] (http-0.0.0.0-8888-1) Debug is true storeKey true useTicketCache false useKeyTab true doNotPrompt true ticketCache is null isInitiator true KeyTab is /DATA/jbossserver.host.keytab refreshKrb5Config is false principal is host/[email protected] tryFirstPass is false useFirstPass is false storePass is false clearPass is false
    2011-03-30 11:33:21,850 INFO [STDOUT] (http-0.0.0.0-8888-1) KeyTab instance already exists
    2011-03-30 11:33:21,850 INFO [STDOUT] (http-0.0.0.0-8888-1) Added key: 23version: 4
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) Ordering keys wrt default_tkt_enctypes list
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) Using builtin default etypes for default_tkt_enctypes
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) default etypes for default_tkt_enctypes:
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 3
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 1
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 23
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 16
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 17
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) .
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) principal's key obtained from the keytab
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) Acquire TGT using AS Exchange
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) Using builtin default etypes for default_tkt_enctypes
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) default etypes for default_tkt_enctypes:
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 3
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 1
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 23
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 16
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) 17
    2011-03-30 11:33:21,851 INFO [STDOUT] (http-0.0.0.0-8888-1) .
    2011-03-30 11:33:21,852 INFO [STDOUT] (http-0.0.0.0-8888-1) >>> KrbAsReq calling createMessage
    2011-03-30 11:33:21,852 INFO [STDOUT] (http-0.0.0.0-8888-1) >>> KrbAsReq in createMessage
    2011-03-30 11:33:21,852 INFO [STDOUT] (http-0.0.0.0-8888-1) >>> KrbKdcReq send: kdc=rm-hq-dc1.shipyard.local UDP:88, timeout=30000, number of retries =3, #bytes=158
    2011-03-30 11:33:21,852 INFO [STDOUT] (http-0.0.0.0-8888-1) >>> KDCCommunication: kdc=rm-hq-dc1.shipyard.local UDP:88, timeout=30000,Attempt =1, #bytes=158
    2011-03-30 11:33:21,853 INFO [STDOUT] (http-0.0.0.0-8888-1) >>> KrbKdcReq send: #bytes read=633
    2011-03-30 11:33:21,854 INFO [STDOUT] (http-0.0.0.0-8888-1) >>> KrbKdcReq send: #bytes read=633
    2011-03-30 11:33:21,854 INFO [STDOUT] (http-0.0.0.0-8888-1) >>> EType: sun.security.krb5.internal.crypto.ArcFourHmacEType
    2011-03-30 11:33:21,854 INFO [STDOUT] (http-0.0.0.0-8888-1) >>> KrbAsRep cons in KrbAsReq.getReply host/jbossserver
    2011-03-30 11:33:21,855 INFO [STDOUT] (http-0.0.0.0-8888-1) principal is host/[email protected]
    2011-03-30 11:33:21,855 INFO [STDOUT] (http-0.0.0.0-8888-1) EncryptionKey: keyType=23 keyBytes (hex dump)=0000: 4F C6 44 97 D0 B8 9C 96 A9 79 5B 87 EB 44 71 33 O.D......y[..Dq3
    2011-03-30 11:33:21,855 INFO [STDOUT] (http-0.0.0.0-8888-1) Added server's keyKerberos Principal host/[email protected] Version 4key EncryptionKey: keyType=23 keyBytes (hex dump)=
    0000: 4F C6 44 97 D0 B8 9C 96 A9 79 5B 87 EB 44 71 33 O.D......y[..Dq3
    2011-03-30 11:33:21,855 INFO [STDOUT] (http-0.0.0.0-8888-1)           [Krb5LoginModule] added Krb5Principal host/[email protected] to Subject
    2011-03-30 11:33:21,855 INFO [STDOUT] (http-0.0.0.0-8888-1) Commit Succeeded
    2011-03-30 11:33:21,858 DEBUG [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) Subject = Subject:
         Principal: host/[email protected]
         Private Credential: Ticket (hex) =
    0000: 61 82 01 1F 30 82 01 1B A0 03 02 01 05 A1 13 1B a...0...........
    0120: 9E 96 D4 ...
    Client Principal = host/[email protected]
    Server Principal = krbtgt/[email protected]
    Session Key = EncryptionKey: keyType=23 keyBytes (hex dump)=
    0000: 81 5B 77 9E C3 74 46 AC 87 26 B0 00 5C B6 56 6E .[w..tF..&..\.Vn
    Forwardable Ticket false
    Forwarded Ticket false
    Proxiable Ticket false
    Proxy Ticket false
    Postdated Ticket false
    Renewable Ticket false
    Initial Ticket false
    Auth Time = Wed Mar 30 11:33:17 CEST 2011
    Start Time = Wed Mar 30 11:33:17 CEST 2011
    End Time = Wed Mar 30 21:33:17 CEST 2011
    Renew Till = null
    Client Addresses Null
         Private Credential: Kerberos Principal host/[email protected] Version 4key EncryptionKey: keyType=23 keyBytes (hex dump)=
    0000: 4F C6 44 97 D0 B8 9C 96 A9 79 5B 87 EB 44 71 33 O.D......y[..Dq3
    2011-03-30 11:33:21,858 DEBUG [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) Logged in 'host' LoginContext
    2011-03-30 11:33:21,858 DEBUG [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) Creating new GSSContext.
    2011-03-30 11:33:21,866 INFO [STDOUT] (http-0.0.0.0-8888-1) Found key for host/[email protected](23)
    2011-03-30 11:33:21,867 INFO [STDOUT] (http-0.0.0.0-8888-1) Entered Krb5Context.acceptSecContext with state=STATE_NEW
    2011-03-30 11:33:21,868 INFO [STDOUT] (http-0.0.0.0-8888-1) >>> EType: sun.security.krb5.internal.crypto.ArcFourHmacEType
    2011-03-30 11:33:21,869 ERROR [STDERR] (http-0.0.0.0-8888-1) Checksum failed !
    2011-03-30 11:33:21,870 TRACE [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) Result - GSSException: Failure unspecified at GSS-API level (Mechanism level: Checksum failed)
    2011-03-30 11:33:21,870 ERROR [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) Unable to authenticate
    GSSException: Failure unspecified at GSS-API level (Mechanism level: Checksum failed)
         at sun.security.jgss.krb5.Krb5Context.acceptSecContext(Krb5Context.java:741)
         at sun.security.jgss.GSSContextImpl.acceptSecContext(GSSContextImpl.java:323)
         at sun.security.jgss.GSSContextImpl.acceptSecContext(GSSContextImpl.java:267)
         at org.jboss.security.negotiation.spnego.SPNEGOLoginModule$AcceptSecContext.run(SPNEGOLoginModule.java:294)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:337)
         at org.jboss.security.negotiation.spnego.SPNEGOLoginModule.login(SPNEGOLoginModule.java:118)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
         at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
         at org.jboss.security.plugins.auth.JaasSecurityManagerBase.defaultLogin(JaasSecurityManagerBase.java:552)
         at org.jboss.security.plugins.auth.JaasSecurityManagerBase.authenticate(JaasSecurityManagerBase.java:486)
         at org.jboss.security.plugins.auth.JaasSecurityManagerBase.isValid(JaasSecurityManagerBase.java:365)
         at org.jboss.security.plugins.JaasSecurityManager.isValid(JaasSecurityManager.java:160)
         at org.jboss.web.tomcat.security.JBossWebRealm.authenticate(JBossWebRealm.java:384)
         at org.jboss.security.negotiation.NegotiationAuthenticator.authenticate(NegotiationAuthenticator.java:127)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:491)
         at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
         at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
         at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         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:619)
    Caused by: KrbException: Checksum failed
         at sun.security.krb5.internal.crypto.ArcFourHmacEType.decrypt(ArcFourHmacEType.java:85)
         at sun.security.krb5.internal.crypto.ArcFourHmacEType.decrypt(ArcFourHmacEType.java:77)
         at sun.security.krb5.EncryptedData.decrypt(EncryptedData.java:168)
         at sun.security.krb5.KrbApReq.authenticate(KrbApReq.java:267)
         at sun.security.krb5.KrbApReq.<init>(KrbApReq.java:134)
         at sun.security.jgss.krb5.InitSecContextToken.<init>(InitSecContextToken.java:79)
         at sun.security.jgss.krb5.Krb5Context.acceptSecContext(Krb5Context.java:724)
         ... 35 more
    Caused by: java.security.GeneralSecurityException: Checksum failed
         at sun.security.krb5.internal.crypto.dk.ArcFourCrypto.decrypt(ArcFourCrypto.java:388)
         at sun.security.krb5.internal.crypto.ArcFourHmac.decrypt(ArcFourHmac.java:74)
         at sun.security.krb5.internal.crypto.ArcFourHmacEType.decrypt(ArcFourHmacEType.java:83)
         ... 41 more
    2011-03-30 11:33:21,871 INFO [STDOUT] (http-0.0.0.0-8888-1)           [Krb5LoginModule]: Entering logout
    2011-03-30 11:33:21,871 INFO [STDOUT] (http-0.0.0.0-8888-1)           [Krb5LoginModule]: logged out Subject
    2011-03-30 11:33:21,872 TRACE [org.jboss.security.negotiation.spnego.SPNEGOLoginModule] (http-0.0.0.0-8888-1) abort
    2011-03-30 11:33:21,872 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] (http-0.0.0.0-8888-1) initialize
    2011-03-30 11:33:21,872 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] (http-0.0.0.0-8888-1) Security domain: SPNEGO
    2011-03-30 11:33:21,872 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] (http-0.0.0.0-8888-1) findResource: null
    2011-03-30 11:33:21,872 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] (http-0.0.0.0-8888-1) Properties file=vfsfile:/DATA/jboss-5.1.0.GA/server/default/conf/props/spnego-users.properties, defaults=null
    2011-03-30 11:33:21,872 DEBUG [org.jboss.security.auth.spi.UsersRolesLoginModule] (http-0.0.0.0-8888-1) Loaded properties, users=[]
    2011-03-30 11:33:21,872 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] (http-0.0.0.0-8888-1) findResource: null
    2011-03-30 11:33:21,872 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] (http-0.0.0.0-8888-1) Properties file=vfsfile:/DATA/jboss-5.1.0.GA/server/default/conf/props/spnego-roles.properties, defaults=null
    2011-03-30 11:33:21,872 DEBUG [org.jboss.security.auth.spi.UsersRolesLoginModule] (http-0.0.0.0-8888-1) Loaded properties, users=[[email protected], [email protected]]
    2011-03-30 11:33:21,872 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] (http-0.0.0.0-8888-1) abort
    2011-03-30 11:33:21,872 TRACE [org.jboss.security.plugins.auth.JaasSecurityManagerBase.SPNEGO] (http-0.0.0.0-8888-1) Login failure
    javax.security.auth.login.LoginException: Unable to authenticate - Failure unspecified at GSS-API level (Mechanism level: Checksum failed)
         at org.jboss.security.negotiation.spnego.SPNEGOLoginModule.login(SPNEGOLoginModule.java:141)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
         at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
         at org.jboss.security.plugins.auth.JaasSecurityManagerBase.defaultLogin(JaasSecurityManagerBase.java:552)
         at org.jboss.security.plugins.auth.JaasSecurityManagerBase.authenticate(JaasSecurityManagerBase.java:486)
         at org.jboss.security.plugins.auth.JaasSecurityManagerBase.isValid(JaasSecurityManagerBase.java:365)
         at org.jboss.security.plugins.JaasSecurityManager.isValid(JaasSecurityManager.java:160)
         at org.jboss.web.tomcat.security.JBossWebRealm.authenticate(JBossWebRealm.java:384)
         at org.jboss.security.negotiation.NegotiationAuthenticator.authenticate(NegotiationAuthenticator.java:127)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:491)
         at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
         at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
         at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         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:619)
    2011-03-30 11:33:21,873 TRACE [org.jboss.security.plugins.auth.JaasSecurityManagerBase.SPNEGO] (http-0.0.0.0-8888-1) End isValid, false
    2011-03-30 11:33:21,873 TRACE [org.jboss.security.negotiation.common.NegotiationContext] (http-0.0.0.0-8888-1) clear 176127440
    2011-03-30 11:33:21,873 TRACE [org.jboss.security.SecurityRolesAssociation] (http-0.0.0.0-8888-1) Setting threadlocal:null
    2011-03-30 11:33:21,873 TRACE [org.jboss.security.SecurityRolesAssociation] (http-0.0.0.0-8888-1) Setting threadlocal:null

    Thanks! That did the trick.
    For those who aren't sure what we're talking about, here are the details. In the inspector tab of the user's record in Workgroup Manager, there's an item called AuthenticationAuthority. For servers that use Kerberos, it should have at least two attributes, one for ApplePasswordServer and one for Kerberos.
    The Kerberos entry should look something like this:
    ;Kerberosv5;0x4de7dafb19f92bf00000008b0000207c;[email protected];
    MYSERVER.MYDOMAIN.COM;1024 35 1501888096699469040706569854027123220425732604738787130135110270232071940183724 3
    78199029604219894640418726569868666187867257570714183982184166144733112632082318
    21356466533532379022305132046121848691642928615842396713606475071069113591094835
    025483043226511805720826544139932983788313141311383927555379596135211 [email protected]:123.45.67.89
    When you copy the attribute from a working user, there are two items that need to be changed (assuming you have only one kerberos realm). The first item is the long string of letters and numbers after ;Kerberosv5; in the first line. That's the user's UUID. The second is the user's short name ("fred" in the example above). The easiest way to make the changes is to paste the attribute into a text editor (TextEdit, or TextWrangler if you have it). Copy the user's UUID from the problematic account, and paste it over the one in the text you previously copied and pasted. Then change the short name to match the problematic user. Then copy the entire block from your text editor, select AuthenticationAuthority and click the New Value button. Click in the Text: field and paste. The Hex field will take care of itself. Click OK, then Save your changes.
    Of course before you start making changes like this to your directory, make sure you have a good back up to revert back to in case something gets messed up.

  • How do I encrypt htpasswd's on Win2K?

    What does iPlanet 6 use - SHA, crypt, MD5, other? Have tried Apache htpasswd utility with each flavor, but doesn't work. If something else needed, where can I download it from? Many thanks for any help.

    iWS 6.0's htaccess support uses crypt. You should be able to use Apache's htpasswd, or you can use the bin/https/bin/htpasswd.exe supplied with iWS.

  • URgent !!!!!!!!! How do i add information to server.xml of tomcat

    Hi ,
    I want to add the conext information to my server.xml of tomcat for my hibernate configuration.....
    the conext information is as follows ....
    <Context path="/quickstart" docBase="quickstart">
    <Resource name="jdbc/quickstart" scope="Shareable" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/quickstart">
    <parameter>
    <name>factory</name>
    <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
    </parameter>
    <!-- DBCP database connection settings -->
    <parameter>
    <name>url</name>
    <value>jdbc:postgresql://localhost/quickstart</value>
    </parameter>
    <parameter>
    <name>driverClassName</name><value>org.postgresql.Driver</value>
    </parameter>
    <parameter>
    <name>username</name>
    <value>quickstart</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>secret</value>
    </parameter>
    <!-- DBCP connection pooling options -->
    <parameter>
    <name>maxWait</name>
    <value>3000</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>100</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>10</value>
    </parameter>
    </ResourceParams>
    </Context>
    Where in my server.xml should i put
    the server.xml looks like this :
    <!-- Example Server Configuration File -->
    <!-- Note that component elements are nested corresponding to their
    parent-child relationships with each other -->
    <!-- A "Server" is a singleton element that represents the entire JVM,
    which may contain one or more "Service" instances. The Server
    listens for a shutdown command on the indicated port.
    Note: A "Server" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <Server port="8005" shutdown="SHUTDOWN">
    <!-- Comment these entries out to disable JMX MBeans support used for the
    administration web application -->
    <Listener className="org.apache.catalina.core.AprLifecycleListener" />
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
    <Listener className="org.apache.catalina.storeconfig.StoreConfigLifecycleListener"/>
    <!-- Global JNDI resources -->
    <GlobalNamingResources>
    <!-- Test entry for demonstration purposes -->
    <Environment name="simpleValue" type="java.lang.Integer" value="30"/>
    <!-- Editable user database that can also be used by
    UserDatabaseRealm to authenticate users -->
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved"
    factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
    pathname="conf/tomcat-users.xml" />
    </GlobalNamingResources>
    <!-- A "Service" is a collection of one or more "Connectors" that share
    a single "Container" (and therefore the web applications visible
    within that Container). Normally, that Container is an "Engine",
    but this is not required.
    Note: A "Service" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Catalina">
    <!-- A "Connector" represents an endpoint by which requests are received
    and responses are returned. Each Connector passes requests on to the
    associated "Container" (normally an Engine) for processing.
    By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
    You can also enable an SSL HTTP/1.1 Connector on port 8443 by
    following the instructions below and uncommenting the second Connector
    entry. SSL support requires the following steps (see the SSL Config
    HOWTO in the Tomcat 5 documentation bundle for more detailed
    instructions):
    * If your JDK version 1.3 or prior, download and install JSSE 1.0.2 or
    later, and put the JAR files into "$JAVA_HOME/jre/lib/ext".
    * Execute:
    %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
    $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA (Unix)
    with a password value of "changeit" for both the certificate and
    the keystore itself.
    By default, DNS lookups are enabled when a web application calls
    request.getRemoteHost(). This can have an adverse impact on
    performance, so you can disable it by setting the
    "enableLookups" attribute to "false". When DNS lookups are disabled,
    request.getRemoteHost() will return the String version of the
    IP address of the remote client.
    -->
    <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
    <Connector
    port="8080" maxHttpHeaderSize="8192"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" redirectPort="8443" acceptCount="100"
    connectionTimeout="20000" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to 0 -->
         <!-- Note : To use gzip compression you could set the following properties :
                   compression="on"
                   compressionMinSize="2048"
                   noCompressionUserAgents="gozilla, traviata"
                   compressableMimeType="text/html,text/xml"
         -->
    <!-- Define a SSL HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector port="8443" maxHttpHeaderSize="8192"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" disableUploadTimeout="true"
    acceptCount="100" scheme="https" secure="true"
    clientAuth="false" sslProtocol="TLS" />
    -->
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009"
    enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
    <!-- Define a Proxied HTTP/1.1 Connector on port 8082 -->
    <!-- See proxy documentation for more information about using this. -->
    <!--
    <Connector port="8082"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" acceptCount="100" connectionTimeout="20000"
    proxyPort="80" disableUploadTimeout="true" />
    -->
    <!-- An Engine represents the entry point (within Catalina) that processes
    every request. The Engine implementation for Tomcat stand alone
    analyzes the HTTP headers included with the request, and passes them
    on to the appropriate Host (virtual host). -->
    <!-- You should set jvmRoute to support load-balancing via AJP ie :
    <Engine name="Standalone" defaultHost="localhost" jvmRoute="jvm1">
    -->
    <!-- Define the top level container in our container hierarchy -->
    <Engine name="Catalina" defaultHost="localhost">
    <!-- The request dumper valve dumps useful debugging information about
    the request headers and cookies that were received, and the response
    headers and cookies that were sent, for all requests received by
    this instance of Tomcat. If you care only about requests to a
    particular virtual host, or a particular application, nest this
    element inside the corresponding <Host> or <Context> entry instead.
    For a similar mechanism that is portable to all Servlet 2.4
    containers, check out the "RequestDumperFilter" Filter in the
    example application (the source for this filter may be found in
    "$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").
    Request dumping is disabled by default. Uncomment the following
    element to enable it. -->
    <!--
    <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
    -->
    <!-- Because this Realm is here, an instance will be shared globally -->
    <!-- This Realm uses the UserDatabase configured in the global JNDI
    resources under the key "UserDatabase". Any edits
    that are performed against this UserDatabase are immediately
    available for use by the Realm. -->
    <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
    resourceName="UserDatabase"/>
    <!-- Comment out the old realm but leave here for now in case we
    need to go back quickly -->
    <!--
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    -->
    <!-- Replace the above Realm with one of the following to get a Realm
    stored in a database and accessed via JDBC -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="org.gjt.mm.mysql.Driver"
    connectionURL="jdbc:mysql://localhost/authority"
    connectionName="test" connectionPassword="test"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="oracle.jdbc.driver.OracleDriver"
    connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL"
    connectionName="scott" connectionPassword="tiger"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="sun.jdbc.odbc.JdbcOdbcDriver"
    connectionURL="jdbc:odbc:CATALINA"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!-- Define the default virtual host
    Note: XML Schema validation will not work with Xerces 2.2.
    -->
    <Host name="localhost" appBase="webapps"
    unpackWARs="true" autoDeploy="true"
    xmlValidation="false" xmlNamespaceAware="false">
    <!-- Defines a cluster for this node,
    By defining this element, means that every manager will be changed.
    So when running a cluster, only make sure that you have webapps in there
    that need to be clustered and remove the other ones.
    A cluster has the following parameters:
    className = the fully qualified name of the cluster class
    name = a descriptive name for your cluster, can be anything
    mcastAddr = the multicast address, has to be the same for all the nodes
    mcastPort = the multicast port, has to be the same for all the nodes
    mcastBindAddr = bind the multicast socket to a specific address
    mcastTTL = the multicast TTL if you want to limit your broadcast
    mcastSoTimeout = the multicast readtimeout
    mcastFrequency = the number of milliseconds in between sending a "I'm alive" heartbeat
    mcastDropTime = the number a milliseconds before a node is considered "dead" if no heartbeat is received
    tcpThreadCount = the number of threads to handle incoming replication requests, optimal would be the same amount of threads as nodes
    tcpListenAddress = the listen address (bind address) for TCP cluster request on this host,
    in case of multiple ethernet cards.
    auto means that address becomes
    InetAddress.getLocalHost().getHostAddress()
    tcpListenPort = the tcp listen port
    tcpSelectorTimeout = the timeout (ms) for the Selector.select() method in case the OS
    has a wakup bug in java.nio. Set to 0 for no timeout
    printToScreen = true means that managers will also print to std.out
    expireSessionsOnShutdown = true means that
    useDirtyFlag = true means that we only replicate a session after setAttribute,removeAttribute has been called.
    false means to replicate the session after each request.
    false means that replication would work for the following piece of code: (only for SimpleTcpReplicationManager)
    <%
    HashMap map = (HashMap)session.getAttribute("map");
    map.put("key","value");
    %>
    replicationMode = can be either 'pooled', 'synchronous' or 'asynchronous'.
    * Pooled means that the replication happens using several sockets in a synchronous way. Ie, the data gets replicated, then the request return. This is the same as the 'synchronous' setting except it uses a pool of sockets, hence it is multithreaded. This is the fastest and safest configuration. To use this, also increase the nr of tcp threads that you have dealing with replication.
    * Synchronous means that the thread that executes the request, is also the
    thread the replicates the data to the other nodes, and will not return until all
    nodes have received the information.
    * Asynchronous means that there is a specific 'sender' thread for each cluster node,
    so the request thread will queue the replication request into a "smart" queue,
    and then return to the client.
    The "smart" queue is a queue where when a session is added to the queue, and the same session
    already exists in the queue from a previous request, that session will be replaced
    in the queue instead of replicating two requests. This almost never happens, unless there is a
    large network delay.
    -->
    <!--
    When configuring for clustering, you also add in a valve to catch all the requests
    coming in, at the end of the request, the session may or may not be replicated.
    A session is replicated if and only if all the conditions are met:
    1. useDirtyFlag is true or setAttribute or removeAttribute has been called AND
    2. a session exists (has been created)
    3. the request is not trapped by the "filter" attribute
    The filter attribute is to filter out requests that could not modify the session,
    hence we don't replicate the session after the end of this request.
    The filter is negative, ie, anything you put in the filter, you mean to filter out,
    ie, no replication will be done on requests that match one of the filters.
    The filter attribute is delimited by ;, so you can't escape out ; even if you wanted to.
    filter=".*\.gif;.*\.js;" means that we will not replicate the session after requests with the URI
    ending with .gif and .js are intercepted.
    The deployer element can be used to deploy apps cluster wide.
    Currently the deployment only deploys/undeploys to working members in the cluster
    so no WARs are copied upons startup of a broken node.
    The deployer watches a directory (watchDir) for WAR files when watchEnabled="true"
    When a new war file is added the war gets deployed to the local instance,
    and then deployed to the other instances in the cluster.
    When a war file is deleted from the watchDir the war is undeployed locally
    and cluster wide
    -->
    <!--
    <Cluster className="org.apache.catalina.cluster.tcp.SimpleTcpCluster"
    managerClassName="org.apache.catalina.cluster.session.DeltaManager"
    expireSessionsOnShutdown="false"
    useDirtyFlag="true"
    notifyListenersOnReplication="true">
    <Membership
    className="org.apache.catalina.cluster.mcast.McastService"
    mcastAddr="228.0.0.4"
    mcastPort="45564"
    mcastFrequency="500"
    mcastDropTime="3000"/>
    <Receiver
    className="org.apache.catalina.cluster.tcp.ReplicationListener"
    tcpListenAddress="auto"
    tcpListenPort="4001"
    tcpSelectorTimeout="100"
    tcpThreadCount="6"/>
    <Sender
    className="org.apache.catalina.cluster.tcp.ReplicationTransmitter"
    replicationMode="pooled"
    ackTimeout="15000"/>
    <Valve className="org.apache.catalina.cluster.tcp.ReplicationValve"
    filter=".*\.gif;.*\.js;.*\.jpg;.*\.htm;.*\.html;.*\.txt;"/>
    <Deployer className="org.apache.catalina.cluster.deploy.FarmWarDeployer"
    tempDir="/tmp/war-temp/"
    deployDir="/tmp/war-deploy/"
    watchDir="/tmp/war-listen/"
    watchEnabled="false"/>
    </Cluster>
    -->
    <!-- Normally, users must authenticate themselves to each web app
    individually. Uncomment the following entry if you would like
    a user to be authenticated the first time they encounter a
    resource protected by a security constraint, and then have that
    user identity maintained across all web applications contained
    in this virtual host. -->
    <!--
    <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
    -->
    <!-- Access log processes all requests for this virtual host. By
    default, log files are created in the "logs" directory relative to
    $CATALINA_HOME. If you wish, you can specify a different
    directory with the "directory" attribute. Specify either a relative
    (to $CATALINA_HOME) or absolute path to the desired directory.
    -->
    <!--
    <Valve className="org.apache.catalina.valves.AccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common" resolveHosts="false"/>
    -->
    <!-- Access log processes all requests for this virtual host. By
    default, log files are created in the "logs" directory relative to
    $CATALINA_HOME. If you wish, you can specify a different
    directory with the "directory" attribute. Specify either a relative
    (to $CATALINA_HOME) or absolute path to the desired directory.
    This access log implementation is optimized for maximum performance,
    but is hardcoded to support only the "common" and "combined" patterns.
    -->
    <!--
    <Valve className="org.apache.catalina.valves.FastCommonAccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common" resolveHosts="false"/>
    -->
    </Host>
    </Engine>
    </Service>
    </Server>
    Can Some one Help me pleaseeeeee

    Please don't cross-post in multiple forums. I have answered
    this in your other thread.

  • Error in installing CC&B 2.3.1 SP2

    Hi,
    I have CC&B 2.3.1 SP1 in my windows machine with Tomcat Server. I am trying to install SP2 but getting some error if i select some person or something in the control central. Installation didn't show up any error and server is staring up fine. Problem is CC&B is not loading any account or premise or any entity
    for example, I am getting below error if i select any account. SP1 was working fine and tried to install SP2 twice but same issue. Has anyone successfully installed SP2 in Tomcat ? Any suggestions would surely help. Thanks
    SYSUSER - 921196-109-1 2011-08-05 16:28:56,683 [http-6500-5] ERROR (cobol.host.OptimizedRemoteExecuterStub) An exception occurred invoking remote command.
    - 2011-08-05 16:28:56,684 [Log4j Socket Handler] INFO (log4j.net.SocketNode) Caught java.net.SocketException closing conneciton.
    SYSUSER - 921196-109-1 2011-08-05 16:28:56,684 [http-6500-5] INFO (cobol.host.RemoteJVMConnectionImpl) Connection to JVM 3 being shunned
    SYSUSER - 921196-109-1 2011-08-05 16:28:56,684 [http-6500-5] ERROR (cobol.host.RemoteJVMConnectionImpl) An exception has occurred calling the remote JVM
    SYSUSER - 921196-109-1 2011-08-05 16:28:56,684 [http-6500-5] ERROR (support.cobol.AbstractCobolProgram) An exception occurred calling cobol program CIPCACCP
    SYSUSER - 921196-109-1 2011-08-05 16:28:56,686 [http-6500-5] ERROR (api.service.ServiceExecutionPolicy) Rollback: Read failed
    SYSUSER - 921196-109-1 2011-08-05 16:28:56,686 [http-6500-5] ERROR (support.context.SessionExecutable) Caught exception from SessionExecutable.execute()
    SYSUSER - 921196-109-1 2011-08-05 16:28:56,687 [http-6500-5] ERROR (web.dataservlet.PageRead) Unexpected error.
    com.splwg.base.support.cobol.host.InputClosedException:
    The following stacked messages were reported as the LoggedException was rethrown:
    com.splwg.base.api.service.ServiceDispatcher$13.execute(ServiceDispatcher.java:552): Caught exception from SessionExecutable.execute()
    com.splwg.base.support.cobol.ServiceAdapter.invokePageService(ServiceAdapter.java:76): Rollback: Read failed
    com.splwg.base.support.cobol.host.CommandRunnerHolder.invoke(CommandRunnerHolder.java:31): An exception occurred calling cobol program CIPCACCP
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception has occurred calling the remote JVM
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception occurred invoking remote command.
    The root LoggedException was: The input was closed.
         at com.splwg.base.support.cobol.host.OptimizedObjectEncoder.readOptimized(OptimizedObjectEncoder.java:176)
         at com.splwg.base.support.cobol.host.OptimizedDataInput.readOptimized(OptimizedDataInput.java:41)
         at com.splwg.base.support.cobol.host.OptimizedObjectEncoder.readSerializable(OptimizedObjectEncoder.java:245)
         at com.splwg.base.support.cobol.host.OptimizedDataInput.readSerializable(OptimizedDataInput.java:49)
         at com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83)
         at com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.invoke(OptimizedRemoteExecuterStub.java:58)
         at com.splwg.base.support.cobol.host.RemoteRunnerImpl.invoke(RemoteRunnerImpl.java:111)
         at com.splwg.base.support.cobol.host.CommandRunnerHolder.invoke(CommandRunnerHolder.java:31)
         at com.splwg.base.support.cobol.AbstractCobolProgram$CallCobolClosure.run(AbstractCobolProgram.java:195)
         at com.splwg.base.support.interception.SessionInterceptionManager.notifyGenericCallStackJump(SessionInterceptionManager.java:268)
         at com.splwg.base.support.context.FrameworkSession.notifyGenericCallStackJump(FrameworkSession.java:1473)
         at com.splwg.base.support.cobol.AbstractCobolProgram$1.run(AbstractCobolProgram.java:115)
         at com.splwg.base.support.cobol.AbstractCobolProgram.callCobol(AbstractCobolProgram.java:125)
         at com.splwg.base.support.cobol.GenericCobolServiceProgram.callCobol(GenericCobolServiceProgram.java:64)
         at com.splwg.base.support.cobol.ServiceAdapter.invokePageService(ServiceAdapter.java:76)
         at com.splwg.base.support.service.cobol.CobolPageRereadHelper.read(CobolPageRereadHelper.java:34)
         at com.splwg.base.support.service.cobol.CobolPageReadService.read(CobolPageReadService.java:17)
         at com.splwg.base.support.service.PageReadService.privateExecute(PageReadService.java:56)
         at com.splwg.base.support.service.PageReadService.execute(PageReadService.java:39)
         at com.splwg.base.api.service.ServiceDispatcher.readItemInSession(ServiceDispatcher.java:627)
         at com.splwg.base.api.service.ServiceDispatcher$13.execute(ServiceDispatcher.java:553)
         at com.splwg.base.api.service.ServiceDispatcher$13.execute(ServiceDispatcher.java:552)
         at com.splwg.base.support.context.SessionExecutable.doInNewSession(SessionExecutable.java:39)
         at com.splwg.base.api.service.ServiceDispatcher.doInAppropriateSession(ServiceDispatcher.java:608)
         at com.splwg.base.api.service.ServiceDispatcher.readItem(ServiceDispatcher.java:558)
         at com.splwg.base.api.service.ServiceDispatcher.readItem(ServiceDispatcher.java:538)
         at com.splwg.serviceclient.LocalServiceDispatcher.read(LocalServiceDispatcher.java:129)
         at com.splwg.base.web.dataservlet.PageRead.service(PageRead.java:52)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.splwg.base.web.services.RequestContextFilter.doFilter(RequestContextFilter.java:50)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.splwg.base.web.utility.CompressionFilter.doFilter(CompressionFilter.java:46)
         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.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:525)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:261)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:581)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.io.EOFException
         at java.io.DataInputStream.readByte(DataInputStream.java:243)
         at com.splwg.base.support.cobol.host.OptimizedObjectEncoder.readOptimized(OptimizedObjectEncoder.java:75)
         ... 47 more
    - 2011-08-05 16:28:56,776 [JVM 3 ERROR logger] ERROR (cobol.host.ProcessLogger) Load error : file 'CIPCACCR'
    - 2011-08-05 16:28:56,877 [JVM 3 ERROR logger] ERROR (cobol.host.ProcessLogger) error code: 173, pc=0, call=1, seg=0
    - 2011-08-05 16:28:56,978 [JVM 3 ERROR logger] ERROR (cobol.host.ProcessLogger) 173 Called program file not found in drive/directory
    - 2011-08-05 16:28:57,079 [JVM 3 ERROR logger] ERROR (cobol.host.ProcessLogger)
    - 2011-08-05 16:28:57,246 [JVM 5 INFO logger] INFO (cobol.host.ProcessLogger) Remote JVM 5 started with arguments: 5 6505 6506 2
    - 2011-08-05 16:28:57,347 [JVM 5 INFO logger] INFO (cobol.host.ProcessLogger) INFO: Loaded spl.properties from classpath: {spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl.tools.loaded.applications=base,ccb,cm, spl.runtime.cobol.sql.disableQueryCache=false, spl.runtime.utf8Database=true, spl.runtime.fusionlook=true, spl.runtime.cobol.encoding=UTF8, spl.runtime.cobol.sql.cache.maxTotalEntries=1000, spl.runtime.cobol.cobrcall=false, spl.runtime.cobol.sql.fetchSize=150, spl.runtime.environ.init.dir=C:/spl/CCB23/etc, spl.runtime.sql.highValue=?, spl.runtime.service.extraInstallationServices=CILTINCP, spl.runtime.oracle.statementCacheSize=300}
    - 2011-08-05 16:28:57,448 [JVM 5 INFO logger] INFO (cobol.host.ProcessLogger) - 2011-08-05 16:28:57,367 [Remote JVM:5 Main ] INFO (cobol.host.SocketStrategy) Socket strategy set to com.splwg.base.support.cobol.host.sockets.WindowsPipeSocketStrategy
    - 2011-08-05 16:28:57,549 [JVM 5 INFO logger] INFO (cobol.host.ProcessLogger) Remote JVM 5 listening for requests on port: 6506
    - 2011-08-05 16:28:58,094 [JVM 5 INFO logger] INFO (cobol.host.ProcessLogger) - 2011-08-05 16:28:58,094 [Remote JVM:5 Thread 1] INFO (cobol.host.CIPZMEMJ) CIPZMEMJ initialized successfully.
    - 2011-08-05 16:28:58,195 [JVM 5 INFO logger] INFO (cobol.host.ProcessLogger) INFO: Loaded spl.properties from classpath: {spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl.tools.loaded.applications=base,ccb,cm, spl.runtime.cobol.sql.disableQueryCache=false, spl.runtime.utf8Database=true, spl.runtime.fusionlook=true, spl.runtime.cobol.encoding=UTF8, spl.runtime.cobol.sql.cache.maxTotalEntries=1000, spl.runtime.cobol.cobrcall=false, spl.runtime.cobol.sql.fetchSize=150, spl.runtime.environ.init.dir=C:/spl/CCB23/etc, spl.runtime.sql.highValue=?, spl.runtime.service.extraInstallationServices=CILTINCP, spl.runtime.oracle.statementCacheSize=300}
    - 2011-08-05 16:28:58,296 [JVM 5 INFO logger] INFO (cobol.host.ProcessLogger) INFO: Loaded log4j.properties from classpath: {log4j.logger.org.hibernate.type=debug, log4j.appender.A1.layout.ConversionPattern=%X{userId} - %X{transactionId} %d [%t] %-5p (%c{3}) %m%n, log4j.appender.A1.encoding=UTF-8, log4j.logger.spl.org.hibernate.SQL=info, log4j.logger.com.splwg=info, log4j.logger.spl.org.hibernate.type=info, log4j.logger.org.hibernate=info, log4j.logger.spl.com.splwg.base.support.hibernatetypes=info, log4j.appender.A1=org.apache.log4j.ConsoleAppender, log4j.appender.A1.layout=org.apache.log4j.PatternLayout, log4j.logger.org.hibernate.SQL=debug, log4j.logger.org.hibernate.cfg=warn, log4j.logger.com.splwg.base.support.hibernatetypes=debug, log4j.rootCategory=info, A1}
    - 2011-08-05 16:28:58,302 [Log4j Connection Listener] INFO (cobol.host.LocalLogServer) Connected to client at /10.143.9.188
    - 2011-08-05 16:28:58,305 [pool-2-thread-1] INFO (cobol.host.RotatingCommandRunnerProvider) All inflight requests have returned for JVM 3. Shutting it down.
    - 2011-08-05 16:28:58,381 [Remote JVM:5 Main ] INFO (cobol.host.RemoteJVM) Remote JVM 5 setup complete
    - 2011-08-05 16:28:59,306 [pool-2-thread-1] INFO (cobol.host.ProcessLogger) Shutting down JVM 3 INFO logger
    - 2011-08-05 16:28:59,306 [pool-2-thread-1] INFO (cobol.host.ProcessLogger) Shutting down JVM 3 ERROR logger

    hi
    I face a similar issue as u faced . Please let me know the solution .
    Error in Log file : When trying to switch language.
    ZOHAIB - 169696-23-1 2012-01-09 15:23:22,624 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR (web.dataservlet.PageChange) Unexpected error.
    com.splwg.base.support.cobol.host.InputClosedException:
    The following stacked messages were reported as the LoggedException was rethrown:
    com.splwg.base.api.service.ServiceDispatcher$5.execute(ServiceDispatcher.java:248): Caught exception from SessionExecutable.execute()
    com.splwg.base.support.pagemaintenance.AbstractPageMaintenance.changeItem(AbstractPageMaintenance.java:134): Rollback: Change failed
    com.splwg.base.support.cobol.host.CommandRunnerHolder.invoke(CommandRunnerHolder.java:31): An exception occurred calling cobol program CIPZDATA
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception has occurred calling the remote JVM
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception occurred invoking remote command.

  • Unable to use Datasource.cfc in Admin API - The current user is not authorized to invoke this method

    Hi Everyone,
    I am having some issues accessing the methods in the datasource.cfc in the adminAPI.
    I can successfully load the administrator CFC and am told that I have successsfuly logged in;
    But when I try to subsequently load the datasource.cfc I get an error that the current user is unable to access the method.
    /* Create an Admin API object and call the login method */
                                                      var local = {};
                                                      local.adminObj = createObject("component", "cfide.adminapi.administrator");
                                                      /* Enter your password for the CF Admin */
      /* if you dump this - TRUE is returned */
                                                      local.adminObj.login(adminPassword="my_admin_user_password");
                                                      /* Create an object of datasource component */
                                                      local.dsnObj = createObject("component", "cfide.adminapi.datasource");
      writeDump(local.dsnObj.getDataSources());
    I tried creating separate admin users and passwords - yhinking that perhaps a revent hotfix had stopped the "admin" user from being allowed to use the adminAPI - but changing to a new adminuser yielded the same results.
    I could login to the admin API with the new username and passsword - but could not access the datasource.cfc after that.
    Here is the debug output from the error...
    The current user is not authorized to invoke this method.
    The error occurred in accessmanager.cfc: line 48
    Called from datasource.cfc: line 52
    Called from C:/inetpub/wwwroot/projectDir/trunk/Application.cfc: line 155
    Called from C:/inetpub/wwwroot/projectDir/trunk/Application.cfc: line 52
    Called from C:/inetpub/wwwroot/projectDir/trunk/Application.cfc: line 45
    Called from C:/inetpub/wwwroot/projectDir/trunk/Application.cfc: line 1
    -1 : Unable to display error's location in a CFML template.
    Resources:
    Check the ColdFusion documentation to verify that you are using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser 
    Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
    Remote Address 
    127.0.0.1
    Referrer 
    Date/Time 
    22-Apr-13 01:09 PM
    Stack Trace
    at cfaccessmanager2ecfc974154242$funcCHECKADMINROLES.runFunction(E:/cf10_final/cfusion/wwwro ot/CFIDE/adminapi/accessmanager.cfc:48) at cfdatasource2ecfc1679861966$funcGETDATASOURCES.runFunction(E:/cf10_final/cfusion/wwwroot/ CFIDE/adminapi/datasource.cfc:52) at cfApplication2ecfc498167235$funcPREREQUISITESTART.runFunction(C:/inetpub/wwwroot/projectD ir/trunk/Application.cfc:155) at cfApplication2ecfc498167235$funcINIT.runFunction(C:/inetpub/wwwroot/projectDir/trunk/Appl ication.cfc:52) at cfApplication2ecfc498167235._factor5(C:/inetpub/wwwroot/projectDir/trunk/Application.cfc: 45) at cfApplication2ecfc498167235.runPage(C:/inetpub/wwwroot/projectDir/trunk/Application.cfc:1 )
    coldfusion.runtime.CustomException: The current user is not authorized to invoke this method. at coldfusion.tagext.lang.ThrowTag.doStartTag(ThrowTag.java:142) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2799) at cfaccessmanager2ecfc974154242$funcCHECKADMINROLES.runFunction(E:\cf10_final\cfusion\wwwroot\CFIDE\adminapi\accessmanager.cfc:48) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:655) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:444) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:414) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2432) at cfdatasource2ecfc1679861966$funcGETDATASOURCES.runFunction(E:\cf10_final\cfusion\wwwroot\CFIDE\adminapi\datasource.cfc:52) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:655) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:444) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:414) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2432) at cfApplication2ecfc498167235$funcPREREQUISITESTART.runFunction(C:\inetpub\wwwroot\projectDir\trunk\Application.cfc:155) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2659) at cfApplication2ecfc498167235$funcINIT.runFunction(C:\inetpub\wwwroot\projectDir\trunk\Application.cfc:52) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2659) at cfApplication2ecfc498167235._factor5(C:\inetpub\wwwroot\projectDir\trunk\Application.cfc:45) at cfApplication2ecfc498167235.runPage(C:\inetpub\wwwroot\projectDir\trunk\Application.cfc:1) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244) at coldfusion.runtime.TemplateProxyFactory.resolveComponentHelper(TemplateProxyFactory.java:538) at coldfusion.runtime.TemplateProxyFactory.resolveName(TemplateProxyFactory.java:234) at coldfusion.runtime.TemplateProxyFactory.resolveName(TemplateProxyFactory.java:159) at coldfusion.runtime.TemplateProxyFactory.resolveFile(TemplateProxyFactory.java:120) at coldfusion.cfc.CFCProxy.<init>(CFCProxy.java:138) at coldfusion.cfc.CFCProxy.<init>(CFCProxy.java:84) at coldfusion.runtime.AppEventInvoker.<init>(AppEventInvoker.java:64) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:232) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:112) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94) at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:79) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62) at coldfusion.CfmServlet.service(CfmServlet.java:219) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:224) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:169) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:928) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:414) at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:204) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:539) at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:298) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:662)
    And here is the listed exceptions, beneath the stack trace;
    13:09:56.056 - cfadminapiSecurityError Exception - in E:/cf10_final/cfusion/wwwroot/CFIDE/adminapi/accessmanager.cfc : line 48
             The current user is not authorized to invoke this method.
    13:09:56.056 - cfadminapiSecurityError Exception - in E:/cf10_final/cfusion/wwwroot/CFIDE/adminapi/accessmanager.cfc : line 48
             The current user is not authorized to invoke this method.
    13:09:56.056 - java.io.FileNotFoundException - in C:/ColdFusion10/cfusion/wwwroot/WEB-INF/exception/errorcontext.cfm : line 44
             E:/cf10_final/cfusion/wwwroot/CFIDE/adminapi/accessmanager.cfc (The system cannot find the path specified)
    This perspn seems to be having the same issue;
    http://forums.adobe.com/message/5051892
    and I agree I don't have "E" drive either!

    I've found a solution to my plight - I don't know if it'll work for you or help you try something that MAY fix it.
    I use a common code set which includes the Application.cfc from a CF Mapping - So, in the application.cfc in the actual website I do this:-
    <cfinclude template="/UberDirectory/Application.cfc">
    Then, in the /UberDirectory/Application.cfc, I was initialising a CFC which checks if the datasource was created for the website. The datasource checking code attempts to log into the Admin API and check & create if necessary the datasource.
    This has previously worked without fail for me - But in this instance it failed!! I was doing two things wrong - Firstly, the CFC should only be called in the Application.cfc in the onRequestStart section as the Application had to be initialised first - This is maybe because I've invoked the application.cfc in a "non-standard" manner.
    Secondly, once I'd moved the CFC invocation into oNRequestStart I saw the following error:-
    The string COOKIE.CFAUTHORIZATION_uber-directory is not a valid ColdFusion variable name.
    I had this as the app name .... <cfset this.name = 'uber-directory'>
    Changedthe dash to an underscore and I was away and could once again check the datasources
    Hope it helps
    Martin

  • Server Crash with Error Message: Illegal memory access. [54]

    Hi
    I searched old posts where it reads that upgrade to BEA JRockit(R) R27.1 might solve this problem.
    I am already running BEA JRockit(R) R27.1
    Here is the complete dump information. This is one time occurance on production system so we do not have a way to reproduce the issue.
    ~~~~~~~~~~~~~~~~~~~~~
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 16:10:29 on Thu Nov 8 17:14:45 2007
    Additional information is available in:
    /cust/app/fxi-direct-2.4-20071031-113036/servers/JBoss/bin/jrockit.16992.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=11, si_code=128 si_addr=(nil)
    Version : BEA JRockit(R) R27.1.0-109-73164-1.5.0_08-20061129-1415-linux-x86_64
    GC : gencon
    : Current OC phase is: marking. YC is not running.
    : mmHeap->data = 0x2d00000, mmHeap->top = 0x41500000
    : The nurserylist starts at 0x22100000 and ends at 0x271af2e8
    : mmStartCompaction = 0x39800000, mmEndCompaction = 0x3d680000
    CPU : Intel Pentium 4 (HT) SSE SSE2 NetBurst EM64T
    Number CPUs : 8
    Tot Phys Mem : 4138582016 (3946 MB)
    OS version : Red Hat Enterprise Linux AS release 4 (Nahant Update 3)
    Linux version 2.6.9-34.ELsmp ([email protected]) (gcc version 3.4.5 20051201 (Red Hat 3.4.5-2)) #1 SMP Fri Feb 24 16:56:28 EST 2006 (x86_64)
    Thread System: NPTL
    State : JVM is running (Main thread has finished)
    Command Line : -Xms1000m -Xmx1000m -Xgc:gencon -Xverbosetimestamp -Xverbose:memory,cpuinfo,opt -Xgcpause -Xgcreport -Xmanagement:ssl=false,authenticate=false -Djrockit.managementserver.port=7090 -Dprogram.name=startup.sh -Dlog4j.configuration=log4j.properties org.jboss.Main -c fxi-direct
    java.home : /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre
    j.class.path : /cust/opt/jboss/bin/run.jar:/cust/opt/jdk15/lib/tools.jar:/cust/app/fxi-direct/cust5:/cust/app/fxi-direct/cust5/properties:/cust/app/fxi-direct/cust5/XML:/cust/app/fxi-direct/cust5/FXWeb/Rules:/cust/app/fxi-direct/cust5/AdminWeb/Rules:/cust/app/fxi-direct/cust5/AdminServices/XML:/cust/app/fxi-direct/cust5/CitiFXServices/XML:/cust/app/fxi-direct/cust5/CitiChiefDealerAdminWeb/Rules:/cust/app/fxi-direct/cust5/DirectFX/XML:/cust/app/fxi-direct/cust5/DirectFX/properties:/cust/app/fxi-direct/cust5/ISDomain/properties:/cust/app/fxi-direct/cust5/FXServices/XML:/cust/app/fxi-direct/cust5/FXServices/properties:/cust/app/fxi-direct/cust5/FXServices/dbms/Data:/cust/app/fxi-direct/cust5/ISWeb/dbms/Data:/cust/app/fxi-direct/cust5/islib/certs:/cust/app/fxi-direct/cust5/ISClientWeb/XML:/cust/app/fxi-direct/cust5/WLClientWeb/XML:/cust/app/fxi-direct/cust5/ISDomain/properties
    j.lib.path : /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/jrockit:/cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64:/cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/../lib/amd64:/cust/opt/oraclient/lib:
    JAVA_HOME : /cust/opt/jdk15
    JAVAOPTIONS: <not set>
    LD_LIBRARY_PATH: /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/jrockit:/cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64:/cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/../lib/amd64:/cust/opt/oraclient/lib:
    LD_ASSUME_KERNEL: <not set>
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0x49250520 / OS context: 0x492505e0):
    rax = 00000000420fbb80 rcx = 00000000420fbb80
    rdx = 0000000000000001 rbx = 000000003acb1310
    rsp = 0000000049250a20 rbp = 00000000236f0bc8
    rsi = 00000000236f0bc8 rdi = 00000000236f0bc8
    r8 = f080000000443845 r9 = 0000002addaa6c68
    r10 = 0000000023452c98 r11 = 0000002addaa6c50
    r12 = 000000003aa569c1 r13 = 0000000044d70360
    r14 = 00000000000005dd r15 = 00000000046de179
    cs = 00000000000095a8 fs = 0000000000000000
    gs = 0000000000000000
    rip = 0000002a969a43d1 flags = 0000000000000282
    Stack:
    (* marks the word pointed to by the stack pointer)
    0000000049250a20: 0000000044d70360* 0000002a95ef17b9 000000003acd8c18 0000002a963d6d7f
    0000000049250a40: 000000003acb1310 0000002a96569e13 000000000fa05550 0000000033ddbca8
    0000000049250a60: 00000000046de179 0000002a964ee113 000000002344e621 00000000234888f8
    0000000049250a80: 00000000236f0bc8 0000002a9656fe52 000000000fa05550 00000000236f0bc8
    0000000049250aa0: 00000000234888f8 0000002a96894cb2 000000000d984580 00000000234888f8
    0000000049250ac0: 000000003aa16a70 000000000fa055d0 000000000fa05550 0000000023449fe0
    Code:
    (* marks the word pointed to by the instruction pointer)
    0000002a969a4370: 480024048348f020 048bc35b5d28c483 25e8442a8ea8ba26 247c894890fffdc0
    0000002a969a4390: 000000012404c718 0030baffffffffbf e8442a8ea8b80000 48f38948ff550cc4
    0000002a969a43b0: ffff30e918247c8b ccccccccccccccff 26248b4408ec8348 74c0854d24048b4d
    0000002a969a43d0: 74f68518708b4917* fa814126148b4412 03eb07750056dcb8 26048bc359f63148
    0000002a969a43f0: bfb6e80056dcb8ba cccccccccc90fffd 0001a8ec81485553 148b4c64fd894800
    0000002a969a4410: 478b44000000d825 250c8b107e8b4408 250c8b44005ae038 b8253c8b005afcf8
    Loaded modules:
    (* denotes the module causing the exception)
    0000000000400000-000000000041190b /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/bin/java
    0000003e1f200000-0000003e1f20f339 /lib64/tls/libpthread.so.0
    0000003e1ec00000-0000003e1ec8451b /lib64/tls/libm.so.6
    0000003401a00000-0000003401a01c73 /lib64/libdl.so.2
    0000003e1e900000-0000003e1ea2a079 /lib64/tls/libc.so.6
    0000003e1e700000-0000003e1e7142ef /lib64/ld-linux-x86-64.so.2
    0000002a95577000-0000002a957e0c6f /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/jrockit/libjvm.so
    0000002a95a2f000-0000002a95a38f03 /lib64/libnss_files.so.2
    0000002a95c99000-0000002a95cbd473 /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libjava.so
    0000002a95dc3000-0000002a95dcf627 /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libverify.so
    0000003e23200000-0000003e23213013 /lib64/libnsl.so.1
    0000002ad5f22000-0000002ad5f2ae3f /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/native_threads/libhpi.so
    0000002ad92f9000-0000002ad9307ef3 /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libzip.so
    0000002ad9600000-0000002ad960516b /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libmanagement.so
    0000002ad9837000-0000002ad9848fbf /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libnet.so
    0000002adac38000-0000002adac3b883 /lib64/libnss_dns.so.2
    0000003e1f400000-0000003e1f410d3b /lib64/libresolv.so.2
    0000002adaf91000-0000002adaf9196b /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/librmi.so
    0000002addd00000-0000002addd06077 /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libnio.so
    "http-0.0.0.0-8080-2" id=216 idx=0x1aa tid=17433 lastJavaFrame=(nil)
    Stack 0: start=0x49210000, end=0x49254000, guards=0x49215000 (ok), forbidden=0x49213000
    Thread Stack Trace:
    -- Java stack --
    at jrockit/vm/Reflect$IClass.get(Ljava/lang/Object;)Ljava/lang/Class;(Unknown Source)[optimized]
    at java/lang/Object.getClass()Ljava/lang/Class;(Unknown Source)
    at TOPLink/Public/PublicInterface/Session.getDescriptor(Session.java:998)
    at TOPLink/Public/PublicInterface/UnitOfWork.getOriginalVersionOfObject(UnitOfWork.java:1145)
    at TOPLink/Private/Sessions/MergeManager.getTargetVersionOfSourceObject(MergeManager.java:112)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesInCollection(MergeManager.java:242)
    at TOPLink/Public/Mappings/CollectionMapping.mergeChangesIntoObject(CollectionMapping.java:452)
    at TOPLink/Private/Descriptors/ObjectBuilder.mergeChangesIntoObject(ObjectBuilder.java:1150)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesOfWorkingCopyIntoOriginal(MergeManager.java:368)
    at TOPLink/Private/Sessions/MergeManager.mergeChanges(MergeManager.java:151)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesInCollection(MergeManager.java:263)
    at TOPLink/Public/Mappings/CollectionMapping.mergeChangesIntoObject(CollectionMapping.java:452)
    at TOPLink/Private/Descriptors/ObjectBuilder.mergeChangesIntoObject(ObjectBuilder.java:1150)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesOfWorkingCopyIntoOriginal(MergeManager.java:368)
    at TOPLink/Private/Sessions/MergeManager.mergeChanges(MergeManager.java:151)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesInCollection(MergeManager.java:263)
    at TOPLink/Public/Mappings/CollectionMapping.mergeChangesIntoObject(CollectionMapping.java:452)
    at TOPLink/Private/Descriptors/ObjectBuilder.mergeChangesIntoObject(ObjectBuilder.java:1150)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesOfWorkingCopyIntoOriginal(MergeManager.java:368)
    at TOPLink/Private/Sessions/MergeManager.mergeChanges(MergeManager.java:151)
    at TOPLink/Public/PublicInterface/UnitOfWork.mergeChangesIntoParent(UnitOfWork.java:1644)
    at TOPLink/Public/PublicInterface/UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:598)
    at TOPLink/Public/PublicInterface/UnitOfWork.commit(UnitOfWork.java:453)
    at com/cust/session/IdcTransactionC.commit(IdcTransactionC.java:202)
    at com/cust/transaction/TransactionCalculatorC.commitTransaction(TransactionCalculatorC.java:156)
    at com/cust/transaction/RequiredTransactionCalculatorC.endTransaction(RequiredTransactionCalculatorC.java:78)
    at com/cust/rule/WorkflowActionC.endTransaction(WorkflowActionC.java:720)
    at com/cust/rule/WorkflowActionC.execute(WorkflowActionC.java:450)
    at com/cust/rule/RuleExecutionMonitor.executeAction(RuleExecutionMonitor.java:483)
    at com/cust/rule/RuleC.execute(RuleC.java:554)
    at com/cust/rule/RuleExecutionMonitor.executeRule(RuleExecutionMonitor.java:592)
    at com/cust/rule/RuleSetC.executeRule(RuleSetC.java:523)
    at com/cust/rule/RuleSetC.doExecute(RuleSetC.java:489)
    at com/cust/rule/RuleSetC.execute(RuleSetC.java:447)
    at com/cust/rule/RuleExecutionMonitor.executeRuleSet(RuleExecutionMonitor.java:438)
    at com/cust/rule/RuleSetActionC.execute(RuleSetActionC.java:187)
    at com/cust/rule/RuleExecutionMonitor.executeAction(RuleExecutionMonitor.java:483)
    at com/cust/rule/WorkflowActionC.doExecute(WorkflowActionC.java:550)
    at com/cust/rule/WorkflowActionC.execute(WorkflowActionC.java:406)
    at com/cust/rule/RuleExecutionMonitor.executeAction(RuleExecutionMonitor.java:483)
    at com/cust/rule/RuleC.execute(RuleC.java:554)
    at com/cust/jsp/JSPRuleC.execute(JSPRuleC.java:163)
    at com/cust/rule/RuleExecutionMonitor.executeRule(RuleExecutionMonitor.java:592)
    at com/cust/rule/RuleSetC.executeRule(RuleSetC.java:523)
    at com/cust/rule/RuleSetC.doExecute(RuleSetC.java:489)
    at com/cust/rule/RuleSetC.execute(RuleSetC.java:447)
    at com/cust/rule/RuleExecutionMonitor.executeRuleSet(RuleExecutionMonitor.java:438)
    at com/cust/rule/ejb/RuleEngineC.execute(RuleEngineC.java:47)
    at sun/reflect/GeneratedMethodAccessor355.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
    at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
    at org/jboss/invocation/Invocation.performCall(Invocation.java:359)[inlined]
    at org/jboss/ejb/StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:237)[optimized]
    at org/jboss/resource/connectionmanager/CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)[optimized]
    at org/jboss/ejb/plugins/AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)[inlined]
    at org/jboss/ejb/plugins/AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:173)[inlined]
    at org/jboss/ejb/plugins/TxInterceptorBMT.invoke(TxInterceptorBMT.java:77)[optimized]
    at org/jboss/ejb/plugins/StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:169)[optimized]
    at org/jboss/ejb/plugins/SecurityInterceptor.invoke(SecurityInterceptor.java:168)[optimized]
    at org/jboss/ejb/plugins/LogInterceptor.invoke(LogInterceptor.java:205)[optimized]
    at org/jboss/ejb/plugins/ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:136)[optimized]
    at org/jboss/ejb/SessionContainer.internalInvoke(SessionContainer.java:648)
    at org/jboss/ejb/Container.invoke(Container.java:954)[optimized]
    at sun/reflect/GeneratedMethodAccessor88.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
    at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
    at org/jboss/mx/interceptor/ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    at org/jboss/mx/server/Invocation.dispatch(Invocation.java:94)[inlined]
    at org/jboss/mx/server/Invocation.invoke(Invocation.java:86)[inlined]
    at org/jboss/mx/server/AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)[optimized]
    at org/jboss/mx/server/MBeanServerImpl.invoke(MBeanServerImpl.java:659)[optimized]
    at org/jboss/invocation/local/LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)[inlined]
    at org/jboss/invocation/local/LocalInvoker.invoke(LocalInvoker.java:118)[optimized]
    at org/jboss/invocation/InvokerInterceptor.invokeLocal(InvokerInterceptor.java:209)
    at org/jboss/invocation/InvokerInterceptor.invoke(InvokerInterceptor.java:195)
    at org/jboss/proxy/TransactionInterceptor.invoke(TransactionInterceptor.java:61)
    at org/jboss/proxy/SecurityInterceptor.invoke(SecurityInterceptor.java:70)
    at org/jboss/proxy/ejb/StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:112)
    at org/jboss/proxy/ClientContainer.invoke(ClientContainer.java:100)
    at $Proxy63.execute(Lcom/cust/rule/RuleSet;Ljava/lang/Object;)V(Unknown Source)
    at com/cust/jsp/framework/JSPWorkflowAction.run(JSPWorkflowAction.java:266)
    at com/cust/jsp/framework/JSPWorkflowAction.perform(JSPWorkflowAction.java:230)
    at org/apache/struts/action/ActionServlet.processActionPerform(ActionServlet.java:1720)
    at org/apache/struts/action/ActionServlet.process(ActionServlet.java:1519)
    at com/cust/jsp/framework/IdcActionServlet.process(IdcActionServlet.java:201)
    at org/apache/struts/action/ActionServlet.doPost(ActionServlet.java:505)
    at javax/servlet/http/HttpServlet.service(HttpServlet.java:717)
    at javax/servlet/http/HttpServlet.service(HttpServlet.java:810)
    at org/apache/catalina/core/ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org/apache/catalina/core/ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org/jboss/web/tomcat/filters/ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org/apache/catalina/core/ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org/apache/catalina/core/ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org/apache/catalina/core/StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org/apache/catalina/core/StandardContextValve.invoke(StandardContextValve.java:178)
    at org/jboss/web/tomcat/security/SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
    at org/apache/catalina/authenticator/AuthenticatorBase.invoke(AuthenticatorBase.java:525)
    at org/jboss/web/tomcat/security/JaccContextValve.invoke(JaccContextValve.java:74)
    at org/apache/catalina/core/StandardHostValve.invoke(StandardHostValve.java:126)
    at org/apache/catalina/valves/ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org/apache/catalina/core/StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org/apache/catalina/connector/CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org/apache/coyote/http11/Http11Processor.process(Http11Processor.java:870)
    at org/apache/coyote/http11/Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org/apache/tomcat/util/net/PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org/apache/tomcat/util/net/MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    at java/lang/Thread.run(Thread.java:595)
    at jrockit/vm/RNI.c2java(JJJJ)V(Native Method)
    -- end of trace
    Additional information is available in:
    /cust/app/fxi-direct-2.4-20071031-113036/servers/JBoss/bin/jrockit.16992.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Extended, platform specific info:
    libc release: 2.3.4-stable
    Elf headers:
    libc ehdrs: EI: 7f454c46020101000000000000000000 ET: 3 EM: 62 V: 1 ENTRY: 0000003e1e91c560 PHOFF: 0000000000000040 SHOFF: 000000000013d5a8 EF: 0x0 HS: 64 PS: 56 PHN; 10 SS: 64 SHN: 69 STIDX: 66
    libpthread ehdrs: EI: 7f454c46020101000000000000000000 ET: 3 EM: 62 V: 1 ENTRY: 0000003e1f205620 PHOFF: 0000000000000040 SHOFF: 0000000000012980 EF: 0x0 HS: 64 PS: 56 PHN; 9 SS: 64 SHN: 38 STIDX: 35
    libjvm ehdrs: EI: 7f454c46020101000000000000000000 ET: 3 EM: 62 V: 1 ENTRY: 000000000003aab0 PHOFF: 0000000000000040 SHOFF: 0000000000376c80 EF: 0x0 HS: 64 PS: 56 PHN; 3 SS: 64 SHN: 22 STIDX: 19
    ===== END DUMP ===============================================================

    We are trying to install VTune on our AMD Opteron development system. We are running SUSE 10 64-bit OS with SP1. The information contained in the included data files seems to describe our environment quite well. We have eclipse version 3.3.0 already installed, but are trying to allow VTune to install an earlier version of eclipse (3.2.1). When we try to launch VTune, once we have inserted the paths to our ( or to the sample ) application and to the working directory, VTune blows up apparently because of "Error Message: Illegal memory access. [54]", producing the following message block, which is then followed with the contents of the jrockit.31412.dump file it created in the /root/workspace/ directory. If we try to use the "Browse" feature from the working directory option box, we get the same error. Looking at the BEA forum there seems to be a few references to a similar error which required some patch to fix (CR263825). We have not been successful in trying to find that patch.
    Any assistance will be greatly appreciated.
    Steve ::: [email protected]
    Error text displayed by vtlec:
    JVM terminated. Exit code=1
    /opt/intel/eclipsepackage/3.2.1_0/jrockit-R27.2.0-jre1.5.0_10/bin/java
    -Dosgi.splashLocation=/opt/intel/eclipsepackage/3.2.1_0/eclipse/plugins/com.intel.sdp.primary_2.0.3/splash.bmp
    -Dosgi.sharedConfiguration.area=/opt/intel/vtune/bin/../shared/eclipse/configuration
    -jar /opt/intel/eclipsepackage/3.2.1_0/eclipse/startup.jar
    -os linux
    -ws gtk
    -arch x86
    -launcher /opt/intel/eclipsepackage/3.2.1_0/eclipse/eclipse
    -name Eclipse
    -showsplash 600
    -exitdata 60009
    -product com.intel.sdp.primary.product
    -perspective com.intel.vtune.shell.tuningPerspective
    -vm /opt/intel/eclipsepackage/3.2.1_0/jrockit-R27.2.0-jre1.5.0_10/bin/java
    -vmargs
    -Dosgi.splashLocation=/opt/intel/eclipsepackage/3.2.1_0/eclipse/plugins/com.intel.sdp.primary_2.0.3/splash.bmp
    -Dosgi.sharedConfiguration.area=/opt/intel/vtune/bin/../shared/eclipse/configuration
    -jar /opt/intel/eclipsepackage/3.2.1_0/eclipse/startup.jar
    Text from /root/workspace/jrockit.31412.dump:
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:03:02 on Mon Jun 23 14:24:12 2008
    Additional information is available in:
    /root/workspace/jrockit.31412.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=11, si_code=2 si_addr=0x6c
    Version : BEA JRockit(R) R27.2.0-131-78843-1.5.0_10-20070320-1511-linux-ia32
    GC Mode : Garbage collection optimized for throughput
    GC Strategy : Generational Parallel Mark & Sweep
    : Current OC phase is: not running. YC is not running.
    : GC strategy for GC 0 was singleconcon
    : GC strategy for GC 1 was genparpar
    : GC strategy for GC 2 was genparpar
    : GC strategy for GC 3 was genparpar
    : mmHeap->data = 0x8100000, mmHeap->top = 0xc100000
    : The nurserylist starts at 0x8526bf8 and ends at 0xa51ed68
    : mmStartCompaction = 0xb900000, mmEndCompaction = 0xbd00000
    : References are 32-bit.
    CPU : AMD Opteron/Athlon64 SSE SSE2 SSE3 EM64T
    Number CPUs : 4
    Tot Phys Mem : 8380477440 (7992 MB)
    OS version : SUSE Linux Enterprise Server 10 (x86_64)
    VERSION = 10
    PATCHLEVEL = 1
    Linux version 2.6.16.46-0.12-smp (geeko@buildhost) (gcc version 4.1.2 20070115 (prerelease) (SUSE Linux)) #1 SMP Thu May 17 14:00:09 UTC 2007 (x86_64)
    Thread System: NPTL
    State : JVM is running
    Command Line : -Dosgi.splashLocation=/opt/intel/eclipsepackage/3.2.1/eclipse/plugins/com.intel.sdp.primary_2.0.3/splash.bmp -Dosgi.sharedConfiguration.area=/opt/intel/vtune/bin/../shared/eclipse/configuration -Dsun.java.launcher=SUN_STANDARD /opt/intel/eclipsepackage/3.2.1/eclipse/startup.jar -os linux -ws gtk -arch x86 -launcher /opt/intel/eclipsepackage/3.2.1/eclipse/eclipse -name Eclipse -showsplash 600 -exitdata 2a0010 -product com.intel.sdp.primary.product -perspective com.intel.vtune.shell.tuningPerspective -vm /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/bin/java -vmargs -Dosgi.splashLocation=/opt/intel/eclipsepackage/3.2.1/eclipse/plugins/com.intel.sdp.primary_2.0.3/splash.bmp -Dosgi.sharedConfiguration.area=/opt/intel/vtune/bin/../shared/eclipse/configuration -jar /opt/intel/eclipsepackage/3.2.1/eclipse/startup.jar
    java.home : /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10
    j.class.path : /opt/intel/eclipsepackage/3.2.1/eclipse/startup.jar
    j.lib.path : /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/jrockit:/opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386:/opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/../lib/i386:/opt/intel/eclipsepackage/3.2.1/eclipse:/opt/intel/vtune/analyzer/bin:/opt/intel/vtune/shared/bin:/opt/sag/gcc-3.4/libem64t:/opt/sag/gcc-3.3/lib32:/opt/sag/gcc-3.3/lib32:/opt/sag/exx/v721/lib:/usr/lib
    JAVA_HOME : <not set>
    JAVAOPTIONS: <not set>
    LD_LIBRARY_PATH: /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/jrockit:/opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386:/opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/../lib/i386:/opt/intel/eclipsepackage/3.2.1/eclipse:/opt/intel/vtune/analyzer/bin:/opt/intel/vtune/shared/bin:/opt/sag/gcc-3.4/libem64t:/opt/sag/gcc-3.3/lib32:/opt/sag/gcc-3.3/lib32:/opt/sag/exx/v721/lib:/usr/lib
    LD_ASSUME_KERNEL: <not set>
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0xff92d610 / OS context: 0xff92d70c):
    eax = f06a48c8 ecx = f7eb0150 edx = f7eb0150 ebx = f6afb0a8
    esp = ff92d9f8 ebp = ff92da30 esi = 00000000 edi = f6d76698
    es = 0000002b cs = f6710023 ss = f5e3002b ds = 0000002b
    fs = 00000003 gs = 00000063
    eip = f68ded93 eflags = 00200286
    Stack:
    (* marks the word pointed to by the stack pointer)
    ff92d9f8: f6d76698* f6a61fbe f6d75528 00000001 f6a61fbe f59b3d68
    ff92da10: ff92da30 f68f55b4 f6a61fbe f6d75528 f59b3d68 f6afb0a8
    ff92da28: f59b3d68 f599f660 ff92da50 f68e021b f6a61010 f599f660
    ff92da40: f5d9cd90 f6afb0a8 f599f6e0 f5d9cd90 ff92dae0 f68eab88
    Code:
    (* marks the word pointed to by the instruction pointer)
    f68ded60: 3489f045 24448924 16838d14 89fff66f 4489e845 f5e81024
    f68ded78: 8900072c ec458bc7 89243c89 8b082444 4489e845 2de80424
    f68ded90: 8b000731* c0856c46 7c890c74 04890424 cdbae824 3c890015
    f68deda8: edb2e824 3c89fffd 65bae824 5d8b0015 f8758bf4 89fc7d8b
    Loaded modules:
    (* denotes the module causing the exception)
    08048000-08056fd3 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/bin/java
    ffffe000-ffffe7af /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/bin/java
    f7edd000-f7eed043 /lib/libpthread.so.0
    f7eb8000-f7eda62f /lib/libm.so.6
    f7eb4000-f7eb5c3f /lib/libdl.so.2
    f7d91000-f7eab7a9 /lib/libc.so.6
    f7f10000-f7f29eb3 /lib/ld-linux.so.2
    f7a77000-f7d16207 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/jrockit/libjvm.so
    f7a51000-f7a576a4 /lib/librt.so.1
    f7f06000-f7f0bc77 /lib/libnss_compat.so.2
    f7a3c000-f7a4c5a7 /lib/libnsl.so.1
    f7efc000-f7f039bf /lib/libnss_nis.so.2
    f7ef2000-f7ef9b6b /lib/libnss_files.so.2
    f7a63000-f7a6d7db /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libverify.so
    f79bb000-f79db217 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libjava.so
    f7854000-f7859f13 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/native_threads/libhpi.so
    f7640000-f764e4c4 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libzip.so
    f7413000-f74240a3 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libnet.so
    f740b000-f74111e7 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libnio.so
    f6c29000-f6c72e1b /opt/intel/eclipsepackage/3.2.1/eclipse/configuration/org.eclipse.osgi/bundles/29/1/.cp/libswt-pi-gtk-3235.so
    f680c000-f6af4723 */opt/gnome/lib/libgtk-x11-2.0.so.0
    f6c08000-f6c0adff /opt/gnome/lib/libgthread-2.0.so.0
    f6c03000-f6c06dab /usr/X11R6/lib/libXtst.so.6
    f67f6000-f680aef7 /opt/gnome/lib/libgdk_pixbuf-2.0.so.0
    f6774000-f67f2c7b /opt/gnome/lib/libgdk-x11-2.0.so.0
    f676d000-f67721cb /opt/gnome/lib/libpangocairo-1.0.so.0
    f6736000-f676a697 /opt/gnome/lib/libpango-1.0.so.0
    f671d000-f67330b7 /opt/gnome/lib/libatk-1.0.so.0
    f66e4000-f671a893 /opt/gnome/lib/libgobject-2.0.so.0
    f6c00000-f6c01f33 /opt/gnome/lib/libgmodule-2.0.so.0
    f665e000-f66e2217 /opt/gnome/lib/libglib-2.0.so.0
    f660b000-f665c23f /usr/lib/libcairo.so.2
    f659e000-f66077fb /usr/lib/libfreetype.so.6
    f6565000-f65981c3 /usr/lib/libfontconfig.so.1
    f655d000-f6563b57 /usr/X11R6/lib/libXrender.so.1
    f6466000-f6559c7b /usr/X11R6/lib/libX11.so.6
    f6458000-f646443f /usr/X11R6/lib/libXext.so.6
    f6419000-f6456a07 /usr/lib/libpng12.so.0
    f6407000-f64179c3 /usr/lib/libz.so.1
    f63e5000-f64058e3 /usr/lib/libglitz.so.1
    f63e2000-f63e3ff3 /usr/X11R6/lib/libXrandr.so.2
    f63da000-f63e03ab /usr/X11R6/lib/libXi.so.6
    f63d7000-f63d838f /usr/X11R6/lib/libXinerama.so.1
    f63ce000-f63d5923 /usr/X11R6/lib/libXcursor.so.1
    f63c9000-f63cc103 /usr/X11R6/lib/libXfixes.so.3
    f63a4000-f63c71d3 /opt/gnome/lib/libpangoft2-1.0.so.0
    f6385000-f63a196f /usr/lib/libexpat.so.1
    f7a5a000-f7a5a7a3 /usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
    f6c26000-f6c26fd7 /usr/lib/gconv/ISO8859-1.so
    f635c000-f6381073 /opt/intel/eclipsepackage/3.2.1/eclipse/configuration/org.eclipse.osgi/bundles/29/1/.cp/libswt-gtk-3235.so
    f6c1b000-f6c24a03 /opt/gnome/lib/gtk-2.0/2.4.0/engines/liblighthouseblue.so
    f6065000-f6066167 /opt/gnome/lib/pango/1.4.0/modules/pango-basic-fc.so
    f5bdf000-f5be420f /opt/intel/eclipsepackage/3.2.1/eclipse/configuration/org.eclipse.osgi/bundles/29/1/.cp/libswt-atk-gtk-3235.so
    f5bd5000-f5bdde87 /opt/intel/eclipsepackage/3.2.1/eclipse/configuration/org.eclipse.osgi/bundles/29/1/.cp/libswt-cairo-gtk-3235.so
    f5403000-f54065e3 /opt/intel/vtune/shared/bin/libEcGUIClientHandler.so
    f5252000-f52cf38f /opt/intel/vtune/shared/bin/libEcGUIClient.so
    f50ad000-f524fe07 /opt/sag/gcc-3.3/lib32/libimf.so
    f5931000-f5931577 /opt/sag/gcc-3.3/lib32/libcxaguard.so.5
    f5929000-f592ff1f /opt/sag/gcc-3.3/lib32/libgcc_s.so.1
    f4ff5000-f5092393 /opt/sag/gcc-3.3/lib32/libstdc++.so.5
    f4e5c000-f4fc8343 /opt/sag/exx/v721/lib/libole32.so
    f4d9d000-f4e48dab /opt/sag/exx/v721/lib/librpcrt4.so
    f5907000-f5921733 /opt/sag/exx/v721/lib/libntrtl.so
    f4d0b000-f4d87183 /opt/sag/exx/v721/lib/libmutant.so
    f4d03000-f4d08b27 /opt/sag/exx/v721/lib/libcoolmisc.so
    f4c1f000-f4cef8af /opt/sag/exx/v721/lib/liboleaut32.so
    f4b8c000-f4c15db3 /opt/intel/vtune/analyzer/bin/libcomfreeremoteconnector.so
    f4b60000-f4b81023 /opt/intel/vtune/shared/bin/libVTUtil.so
    f5902000-f5904ec3 /opt/sag/exx/v721/lib/libcoolcrypto.so
    f470c000-f4a109ab /opt/intel/vtune/shared/bin/libxerces-c.so.23
    f46d8000-f4705547 /opt/intel/vtune/shared/bin/libRemoteManager.so
    f46d1000-f46d5c03 /opt/sag/exx/v721/lib/libbasecrypt.so
    f46ba000-f46cacff /opt/intel/vtune/shared/bin/libVTRegLoc.so
    f3db9000-f3e5109f /opt/intel/vtune/shared/bin/libShell.so
    f3daf000-f3db6ed7 /opt/intel/vtune/shared/bin/libShellRes.so
    f3973000-f399ceaf /opt/intel/vtune/shared/bin/libReports.so
    f396c000-f3970db7 /opt/intel/vtune/shared/bin/libReportsRes.so
    f3949000-f39614eb /opt/intel/vtune/shared/bin/libComInfo.so
    f3901000-f3932ecf /opt/intel/vtune/shared/bin/libProductInfo.so
    f38fb000-f38fe537 /opt/intel/vtune/shared/bin/libProductInfoRes.so
    f37ee000-f38a93e3 /opt/intel/vtune/shared/bin/libWorkspaceMgr.so
    f37e7000-f37eb2b7 /opt/intel/vtune/shared/bin/libWorkspaceMgrRes.so
    f3782000-f37ca39b /opt/intel/vtune/shared/bin/libCollection.so
    f377c000-f377f5b7 /opt/intel/vtune/shared/bin/libCollectionRes.so
    f35ef000-f36ff5b3 /opt/intel/vtune/shared/bin/libActivity.so
    f35e5000-f35ec3f7 /opt/intel/vtune/shared/bin/libActivityRes.so
    f35a4000-f35ce48b /opt/intel/vtune/shared/bin/libFileDialog.so
    f3572000-f359528b /opt/intel/vtune/shared/bin/libFileDialogEc.so
    f3529000-f355ae8f /opt/intel/vtune/shared/bin/libFileMgr.so
    f3523000-f3526cb7 /opt/intel/vtune/shared/bin/libFileMgrRes.so
    f3468000-f34e9563 /opt/intel/vtune/shared/bin/libTuningBrowser.so
    f3460000-f3465217 /opt/intel/vtune/shared/bin/libTuningBrowserRes.so
    f33c4000-f342a0d3 /opt/intel/vtune/shared/bin/libWorkspaceUI.so
    f33bc000-f33c1277 /opt/intel/vtune/shared/bin/libWorkspaceUIRes.so
    f3350000-f339af3f /opt/intel/vtune/analyzer/bin/libCGAddin.so
    f32f1000-f333477b /opt/intel/vtune/analyzer/bin/libAnPropContainers.so
    f3284000-f32cef7f /opt/intel/vtune/shared/bin/libEnvInfo.so
    f327f000-f3282a17 /opt/intel/vtune/shared/bin/libcpuinfo2.so.1
    f3278000-f327c48f /opt/intel/vtune/shared/bin/libcpuinfoxsc.so.1
    f3270000-f3275a57 /opt/intel/vtune/shared/bin/libEnvInfoRes.so
    f320c000-f3253123 /opt/intel/vtune/analyzer/bin/libCGCons4VT.so
    f3046000-f317a44b /opt/intel/vtune/shared/bin/libidvcbase.so
    f2f5d000-f30026fb /opt/intel/vtune/analyzer/bin/libCGConsCore.so
    f2f56000-f2f5adaf /opt/intel/vtune/analyzer/bin/libCGPropStorage.so
    f2f1d000-f2f45ef3 /opt/intel/vtune/analyzer/bin/libCGDataModelVTDBC.so
    f2e6b000-f2eeb0a7 /opt/intel/vtune/shared/bin/libidvcfrw.so
    f2e51000-f2e6350f /opt/intel/vtune/shared/bin/libidvcpilot.so
    f2cc4000-f2dde9ff /opt/intel/vtune/shared/bin/libidvgrid.so
    f2cb8000-f2cc03af /opt/intel/vtune/analyzer/bin/libVTDBRuntime.so
    f2ca8000-f2cb3377 /opt/intel/vtune/analyzer/bin/libCGPruner.so
    f2c85000-f2c9de0f /opt/intel/vtune/analyzer/bin/libVTDBC.so
    f2c24000-f2c683d3 /opt/intel/vtune/analyzer/bin/libCGDP_VTDBC.so
    f2be4000-f2c198bf /opt/intel/vtune/shared/bin/libigvlayout.so
    f2b36000-f2ba6e67 /opt/intel/vtune/shared/bin/libigvviewer.so
    f2b1f000-f2b2f457 /opt/intel/vtune/shared/bin/libigvgraph.so
    f2b15000-f2b1b46b /opt/intel/vtune/shared/bin/libigvdatamanager.so
    f2ab1000-f2af9b83 /opt/intel/vtune/analyzer/bin/libvtsdb.so
    f2a3e000-f2a91c8b /opt/intel/vtune/analyzer/bin/libCTCG.so
    f2a34000-f2a3a8c3 /opt/intel/vtune/shared/bin/libdbmanager.so
    f29f9000-f2a2285b /opt/intel/vtune/analyzer/bin/libSymbolProvider_VTDBC.so
    f289f000-f29940f3 /opt/intel/vtune/shared/bin/libismImpl_2.so
    f285d000-f28964d7 /opt/intel/vtune/shared/bin/libcommon_2.so
    f2700000-f2713c9f /opt/intel/vtune/shared/bin/libsupport_2.so
    f26ea000-f26f88c7 /opt/intel/vtune/shared/bin/libdtlu_trace_assert.so
    f2564000-f259f857 /opt/intel/vtune/shared/bin/libvtfamgr.so
    f2558000-f256024f /opt/intel/vtune/shared/bin/libVTAddr_2.so
    f24fe000-f253bdcb /opt/intel/vtune/shared/bin/libSymVSrvr.so
    f24d2000-f24f01f7 /opt/intel/vtune/shared/bin/libDynamicLoading_2.so
    f244e000-f24af253 /opt/intel/vtune/analyzer/bin/libCGImpExp.so
    f243a000-f24479bb /opt/intel/vtune/analyzer/bin/libVTSDBUtil.so
    f23a5000-f240fa03 /opt/intel/vtune/analyzer/bin/libCGPackNGo.so
    f2371000-f23951f7 /opt/intel/vtune/analyzer/bin/libAnalyzerWizardsAddin.so
    f22bc000-f234d353 /opt/intel/vtune/analyzer/bin/libAnProdInfo.so
    f22b5000-f22b94f7 /opt/intel/vtune/analyzer/bin/libAnProdInfoRes.so
    f227d000-f22a3f17 /opt/intel/vtune/analyzer/bin/libEcAnalyzerUtils.so
    f2218000-f225ffe7 /opt/intel/vtune/analyzer/bin/libSVConsumerEc.so
    f2203000-f22120db /opt/intel/vtune/analyzer/bin/libsv_vtune_u.so
    f21de000-f21f8a3f /opt/intel/vtune/analyzer/bin/libsvpropstorage_u.so
    f2106000-f21a3e1f /opt/intel/vtune/analyzer/bin/libsvcore_u.so
    f20d2000-f20f635f /opt/intel/vtune/analyzer/bin/libsvcontrol_u.so
    f20bc000-f20cb59f /opt/intel/vtune/analyzer/bin/libVtGridCtlLite_u.so
    f1ef5000-f202a49b /opt/intel/vtune/shared/bin/libidvcbase_u.so
    f1dac000-f1de39b7 /opt/intel/vtune/shared/bin/libdtlu_file.so
    f1d18000-f1d898bb /opt/intel/vtune/analyzer/bin/libsvdp.so
    f1d07000-f1d1254f /opt/intel/vtune/analyzer/bin/libsv_pi.so
    f1b77000-f1c9382f /opt/intel/vtune/shared/bin/libidvgrid_u.so
    f1b25000-f1b5d19f /opt/intel/vtune/shared/bin/libidvtextviewer_u.so
    f1b05000-f1b1b62b /opt/intel/vtune/analyzer/bin/liblipsdp.so
    f1ac8000-f1af32d7 /opt/intel/vtune/analyzer/bin/libsv_dedp.so
    f1ab5000-f1ac2207 /opt/intel/vtune/analyzer/bin/libsv_do.so
    f1a9f000-f1aaec2f /opt/intel/vtune/analyzer/bin/libsv_mh.so
    f1844000-f187993f /opt/intel/vtune/analyzer/bin/liblips.so
    f182f000-f183d0d7 /opt/intel/vtune/analyzer/bin/libsv_ei.so
    f1828000-f182d4ff /opt/intel/vtune/analyzer/bin/libbemrl.so
    f1807000-f1810d2f /opt/intel/vtune/analyzer/bin/libemrlcore.so
    f178b000-f17a70f8 /opt/intel/vtune/analyzer/bin/libdecem.so
    f1777000-f1786693 /opt/intel/vtune/analyzer/bin/libdisem.so
    f175c000-f176de95 /opt/intel/vtune/analyzer/bin/libdasm.so
    f174e000-f175a2bf /opt/intel/vtune/analyzer/bin/libdisxsc.so
    f173f000-f174ba5f /opt/intel/vtune/analyzer/bin/libdecxsc.so
    f16e1000-f173dd4b /opt/intel/vtune/analyzer/bin/libdecoder.so
    f165b000-f16b9a23 /opt/intel/vtune/analyzer/bin/libSamplingConsumerEc.so
    f147a000-f15cd587 /opt/intel/vtune/analyzer/bin/libSamplingViewerCore.so
    f13c8000-f144825f /opt/intel/vtune/shared/bin/libidvcfrw_u.so
    f11e3000-f128eeb7 /opt/intel/vtune/shared/bin/libidvtimeline_u.so
    f1165000-f11c00ff /opt/intel/vtune/shared/bin/libidvchart_u.so
    f1122000-f1153a27 /opt/intel/vtune/shared/bin/libidvchartelements_u.so
    f0efb000-f107863b /opt/intel/vtune/analyzer/bin/libSPLMDEDataMgr.so
    f0e94000-f0edfd6f /opt/intel/vtune/analyzer/bin/libVTDBJoin.so
    f0e69000-f0e8719f /opt/intel/vtune/analyzer/bin/libSamplingPropContainersEc.so
    f0b8f000-f0c94caf /opt/intel/vtune/analyzer/bin/libModuleHandler.so
    f0abe000-f0b4b1e3 /opt/intel/vtune/shared/bin/libvtfilehandler.so
    f0e0b000-f0e4840f /opt/intel/vtune/analyzer/bin/libOptrepAddin.so
    f0aa7000-f0ab7d17 /opt/intel/vtune/analyzer/bin/libOptRepControl.so
    f0a8c000-f0a9fee3 /opt/intel/vtune/analyzer/bin/libOptReportParser.so
    f0e07000-f0e09167 /opt/intel/vtune/analyzer/bin/libOptRepEcClient.so
    f09d3000-f0a500bb /opt/intel/vtune/shared/bin/libidvcswt_u.so
    f0974000-f09b8657 /opt/intel/vtune/analyzer/bin/libRatiosEditor.so
    f0952000-f096bd0b /opt/intel/vtune/analyzer/bin/libEvents.so
    f08eb000-f093263f /opt/intel/vtune/shared/bin/libFileSearchAddIn.so
    f0881000-f08cc9af /opt/intel/vtune/shared/bin/libActivityEc.so
    f0831000-f086b4ef /opt/intel/vtune/analyzer/bin/libCGPreferencePagesEC.so
    f07fc000-f082144f /opt/intel/vtune/analyzer/bin/libSVPreferencePagesEC.so
    f0785000-f07daa3f /opt/intel/vtune/analyzer/bin/libSamplingPreferencesPagesEc.so
    f072d000-f076a80f /opt/intel/vtune/analyzer/bin/libVTMHPrefPagesEc.so
    f06e1000-f0715de7 /opt/intel/vtune/shared/bin/libFileSearchPrefPagesEc.so
    f05ab000-f05d0abf /opt/intel/vtune/shared/bin/libPropBag.so
    f054a000-f058faa7 /opt/intel/vtune/analyzer/bin/libSamplingWizardLogic.so
    f0518000-f053ba2f /opt/intel/vtune/analyzer/bin/libSamplingWizardEc.so
    f0e00000-f0e0588b /opt/gnome/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-xpm.so
    f0406000-f041669f /opt/gnome/lib/gtk-2.0/2.4.0/filesystems/libgnome-vfs.so
    f03d6000-f03e7eb7 /opt/gnome/lib/libgnome-2.so.0
    f0376000-f03d0b23 /opt/gnome/lib/libgnomevfs-2.so.0
    f031d000-f036ba33 /opt/gnome/lib/libbonobo-2.so.0
    f02ec000-f0319c9f /opt/gnome/lib/libgconf-2.so.4
    f02d9000-f02e9587 /opt/gnome/lib/libbonobo-activation.so.4
    f0289000-f02ceb37 /opt/gnome/lib/libORBit-2.so.0
    f0200000-f02844a7 /opt/gnome/lib/libgnomeui-2.so.0
    f01f8000-f01fe103 /usr/lib/libpopt.so.0
    f01ee000-f01f646b /usr/lib/libesd.so.0
    f01cb000-f01ea087 /usr/lib/libaudiofile.so.0
    f009b000-f01c0fcb /usr/lib/libxml2.so.2
    f0093000-f0099b43 /usr/lib/libhal-storage.so.1
    f008a000-f00917a7 /usr/lib/libhal.so.1
    f0071000-f008812b /usr/lib/libdbus-glib-1.so.2
    f0042000-f006f6a7 /usr/lib/libdbus-1.so.2
    f0005000-f003d7d7 /usr/lib/libssl.so.0.9.8
    efedd000-effec39f /usr/lib/libcrypto.so.0.9.8
    efed8000-efedb00b /usr/lib/libdns_sd.so
    efec5000-efed350b /lib/libresolv.so.2
    efec1000-efec3f1b /opt/gnome/lib/libORBitCosNaming-2.so.0
    efe64000-efebd48f /opt/gnome/lib/libbonoboui-2.so.0
    efe3a000-efe62747 /opt/gnome/lib/libgnomecanvas-2.so.0
    efe24000-efe381f3 /usr/lib/libart_lgpl_2.so.2
    efe19000-efe229ab /opt/gnome/lib/libgnome-keyring.so.0
    efdfa000-efe17a4b /usr/lib/libjpeg.so.62
    efdf1000-efdf80f7 /usr/X11R6/lib/libSM.so.6
    efdd9000-efded0ff /usr/X11R6/lib/libICE.so.6
    efd1c000-efdd31e7 /usr/lib/libasound.so.2
    efd18000-efd1aadb /lib/libresmgr.so.1
    "Main Thread" id=1 idx=0x4 tid=31412 lastJavaFrame=0xff92e214
    Stack 0: start=0xff734000, end=0xff934000, guards=0xff739000 (ok), forbidden=0xff737000
    Thread Stack Trace:
    at <unknown>(???.c)@0xf68ded93
    at <unknown>(???.c)@0xf68e021b
    at <unknown>(???.c)@0xf68eab88
    at <unknown>(???.c)@0xf66f247a
    at <unknown>(???.c)@0xf66f2fe9
    at <unknown>(???.c)@0xf66f30f0
    at <unknown>(???.c)@0xf68de358
    at <unknown>(???.c)@0xf68ec5ec
    at <unknown>(???.c)@0xf66f247a
    at <unknown>(???.c)@0xf66f2f3f
    at <unknown>(???.c)@0xf66f30f0
    at <unknown>(???.c)@0xf68dc178
    at <unknown>(???.c)@0xf66f247a
    at <unknown>(???.c)@0xf66f2fe9
    at <unknown>(???.c)@0xf66f30f0
    at <unknown>(???.c)@0xf68dbb8e
    at <unknown>(???.c)@0xf68dbc3c
    at <unknown>(???.c)@0xf6c71b4d
    -- Java stack --
    at org/eclipse/swt/internal/gtk/OS._gtk_file_chooser_dialog_new([BIIIIIII)I(Native Method)
        at org/eclipse/swt/internal/gtk/OS.gtk_file_chooser_dialog_new(OS.java:4400)
        at org/eclipse/swt/widgets/DirectoryDialog.openChooserDialog(DirectoryDialog.java:124)
        at org/eclipse/swt/widgets/DirectoryDialog.open(DirectoryDialog.java:116)
        at com/intel/vtune/shell/VTDirectoryDialog.open(VTDirectoryDialog.java:47)
        at com/intel/vtune/analyzer/wizards/sampling/FirstUseSamplingPage$4.widgetSelected(FirstUseSamplingPage.java:365)
        at org/eclipse/swt/widgets/TypedListener.handleEvent(TypedListener.java:90)
        at org/eclipse/swt/widgets/EventTable.sendEvent(EventTable.java:66)
        at org/eclipse/swt/widgets/Widget.sendEvent(Widget.java:1085)
        at org/eclipse/swt/widgets/Display.runDeferredEvents(Display.java:3166)
        at org/eclipse/swt/widgets/Display.readAndDispatch(Display.java:2842)
        at org/eclipse/jface/window/Window.runEventLoop(Window.java:820)
        at org/eclipse/jface/window/Window.open(Window.java:796)
        at org/eclipse/ui/actions/NewWizardAction.run(NewWizardAction.java:181)
        at com/intel/vtune/shell/NewActivity.run(NewActivity.java:79)
        at com/intel/vtune/shell/NewActivity.runWithEvent(NewActivity.java:73)
        at org/eclipse/ui/internal/PluginAction.runWithEvent(PluginAction.java:244)
        at org/eclipse/ui/internal/WWinPluginAction.runWithEvent(WWinPluginAction.java:229)
        at org/eclipse/jface/action/ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539)
        at org/eclipse/jface/action/ActionContributionItem.access$2(ActionContributionItem.java:488)
        at org/eclipse/jface/action/ActionContributionItem$6.handleEvent(ActionContributionItem.java:441)
        at org/eclipse/swt/widgets/EventTable.sendEvent(EventTable.java:66)
        at org/eclipse/swt/widgets/Widget.sendEvent(Widget.java:1085)
        at org/eclipse/swt/widgets/Display.runDeferredEvents(Display.java:3166)
        at org/eclipse/swt/widgets/Display.readAndDispatch(Display.java:2842)
        at org/eclipse/ui/internal/Workbench.runEventLoop(Workbench.java:1914)
        at org/eclipse/ui/internal/Workbench.runUI(Workbench.java:1878)
        at org/eclipse/ui/internal/Workbench.createAndRunWorkbench(Workbench.java:419)
        at org/eclipse/ui/PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at org/eclipse/ui/internal/ide/IDEApplication.run(IDEApplication.java:95)
        at org/eclipse/core/internal/runtime/PlatformActivator$1.run(PlatformActivator.java:78)
        at org/eclipse/core/runtime/internal/adaptor/EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
        at org/eclipse/core/runtime/internal/adaptor/EclipseAppLauncher.start(EclipseAppLauncher.java:68)
        at org/eclipse/core/runtime/adaptor/EclipseStarter.run(EclipseStarter.java:400)
        at org/eclipse/core/runtime/adaptor/EclipseStarter.run(EclipseStarter.java:177)
        at jrockit/vm/RNI.c2java(IIII)V(Native Method)
        at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:585)
        at org/eclipse/core/launcher/Main.invokeFramework(Main.java:336)
        at org/eclipse/core/launcher/Main.basicRun(Main.java:280)
        at org/eclipse/core/launcher/Main.run(Main.java:977)
        at org/eclipse/core/launcher/Main.main(Main.java:952)
        at jrockit/vm/RNI.c2java(IIII)V(Native Method)
        -- end of trace
    Additional information is available in:
      /root/workspace/jrockit.31412.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Extended, platform specific info:
    libc release: 2.4-development
    Elf headers:
    libc       ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 000159c0 PHOFF: 00000034 SHOFF: 00127058 EF: 0x0 HS: 52 PS: 32 PHN; 11 SS: 40 SHN: 67 STIDX: 64
    libpthread ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 00004b80 PHOFF: 00000034 SHOFF: 0001274c EF: 0x0 HS: 52 PS: 32 PHN; 10 SS: 40 SHN: 37 STIDX: 34
    libjvm     ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 00057470 PHOFF: 00000034 SHOFF: 002dfe00 EF: 0x0 HS: 52 PS: 32 PHN; 4 SS: 40 SHN: 19 STIDX: 16
    ===== END DUMP ===============================================================                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

  • Coldfusion 11 Running on IIS Server and Java CreateObject Error

    I am getting the error below when trying to create an object in CF 11 using cfscript. In the CF Admin Java VM settings are the default setting. I have placed xmlsec-1.5.8.jar file under \cfusion\lib and cfusion\wwwroot\WEB-INF\lib I have also restarted the CF service.
    java.lang.NoClassDefFoundError: Could not initialize class org.apache.xml.security.signature.XMLSignature
    sun.misc.Unsafe.ensureClassInitialized(Native Method) at sun.reflect.UnsafeFieldAccessorFactory.newFieldAccessor(UnsafeFieldAccessorFactory.java:4 3) at sun.reflect.ReflectionFactory.newFieldAccessor(ReflectionFactory.java:142) at java.lang.reflect.Field.acquireFieldAccessor(Field.java:1082) at java.lang.reflect.Field.getFieldAccessor(Field.java:1063) at java.lang.reflect.Field.get(Field.java:387) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:483) at coldfusion.runtime.StructBean.invoke(StructBean.java:508) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2553) at cfdump2ecfm2106091068$funcDUMPOBJECT.runFunction(/WEB-INF/cftags/dump.cfm:1797) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2805) at cfdump2ecfm2106091068$funcRENDEROUTPUT.runFunction(/WEB-INF/cftags/dump.cfm:681) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2840) at cfdump2ecfm2106091068._factor17(/WEB-INF/cftags/dump.cfm:565) at cfdump2ecfm2106091068._factor25(/WEB-INF/cftags/dump.cfm:564) at cfdump2ecfm2106091068._factor3(/WEB-INF/cftags/dump.cfm) at cfdump2ecfm2106091068._factor54(/WEB-INF/cftags/dump.cfm:493) at cfdump2ecfm2106091068.runPage(/WEB-INF/cftags/dump.cfm:1) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:246) at coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:56) at coldfusion.tagext.lang.ModuleTag.doStartTag(ModuleTag.java:332) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2986) at cfjavatest2ecfm1994854383.runPage(J:\PPNPF_WEB\SAMLTEST\javatest.cfm:8) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:246) at coldfusion.tagext.lang.IncludeTag.handlePageInvoke(IncludeTag.java:736) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:572) at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at coldfusion.filter.IpFilter.invoke(IpFilter.java:45) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:487) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:42) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:142) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:58) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62) at coldfusion.CfmServlet.service(CfmServlet.java:219) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:303) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 ) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:241) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:422) at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:199) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.jav a:607) at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:314) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:745)

    Does the coldfusion administrator show that the jar file is loaded? If you go to the Settings Summary and look for the CF Server Java Class Path part, it will list all the loaded files.

Maybe you are looking for