Bpm Studio configure problem with ubuntu( Linux)

Hi,
I have download the oracle bpm 10 g r3 form the oracle site its work fine but when i am try to make Presentation in our project Its give some error like.
Error Typing to open browser please check installation guide to see if your environment is correctly configured.
or
XPCOM error -2147467259
org.eclipse.swt.SWTError: XPCOM error -2147467259
     at org.eclipse.swt.browser.Mozilla.error(Mozilla.java:1296)
     at org.eclipse.swt.browser.Mozilla.create(Mozilla.java:266)
     at org.eclipse.swt.browser.Browser.<init>(Browser.java:109)
     at fuego.ui.peer.swt.SwtBrowser.createBrowser(SwtBrowser.java:137)
     at fuego.ui.peer.swt.SwtBrowser.<init>(SwtBrowser.java:43)
     at fuego.ui.peer.swt.SwtFactory.createBrowser(SwtFactory.java:71)
     at fuego.ui.Browser.createPeer(Browser.java:99)
     at fuego.ui.UiPeer.getPeer(UiPeer.java:27)
Please help me asap.
Thanks

You're the man! I went though line-by-line with the Debian kernel config and indeed, the Ubuntu config had a bunch of debugging options enabled under Kernel and elsewhere.  Just got the kernel built and it's the right size after disabling these debugging options.
6.5M 2008-12-28 16:36 linux-headers-2.6.27.10-ubuntu64_1_amd64.deb
22M 2008-12-28 16:36 linux-image-2.6.27.10-ubuntu64_1_amd64.deb
Now the real question is why doesn't the kernel-image in the repo have the same huge size?  After all, it is built from the same config file as the one I copied over from the /boot isn't it
Last edited by graysky (2008-12-28 21:57:12)

Similar Messages

  • Configuration problem with external Western Digital My Book 2 TB drive

    How do I fix a configuration problem with my external Western Digital My Book 2 TB drive which used to both read and write. Something has happened so that the drive is now read only? There is 600 GB of data on the drive that I cannot lose, thus am very concerned about messing around with formatting the drive which is raid 1 and filled with data.

    may not like to hear, but I'd skip on MyBook cases, nice looking as they are.
    Get a 2nd drive case to recover to.
    http://www.macsales.com/firewire
    may need to play with the demo Data Rescue 3 from Prosoft
    Backup/recover before repair is usually in order
    never have one backup set. THREE sets of your data, minimum.
    3rd party disk maintenance and repair should be a must and given rather than rely solely on Apple Disk Utility.
    Data and system maintenance and recovery plan - should be like practice for sports, arts, military with practice and making sure you will know how and the tools you need - ahead of time
    Resetting USB/FW ports, try another if one won't work. When 10.6 came out there was a lot of grinding teeth with external drives not working or mounting.

  • Java Studio Creator Installation Problems in ubuntu linux (JRE not found)

    Hi, im having some problem with the installation of this tool, i try to install it and i get a message saying that it can't found the JRE, i have also tried passing it by argument like this:
    -is:javahome /usr/lib/j2se/jre/bin/
    -is:javahome /usr/lib/j2se/jre/
    but i get the same message, any suggestions??
    Thanks in advance.

    I was getting these same errors, and after a bunch of poking around
    in the install script and debugging it, I finally figured out that the
    "problem" was that I was typing 'sh <installer>' instead of chmoding the
    installer +x and running it as a command.  I still don't understand why
    it couldn't find the installed JVN (it's in /usr/bin/java, for heaven's
    sake!), but when running it as a command it extracted the bundled jvm
    and completed the install.
    It did produce an error about being unable to find some stuff for the
    bundled server, which I haven't tried to track down since I don't think
    I need it. But I was able to install Creator and run it on Gentoo.
    Now if I can just figure out why it does nothing when I click build
    on an existing project, I'll be happy.

  • Best method for networking with ubuntu linux

    Hi,
    I'm setting up an ubuntu linux fileserver, and I was wondering what the best method for filesharing with my mac is. I'm currently running osx 10.4.11, though I may be upgrading to 10.5 soon. I'll be running SMB networking for a couple of other computers, but I'd prefer something a bit more robust that can handle file permissions etc.

    Mac OS X supports NSF out of the box. Configuration isn't documented.
    I recall Apple got rid of net info manager in Leopard, so the configuration will be different. Perhaps more unix like.
    Mac OS X support the Unix Network File System (NFS). However, it leaves out
    the GUI.
    This page show you how to use NetInfo Manager:
    http://mactechnotes.blogspot.com/2005/09/mac-os-x-as-nfs-server.html#c1168221713 40271068
    NFS Manager can both setup NFS shares and connect to NFS shares.
    http://www.bresink.com/osx/NFSManager.html
    Once you figure out how NFS Manager configures the NFS shares, you can
    use Applications > Utilities > NetInfo Manager to create more shares.
    You will either have to coordinate Unix Userid number and Unix Group Id number or use the mapall option on the share.
    To find out your Mac OS X userid and group id do:
    applications > utilities > terminal
    ls -ln
    ls -l
    # lists the NFS share on your mac
    showmount -e localhost
    #list NFS shares on a remote host
    showmount -e remote-ip-address
    Once you see what NFS Manager does, you will be able to use NetInfo Manager to manage a connection. In Mac OS 10.4 you can configure the /etc/exports control file. See man exports for the details. Before that you had to have the data in NetInfo manager. When Mac OS X came out, many common Unix control files were not present. Instead the data had to be in NetInfo manager. Over time Apple has added more and more standard Unix control files.
    ======
    You do know about the need to match userids & groupids.
    # display uid and gid
    ls -ln
    sudo find / -user short-user-name -exec ls '-l' {} \;
    # on Mac OS X
    you will need to go into NetInfo Manager and select user and find your short-user-name. Change uid and guid.
    #on Linux look in
    /etc/passwd
    /etc/group
    # with care...
    # change 1000:20 to your values for uid:gid
    sudo find / -user short-user-name -exec chown 1000:20 {} \;
    The manual for Tenon MachTen UNIX (which Apple checked when doing Mac OS
    X) says that one should crate the file /etc/exports, which will cause
    portmap, mountd and nsfd to launch at startup via the /etc/rc file. The
    file must not contain any blank lines or comments, and each line has the
    syntax
    directory -option[, option] hostlist
    where 'directory is the pathname of the directory that can be exported,
    and 'hostlist' is a space separated list of hostnames that can access the
    directory. For example
    /usr -ro foo bar
    /etc
    /Applications
    /User/gladys gladys
    The client the uses a command like
    /sbin/mount -t type [-rw] -o [options] server:directory mount_point
    where 'type' is 'nfs', 'server' the name of the server, 'directory' the
    server directory mounted, and 'mount_point' the client mount point. See
    'man mount' for details.
    I haven't tried the above, but it would be nice to know if it works on Mac OS X.
    Hans Aberg
    This will give you some hints on NFS. Post back your questions.
    Robert

  • Screen display problem with Ubuntu on SL400

    I just installed Ubuntu latest release 9.04 and having problems witht he screen display. The display does not use the entire screen width. I am losing about one inch and each side. (Note that at times, the display is just right). I tried fixing it using the Display option in System but with not much succes. Any idea how I could resolve this?
    Here the output from running lspci in the terminal:
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1a.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1c.2 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 3 (rev 03)
    00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 (rev 03)
    00:1d.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M LPC Interface Controller (rev 03)
    00:1f.2 SATA controller: Intel Corporation ICH9M/M-E SATA AHCI Controller (rev 03)
    02:00.0 Network controller: Intel Corporation PRO/Wireless 5100 AGN [Shiloh] Network Connection
    0c:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
    0d:00.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 05)
    0d:00.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 22)
    0d:00.2 System peripheral: Ricoh Co Ltd R5C843 MMC Host Controller (rev 12)
    0d:00.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 12)
    0d:00.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev ff)
    Thanks,
    Mathieu

    Look:
    http://forums.lenovo.com/t5/Linux-Discussion/SL400-running-Ubuntu-Linux/m-p/55236/page/6
    and
    https://lists.ubuntu.com/archives/universe-bugs/2009-April/081223.html
    https://lists.ubuntu.com/archives/universe-bugs/2009-May/088989.html

  • Configuration problem with param or code problem

    Hi,
    Im new to this jsp. Currently, i have some some Q here. Im trying on the jsp-tutorial with
    <%@ taglib prefix="my"
    uri="./jsp2/jsp2-example-taglib.tld" %>
    <HEAD>
    <TITLE>Functions</TITLE>
    </HEAD>
    <BODY>
    <H3>Add Numbers</H3>
    <P>
    <FORM action="./compute.jsp" method="GET">
    X = <input type="text" name="x" value="${param["x"]}">
    <BR>
    Y = <input type="text" name="y" value="${param["y"]}">
    <input type="submit" value="Add Numbers">
    </FORM>
    <P>
    The sum is: ${my:add(param["x"],param["y"])}
    </BODY>
    </HTML>
    inside the text box it appear the text with ${param[[/i], may i know is it a configuration problem?
    Thx for reply

    Probably yes it is a configuration problem.
    You have a JSP2.0 container? (eg Tomcat 5)
    If your web.xml starts with this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems,
    Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    Replace it with this
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">
    That should fix it.
    http://forum.java.sun.com/thread.jspa?threadID=629437&
    tstart=0Sorry,
    I already hav
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">
    originaly.

  • Datasource Configuration problem with Tomcat-4.0.3

    Hi All !
    When I trying to open connection to my DB2 database in tomcat -4.0.3,
    I have put db2java.jar in /usr/local/jakartha-tomcat-4.03/common/lib directory
    when I am trying to connect Database through my servlet getting expections
    java.lang.NullPointerException: at DataSource ds = (DataSource)envContext.lookup("jdbc/SmsDBDS");
    here is my dbconnection class
    package com.ebizon.util.jdbc;
    import java.sql.*;
    import java.util.*;
    import javax.naming.*;
    import javax.sql.*;
    public class DBUtil {
    /* Ebizon DB Connection for Tomcat */
    public static Connection getEbizDBConnection() throws NamingException, SQLException {
    Connection conn = null;
    try {
    InitialContext initCtx = new InitialContext();
    Context envContext = (Context)initContext.lookup("java:/comp/env");
    DataSource ds = (DataSource)envContext.lookup("jdbc/SmsDBDS");
    conn = ds.getConnection();
    } catch (NamingException ne) {
    throw ne;
    } catch (SQLException se) {
    throw se;
    return conn;
    And my resource definition in server.xml (/usr/local/jakartha-tomcat-4.0.3/conf/server.xml)
    <Context path="/DBTest" docBase="DBTest"
    debug="5" reloadable="true" crossContext="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="localhost_DBTest_log." suffix=".txt"
    timestamp="true"/>
    <Resource name="jdbc/SmsDBDS"
    auth="Container"
    type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/SmsDBDS">
    <parameter>
    <name>factory</name>
    <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>100</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>30</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>10000</value>
    </parameter>
    <!-- DB2 dB username and password for dB connections -->
    <parameter>
    <name>username</name>
    <value>smsdb</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>smsdb</value>
    </parameter>
    <!-- Class name for mm.mysql JDBC driver -->
    <parameter>
    <name>driverClassName</name>
    <value>COM.ibm.db2.jdbc.app.DB2Driver</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:db2:smsdb</value>
    </parameter>
    </ResourceParams>
    </Context>
    this is my Web Application descriptor /WEB-INF/web.xml
    <resource-ref>
    <description>
    Resource reference to a factory for java.sql.Connection
    instances that may be used for talking to a particular
    database that is configured in the server.xml file.
    </description>
    <res-ref-name>
    jdbc/EmployeDB
    </res-ref-name>
    <res-type>
    javax.sql.DataSource
    </res-type>
    <res-auth>
    Container
    </res-auth>
    </resource-ref>
    Please look at once above , Do i missing any thing?
    Anyhelp is greatly appreciate
    Many thanks in advance
    With Regards
    Madhu Reddy

    I don't see any problem with your files, so unfortunately I can't help. Since this forum is about the J2EE SDK, people may not have that much experience with standalone Tomcat. You may want to try the Tomcat user mailing list for a question about Tomcat: http://jakarta.apache.org/site/mail2.html

  • Re: BIOS version 3.30 Tecra A11/M11: Problems with Ubuntu systems?

    I just got the invitation to update to BIOS version 3.30 on my Tecra A11/M11.
    I'm still running Win7 right now but plan to add a dual boot with Ubuntu when the next LTS hits in April.
    Is anyone having trouble with the new BIOS?
    Should I upgrade, or leave 3.20 intact?
    I find no evidence of trouble with 3.20.

    Why to upgrade the BIOS if everything is OK?
    Furthermore as far as I know Toshiba does not support the Linux OS and I doubt the new BIOS would improve any Linux performance so if you are happy with the v3.20, stay with that

  • DVD Studio Pro - Problem with video size

    Hello all,
    I'm having a problem with dvd studio pro.
    I have a project that I edited in FCP, then compressed to the default DVD setting in compresser, then imported the video as an asset in DVD studio pro. I'm trying to create a SD dvd, and whenever I simulate the dvd, the video plays with some of the left side cropped out. I have text that is cut off because of it. This has never happened before, and I have checked again and again to make sure its all set on SD. I'm pretty new to fcp studio, i'm teaching myself as I go and this is driving me crazy. I have made a bunch of dvd's prior, and this has never happened, so I have no idea what I did to mess things up.
    For all I know, the problem may not even have to do with dvd studio, it may be in compresser. I have also played around with that, to no avail.
    Thanks for the help!
    Thomas

    Thanks Javabob,
    That is a way good idea. While trying your suggestion i stumbled upon the problem, I have no idea why i never noticed this before. When i got to the step of importing it as an asset into dvd studio, i clicked on the video track and the inspector box for it showed up, then i noticed it had a display mode drop down menu set on '16:9' pan-scan. I then changed it to 16:9 letter-box and the simulation video fits correctly onto the screen. I don't really understand the reason why pan-scan blew it up like that, but it is fixed now. I still don't recall ever having to do this before, but oh well. I will pay attention to the inspector window for the videos more carefully from now on.
    Thanks for the help Javabob!

  • J2ee agent 2.2 configuration problem with Websphere Portal 5.1

    Hi,
    I am trying to configure j2ee agent 2.2 with Websphere Portal server.
    I have followed the document "Sun Java SystemAccess Manager
    PolicyAgent 2.2 Guide for IBM WebSphere Portal Server 5.1.0.2"
    Please see the thread "Problem with Sun's SSO system and Websphere Portal Server integration" for environment related information.
    Also the security on app server has been enabled and is talking to LDAP.
    My aim here is to enable application server (portal server) to autheticate requests.
    I am getting following error when I log into the portal application.
    07/03/2007 06:32:16:062 PM IST: Thread[Servlet.Engine.Transports : 1,5,main]
    AmFilter: now processing: SSO Task Handler
    07/03/2007 06:32:16:062 PM IST: Thread[Servlet.Engine.Transports : 1,5,main]
    SSOTaskHandler: SSO Validation failed for null
    07/03/2007 06:32:16:062 PM IST: Thread[Servlet.Engine.Transports : 1,5,main]
    URLFailoverHelper: Checking if https://apollo.maxnewyorklife.com:443/amserver/UI/Login is available
    07/03/2007 06:32:16:078 PM IST: Thread[Servlet.Engine.Transports : 1,5,main]
    WARNING: URLFailoverHelper: the url https://apollo.maxnewyorklife.com:443/amserver/UI/Login is not available
    javax.net.ssl.SSLHandshakeException: unknown certificate
         at com.ibm.jsse.bs.a(Unknown Source)
         at com.ibm.jsse.bs.startHandshake(Unknown Source)
         at com.ibm.net.ssl.www.protocol.https.b.o(Unknown Source)
         at com.ibm.net.ssl.www.protocol.https.q.connect(Unknown Source)
         at com.ibm.net.ssl.internal.www.protocol.https.HttpsURLConnection.connect(Unknown Source)
         at com.sun.identity.agents.common.URLFailoverHelper.isAvailable(URLFailoverHelper.java:190)
         at com.sun.identity.agents.common.URLFailoverHelper.getAvailableURL(URLFailoverHelper.java:129)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getLoginURL(AmFilterRequestContext.java:757)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectURL(AmFilterRequestContext.java:285)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectURL(AmFilterRequestContext.java:258)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectResult(AmFilterRequestContext.java:363)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectResult(AmFilterRequestContext.java:345)
         at com.sun.identity.agents.filter.SSOTaskHandler.doSSOLogin(SSOTaskHandler.java:210)
         at com.sun.identity.agents.filter.SSOTaskHandler.process(SSOTaskHandler.java:98)
         at com.sun.identity.agents.filter.AmFilter.processTaskHandlers(AmFilter.java:189)
         at com.sun.identity.agents.filter.AmFilter.isAccessAllowed(AmFilter.java:152)
         at com.sun.identity.agents.websphere.AmIdentityAsserterBase.processRequest(AmIdentityAsserterBase.java:195)
         at com.sun.identity.agents.websphere.AmTrustAssociationInterceptor.negotiateValidateandEstablishTrust(AmTrustAssociationInterceptor.java:91)
         at com.ibm.ws.security.web.TAIWrapper.negotiateAndValidateEstablishedTrust(TAIWrapper.java:101)
         at com.ibm.ws.security.web.WebAuthenticator.handleTrustAssociation(WebAuthenticator.java:191)
         at com.ibm.ws.security.web.WebAuthenticator.authenticate(WebAuthenticator.java:928)
         at com.ibm.ws.security.web.WebCollaborator.authorize(WebCollaborator.java:531)
         at com.ibm.ws.security.web.EJSWebCollaborator.preInvoke(EJSWebCollaborator.java:262)
         at com.ibm.ws.webcontainer.webapp.WebAppSecurityCollaborator.preInvoke(WebAppSecurityCollaborator.java:132)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:506)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:208)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:134)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:321)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:246)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:936)
    07/03/2007 06:32:16:078 PM IST: Thread[Servlet.Engine.Transports : 1,5,main]
    URLFailoverHelper: disconnected the connection for availability check
    07/03/2007 06:32:16:078 PM IST: Thread[Servlet.Engine.Transports : 1,5,main]
    ERROR: URLFailoverHelper: No URL is available at this time
    07/03/2007 06:32:16:078 PM IST: Thread[Servlet.Engine.Transports : 1,5,main]
    ERROR: AmFilter: Error while delegating to inbound handler: SSO Task Handler, access will be denied
    [AgentException Stack]
    com.sun.identity.agents.arch.AgentException: No URL is available at this time
         at com.sun.identity.agents.common.URLFailoverHelper.getAvailableURL(URLFailoverHelper.java:133)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getLoginURL(AmFilterRequestContext.java:757)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectURL(AmFilterRequestContext.java:285)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectURL(AmFilterRequestContext.java:258)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectResult(AmFilterRequestContext.java:363)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectResult(AmFilterRequestContext.java:345)
         at com.sun.identity.agents.filter.SSOTaskHandler.doSSOLogin(SSOTaskHandler.java:210)
         at com.sun.identity.agents.filter.SSOTaskHandler.process(SSOTaskHandler.java:98)
         at com.sun.identity.agents.filter.AmFilter.processTaskHandlers(AmFilter.java:189)
         at com.sun.identity.agents.filter.AmFilter.isAccessAllowed(AmFilter.java:152)
         at com.sun.identity.agents.websphere.AmIdentityAsserterBase.processRequest(AmIdentityAsserterBase.java:195)
         at com.sun.identity.agents.websphere.AmTrustAssociationInterceptor.negotiateValidateandEstablishTrust(AmTrustAssociationInterceptor.java:91)
         at com.ibm.ws.security.web.TAIWrapper.negotiateAndValidateEstablishedTrust(TAIWrapper.java:101)
         at com.ibm.ws.security.web.WebAuthenticator.handleTrustAssociation(WebAuthenticator.java:191)
         at com.ibm.ws.security.web.WebAuthenticator.authenticate(WebAuthenticator.java:928)
         at com.ibm.ws.security.web.WebCollaborator.authorize(WebCollaborator.java:531)
         at com.ibm.ws.security.web.EJSWebCollaborator.preInvoke(EJSWebCollaborator.java:262)
         at com.ibm.ws.webcontainer.webapp.WebAppSecurityCollaborator.preInvoke(WebAppSecurityCollaborator.java:132)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:506)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:208)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:134)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:321)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:246)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:936)
    07/03/2007 06:32:16:078 PM IST: Thread[Servlet.Engine.Transports : 1,5,main]
    AmFilter: result =>
    FilterResult:
         Status      : FORBIDDEN
         RedirectURL     : null
         RequestHelper:
              null
         Data:
              null
    07/03/2007 06:32:16:078 PM IST: Thread[Servlet.Engine.Transports : 1,5,main]
    AmIdentityAsserter: result => TAIResult: status: 403, principal: null, subject: null
    From whatever analysis I have done so far, I believe this issue is related to the personal certificate for sun one webserver (on which access manager & LDAP are installed) not registered with the application server (portal server).
    I am not sure about the way I go by solving the issue.
    Please can anybody help me out.
    Thanks,
    Yaseer
    Message was edited by:
    yazee
    Message was edited by:
    yazee

    Ankush,
    I am getting error as follows in the webserver error log:-
    Error receiving request from 172.23.213.75 (SSL_ERROR_CERTIFICATE_UNKNOWN_ALERT: SSL peer had some unspecified issue with the certificate it received)
    Although I can get into am console but with https://apollo.maxnewyorklife.com/amconsole
    Tried the same thing, but couldnt resolve it. I will give it another go.
    Generally I am getting same error again and again.
    In my amWebsphere log file of j2ee agent (under root\am_wps_agent\agent_001\logs\debug) error I get.....
    07/15/2007 04:19:11:656 PM IST: Thread[Servlet.Engine.Transports : 0,5,main]
    AmFilter: now processing: SSO Task Handler
    07/15/2007 04:19:11:766 PM IST: Thread[Servlet.Engine.Transports : 0,5,main]
    SSOTokenValidator.validate(): Exception caught
    com.iplanet.sso.SSOException: Invalid sessionid formatjava.lang.IllegalArgumentException: Invalid server id in session id com.iplanet.services.naming.ServerEntryNotFoundException: Naming Service is not available.
         at com.iplanet.sso.providers.dpro.SSOProviderImpl.createSSOToken(SSOProviderImpl.java:205)
         at com.iplanet.sso.SSOTokenManager.createSSOToken(SSOTokenManager.java:325)
         at com.sun.identity.agents.common.SSOTokenValidator.validateInternal(SSOTokenValidator.java:252)
         at com.sun.identity.agents.common.SSOTokenValidator.validate(SSOTokenValidator.java:157)
         at com.sun.identity.agents.filter.SSOTaskHandler.process(SSOTaskHandler.java:88)
         at com.sun.identity.agents.filter.AmFilter.processTaskHandlers(AmFilter.java:189)
         at com.sun.identity.agents.filter.AmFilter.isAccessAllowed(AmFilter.java:152)
         at com.sun.identity.agents.websphere.AmIdentityAsserterBase.processRequest(AmIdentityAsserterBase.java:195)
         at com.sun.identity.agents.websphere.AmTrustAssociationInterceptor.negotiateValidateandEstablishTrust(AmTrustAssociationInterceptor.java:91)
         at com.ibm.ws.security.web.TAIWrapper.negotiateAndValidateEstablishedTrust(TAIWrapper.java:101)
         at com.ibm.ws.security.web.WebAuthenticator.handleTrustAssociation(WebAuthenticator.java:191)
         at com.ibm.ws.security.web.WebAuthenticator.authenticate(WebAuthenticator.java:928)
         at com.ibm.ws.security.web.WebCollaborator.authorize(WebCollaborator.java:531)
         at com.ibm.ws.security.web.EJSWebCollaborator.preInvoke(EJSWebCollaborator.java:262)
         at com.ibm.ws.webcontainer.webapp.WebAppSecurityCollaborator.preInvoke(WebAppSecurityCollaborator.java:132)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:506)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:208)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:134)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:321)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:246)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:936)
    07/15/2007 04:19:11:766 PM IST: Thread[Servlet.Engine.Transports : 0,5,main]
    SSOTaskHandler: SSO Validation failed for AQIC5wM2LY4SfcwoaNKFd01DvjYeNPbR3wXaa9sMVjcKtwo=@AAJTSQACMDE=#
    07/15/2007 04:19:11:766 PM IST: Thread[Servlet.Engine.Transports : 0,5,main]
    URLFailoverHelper: Checking if https://apollo.maxnewyorklife.com:443/amserver/UI/Login is available
    07/15/2007 04:19:11:797 PM IST: Thread[Servlet.Engine.Transports : 0,5,main]
    WARNING: URLFailoverHelper: the url https://apollo.maxnewyorklife.com:443/amserver/UI/Login is not available
    javax.net.ssl.SSLHandshakeException: com.ibm.jsse2.util.g: No trusted certificate found
         at com.ibm.jsse2.bw.a(Unknown Source)
         at com.ibm.jsse2.bx.a(Unknown Source)
         at com.ibm.jsse2.bx.a(Unknown Source)
         at com.ibm.jsse2.v.a(Unknown Source)
         at com.ibm.jsse2.v.a(Unknown Source)
         at com.ibm.jsse2.u.a(Unknown Source)
         at com.ibm.jsse2.bx.a(Unknown Source)
         at com.ibm.jsse2.bx.l(Unknown Source)
         at com.ibm.jsse2.bx.startHandshake(Unknown Source)
         at com.ibm.net.ssl.www.protocol.https.b.o(Unknown Source)
         at com.ibm.net.ssl.www.protocol.https.q.connect(Unknown Source)
         at com.ibm.net.ssl.internal.www.protocol.https.HttpsURLConnection.connect(Unknown Source)
         at com.sun.identity.agents.common.URLFailoverHelper.isAvailable(URLFailoverHelper.java:190)
         at com.sun.identity.agents.common.URLFailoverHelper.getAvailableURL(URLFailoverHelper.java:129)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getLoginURL(AmFilterRequestContext.java:757)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectURL(AmFilterRequestContext.java:285)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectURL(AmFilterRequestContext.java:258)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectResult(AmFilterRequestContext.java:363)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectResult(AmFilterRequestContext.java:345)
         at com.sun.identity.agents.filter.SSOTaskHandler.doSSOLogin(SSOTaskHandler.java:210)
         at com.sun.identity.agents.filter.SSOTaskHandler.process(SSOTaskHandler.java:98)
         at com.sun.identity.agents.filter.AmFilter.processTaskHandlers(AmFilter.java:189)
         at com.sun.identity.agents.filter.AmFilter.isAccessAllowed(AmFilter.java:152)
         at com.sun.identity.agents.websphere.AmIdentityAsserterBase.processRequest(AmIdentityAsserterBase.java:195)
         at com.sun.identity.agents.websphere.AmTrustAssociationInterceptor.negotiateValidateandEstablishTrust(AmTrustAssociationInterceptor.java:91)
         at com.ibm.ws.security.web.TAIWrapper.negotiateAndValidateEstablishedTrust(TAIWrapper.java:101)
         at com.ibm.ws.security.web.WebAuthenticator.handleTrustAssociation(WebAuthenticator.java:191)
         at com.ibm.ws.security.web.WebAuthenticator.authenticate(WebAuthenticator.java:928)
         at com.ibm.ws.security.web.WebCollaborator.authorize(WebCollaborator.java:531)
         at com.ibm.ws.security.web.EJSWebCollaborator.preInvoke(EJSWebCollaborator.java:262)
         at com.ibm.ws.webcontainer.webapp.WebAppSecurityCollaborator.preInvoke(WebAppSecurityCollaborator.java:132)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:506)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:208)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:134)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:321)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:246)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:936)
    Caused by: com.ibm.jsse2.util.g: No trusted certificate found
         at com.ibm.jsse2.util.f.b(Unknown Source)
         at com.ibm.jsse2.util.f.b(Unknown Source)
         at com.ibm.jsse2.util.d.a(Unknown Source)
         at com.ibm.jsse2.bn.checkServerTrusted(Unknown Source)
         at com.ibm.jsse2.z.checkServerTrusted(Unknown Source)
         ... 39 more
    07/15/2007 04:19:11:797 PM IST: Thread[Servlet.Engine.Transports : 0,5,main]
    URLFailoverHelper: disconnected the connection for availability check
    07/15/2007 04:19:11:797 PM IST: Thread[Servlet.Engine.Transports : 0,5,main]
    ERROR: URLFailoverHelper: No URL is available at this time
    07/15/2007 04:19:11:797 PM IST: Thread[Servlet.Engine.Transports : 0,5,main]
    ERROR: AmFilter: Error while delegating to inbound handler: SSO Task Handler, access will be denied
    [AgentException Stack]
    com.sun.identity.agents.arch.AgentException: No URL is available at this time
         at com.sun.identity.agents.common.URLFailoverHelper.getAvailableURL(URLFailoverHelper.java:133)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getLoginURL(AmFilterRequestContext.java:757)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectURL(AmFilterRequestContext.java:285)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectURL(AmFilterRequestContext.java:258)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectResult(AmFilterRequestContext.java:363)
         at com.sun.identity.agents.filter.AmFilterRequestContext.getAuthRedirectResult(AmFilterRequestContext.java:345)
         at com.sun.identity.agents.filter.SSOTaskHandler.doSSOLogin(SSOTaskHandler.java:210)
         at com.sun.identity.agents.filter.SSOTaskHandler.process(SSOTaskHandler.java:98)
         at com.sun.identity.agents.filter.AmFilter.processTaskHandlers(AmFilter.java:189)
         at com.sun.identity.agents.filter.AmFilter.isAccessAllowed(AmFilter.java:152)
         at com.sun.identity.agents.websphere.AmIdentityAsserterBase.processRequest(AmIdentityAsserterBase.java:195)
         at com.sun.identity.agents.websphere.AmTrustAssociationInterceptor.negotiateValidateandEstablishTrust(AmTrustAssociationInterceptor.java:91)
         at com.ibm.ws.security.web.TAIWrapper.negotiateAndValidateEstablishedTrust(TAIWrapper.java:101)
         at com.ibm.ws.security.web.WebAuthenticator.handleTrustAssociation(WebAuthenticator.java:191)
         at com.ibm.ws.security.web.WebAuthenticator.authenticate(WebAuthenticator.java:928)
         at com.ibm.ws.security.web.WebCollaborator.authorize(WebCollaborator.java:531)
         at com.ibm.ws.security.web.EJSWebCollaborator.preInvoke(EJSWebCollaborator.java:262)
         at com.ibm.ws.webcontainer.webapp.WebAppSecurityCollaborator.preInvoke(WebAppSecurityCollaborator.java:132)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:506)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:208)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:134)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:321)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:246)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:936)
    Thanks,
    Yaseer

  • Enterprise studio Configuration pbm with MS SQL Database 2005.

    We are using MS SQL 2005 database in our project. While configuring Oracle 10g Enterprise studio with database we are getting the following exception.
    weblogic.application.ModuleException:
    [<I> 10/06/09 21:43:24]      at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:289)
    [<I> 10/06/09 21:43:24]      at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
    [<I> 10/06/09 21:43:24]      at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
    [<I> 10/06/09 21:43:24]      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    [<I> 10/06/09 21:43:24]      at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
    [<I> 10/06/09 21:43:24]      at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:42)
    [<I> 10/06/09 21:43:24]      at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:615)
    [<I> 10/06/09 21:43:24]      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    [<I> 10/06/09 21:43:24]      at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
    [<I> 10/06/09 21:43:24]      at weblogic.application.internal.SingleModuleDeployment.prepare(SingleModuleDeployment.java:16)
    [<I> 10/06/09 21:43:24]      at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:155)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:197)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:89)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:723)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1190)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:216)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.prepare(DeploymentReceiverCallbackDeliverer.java:40)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.service.internal.statemachines.targetserver.AwaitingContextUpdateCompletion.callDeploymentReceivers(AwaitingContextUpdateCompletion.java:164)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.service.internal.statemachines.targetserver.AwaitingContextUpdateCompletion.handleContextUpdateSuccess(AwaitingContextUpdateCompletion.java:66)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.service.internal.statemachines.targetserver.AwaitingContextUpdateCompletion.contextUpdated(AwaitingContextUpdateCompletion.java:32)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.service.internal.targetserver.TargetDeploymentService.notifyContextUpdated(TargetDeploymentService.java:225)
    [<I> 10/06/09 21:43:24]      at weblogic.deploy.service.internal.DeploymentService$1.run(DeploymentService.java:189)
    [<I> 10/06/09 21:43:24]      at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    [<I> 10/06/09 21:43:24]      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    [<I> 10/06/09 21:43:24]      at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    [<I> 10/06/09 21:43:24] Caused by: weblogic.common.ResourceException: [BEA][SQLServer JDBC Driver][SQLServer]xa_open (0) returns -3
    [<I> 10/06/09 21:43:24]      at weblogic.jdbc.common.internal.XAConnectionEnvFactory.makeConnection(XAConnectionEnvFactory.java:454)
    [<I> 10/06/09 21:43:24]      at weblogic.jdbc.common.internal.XAConnectionEnvFactory.createResource(XAConnectionEnvFactory.java:154)
    [<I> 10/06/09 21:43:24]      at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1109)
    [<I> 10/06/09 21:43:24]      at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1033)
    [<I> 10/06/09 21:43:24]      at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.java:214)
    [<I> 10/06/09 21:43:24]      at weblogic.jdbc.common.internal.ConnectionPool.doStart(ConnectionPool.java:1051)
    [<I> 10/06/09 21:43:24]      at weblogic.jdbc.common.internal.ConnectionPool.start(ConnectionPool.java:146)
    [<I> 10/06/09 21:43:24]      at weblogic.jdbc.common.internal.ConnectionPoolManager.createAndStartPool(ConnectionPoolManager.java:385)
    [<I> 10/06/09 21:43:24]      at weblogic.jdbc.common.internal.ConnectionPoolManager.createAndStartPool(ConnectionPoolManager.java:326)
    [<I> 10/06/09 21:43:24]      at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:251)
    [<I> 10/06/09 21:43:24]
    [<I> 10/06/09 21:43:24]
    [<I> 10/06/09 21:43:24] Exiting WebLogic Scripting Tool.
    [<I> 10/06/09 21:43:24]

    Hi,
    Quick question. Have you configured SQL Server for XA? This is sometimes my problem installing Oracle BPM Enterprise running on WebLogic for SQL Server.
    Specifically, here are the steps I follow to configure XA. I've heard you can also follow the instructions included with WebLogic Server (http://e-docs.bea.com/wls/docs92/jdbc_drivers/mssqlserver.html#wp1075232). However the short instructions provided below also describes how to do this:
    1) Copy <WebLogic Home>\weblogic\server\lib\sqljdbc.dll to C:\Program Files\Microsoft SQL Server\MSSQL\Binn
    2) Copy <WebLogic Home>\weblogic\server\lib\instjdbc.sql to C:\Program Files\Microsoft SQL Server\MSSQL\Binn
    3) Also copy the same files to C:\Program Files\Microsoft SQL Server\80\Tools\Binn
    4) Execute "C:\Program Files\Microsoft SQL Server\80\Tools\Binn\isql.exe" -Usa -Ppassword -Slocalhost -i"c:\Program Files\Microsoft SQL Server\MSSQL\Binn\instjdbc.sql"
    5) Using regedit, set the property HKEY_LOCAL_MACHINE\Software\Microsoft\MSDTC\Security\XaTransactions to 1 (instead of 0)
    6) In addition, you may also need to do following step (if not configured already – check whether it is already done before making these changes.
    Create a registry named-value:
    a. Use Registry Editor and navigate to registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSDTC\XADLL
    b. Create a new registry named-value:
    * Name is the file name of the XA DLL (in the format dllname.dll)
    * Type is String (REG_SZ)
    * Value is the full path name (including the file name) of the DLL file
    Name: sqljdbc.dll     
    Type: String (REG_SZ)
    Value: c:\Program Files\Microsoft SQL Server\MSSQL\Binn\sqljdbc.dll
    c. Note: You must create an entry for each XA DLL file that you plan to use. Also, if you are configuring MS DTC on a cluster, you must create these registry entries on each node in the cluster.
    7) Using the SQL Server Service Manager (available from the Start menu), restart SQL Server and the Distributed Transaction Coordinator
    Hope this helps,
    Dan
    Edited by: Daniel Atwood on Jun 11, 2009 6:29 AM

  • Oracle 10g XE installation problem on Ubuntu Linux, Oracle will not start

    Hi,
    After installing the pakages the error is when I call sqlplus and login as SYS :-
    oracleXE: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
    ERROR:
    ORA-12547: TNS:lost contact
    What I have done:-
    My system is 64 bit AMD.
    I installed .deb package on Ubuntu 9.04 server. I installed the following packages.
    1.     ibc6-i386
    2.     libaio_0.3.104-1_i386.deb
    3.     bc
    4.     oracle-xe-universal_10.2.0.1-1.1_i386.deb.
    The Oracle processes do not start after running /etc/init.d/oracle-xe start.
    I can tnsping from the local machine.
    dpkg -l |grep libaio gives the following:
    ii libaio1 0.3.107-3ubuntu1 Linux kernel AIO access library - shared lib

    I have been running XE on 9.04 (32bit on my laptop - 64bit on my workstation) and both works fine. I had no problem installing. I followed the directions in documents I found on Ubuntu forums and also google. The document I used to install on 64bit was from http://littlebrain.org
    I remember using
    dpkg -i --force-architecture libaio1_0.3.107-1ubuntu1_i386.deb
    dpkg -i --force-architecture libaio-dev_0.3.107-1ubuntu1_i386.deb
    dpkg -i --force-architecture libaio1-dbg_0.3.107-1ubuntu1_i386.deb
    dpkg -i --force-architecture oracle-xe_10.2.0.1-1.0_i386.deb
    and then I used the ./oracle-xe configure as root, the installation was ok - and I have even updated the APEX version to 3.2.1 on the XE installation running on my 64bit Ubuntu 9.04
    hope this proves useful
    R/ Zafer

  • [SOLVED]Problem with Ubuntu One related python module gi.repository

    So, I have Ubuntu One working on another Arch install, but I just put it on my new laptop today, and it's not working.  Installed with no apparent problems. However, when I try to run
    $ ubuntuone-control-panel-qt
    I get these messages (the last line is the only one that contains an actual error message):
    Traceback (most recent call last):
    File "/usr/bin/ubuntuone-control-panel-qt", line 29, in <module>
    from ubuntuone.controlpanel.gui.qt import main
    File "/usr/lib/python2.7/site-packages/ubuntuone-control-panel/ubuntuone/controlpanel/gui/__init__.py", line 26, in <module>
    from ubuntuone.controlpanel.backend import UBUNTUONE_LINK
    File "/usr/lib/python2.7/site-packages/ubuntuone-control-panel/ubuntuone/controlpanel/backend.py", line 29, in <module>
    from ubuntuone.platform.credentials import CredentialsManagementTool
    File "/usr/lib/python2.7/site-packages/ubuntuone-client/ubuntuone/platform/__init__.py", line 47, in <module>
    from ubuntuone.platform import os_helper
    File "/usr/lib/python2.7/site-packages/ubuntuone-client/ubuntuone/platform/os_helper/__init__.py", line 41, in <module>
    from ubuntuone.platform.os_helper import linux
    File "/usr/lib/python2.7/site-packages/ubuntuone-client/ubuntuone/platform/os_helper/linux.py", line 48, in <module>
    from gi.repository import Gio, GLib
    ImportError: No module named gi.repository
    I read on some Ubuntu site that it might help to reinstall python-gobjects, though the package is different on Arch (which I guess is a given), and it pulled in python3, so, as you might imagine, it didn't work.
    When I run `ubuntuone-launch` or `u1sdtool` I don't get an error, but nothing happens either (no prompt for login).  I searched google and the forums and the wiki, so sorry if I missed something obvious. Don't know anything about python either, beyond "hello-world.py" (and that I had to put parenthesis around the print statement in order to "port my software" to python3)
    Last edited by ninjaaron (2012-10-24 05:12:04)

    I only had python2-gobject2 (well, and python-gobject, and python-gobject2).  Installed python2-gobject and it works now.
    Thanks!
    SOLVED
    Last edited by ninjaaron (2012-10-24 05:27:21)

  • Start-Up Problems with Ubuntu Remix on Toshiba NB100

    Today, I attempted to use Update Manager to install several updates.
    During their installation the machine froze.
    Now, start-up only takes me to the Ubuntu start-up page with the logo and an empty progress bar.
    If I go to Terminal, I have the following script
    Busybox v1.1.3 (Debian 1:1.1.3-5 Ubuntu12) Built-in shell(ash)
    Enter 'help' for a list of built-in commands.
    (initramfs)
    I have no idea how to proceed. Is there a command I can use to start-up successfully or do I need to use the Recovery CD?
    I am a Linux novice.
    Thank you.
    David Lowe

    I have precisely the same problem.
    I'm using Hardy Heron with kernel 2.6.24-19 and cannot go past the initramfs / busybox screen. Going to another console (ctrl+alt+f1) shows the following message:
    ALERT! cannot find device /dev/<uuid number of my hard disk>
    (I checked the correctness of the UUID already.)
    The problem is that I cannot exit the initramfs command line. "exit" simply doesn't do anything.
    "Recovering" the netbook means reformatting the fkash disk, right? This is not really an option for me, and I am willing to go through some painful and lengthy steps to repair this problem. If you have any suggestions, I'm open.
    Régis

  • Network problems with Oracle Linux 5.7 on Vmware ESX 4.1

    We recently installed Oracle Linux 5.7 64 on Vmware in order to run OVM Manager 3.02. The VM experiences random frequent network connectivity problems. There are no errors showing up in the network stats. The Vmware environment hosts many production VMs with no issues. We did have some trouble configuring Vmware tools with the uek kernel, so we booted the vm with the base kernel and we were then able to configure Vmware tools with no problems. We have tried running the VM on two different ESX servers with no improvement.
    The network connectivity problems persist even with the base kernel. We get random ping failures into and out of the VM, and random disconnects of ssh terminal sessions.
    I am not very experienced with linux, being primarily a vmware and aix admin. Any tips on stabilizing Oracle Linux on Vmware are greatly appreciated otherwise, I will have to beg for a new server to host the OVM manager.
    Thanks,
    Bob

    The network connectivity problems persist even with the base kernel. We get random ping failures into and out of the VM, and random disconnects of ssh terminal sessions.Before you check on software and driver updates you might want to check your hardware settings. I've seen problems like this before when using a bad network cable or having a duplex mismatch. The later can happen when changing from a router to a network switch and configuring the switch for fixed full duplex. Depending on which end you sit you won't even see any network errors, but packages will disappear depending on traffic. Make sure you have set server's NIC and network switch port to the same topology ie. fixed or auto-negotiate, but not mixed. You can use the "ethtool" on the Linux system to verify the current settings.

Maybe you are looking for

  • Crystal Report Viewing Problem in SAP b1 2007

    Hi , I have Installed Crystal Report Add On for 2007 SAP B1 but while display report i have getting following error, Any one can tell me what i have to do,please resolved my issue could not load file or assembly 'CrystalDecisions.Windows.Forms,Versio

  • Photo Stream delete problem

    When deleting photos in Photo Stream from my 4s or iPad 1, it used to delete universally from all devices.  I added my apple tv, and now it says "This photo will be removed only from the Photo Stream on this (iPhone or iPad)."  how do I get the unive

  • Extract Edit Across a Dissolve causes Serious Error Crash

    Hoping that: 1 - There's an update soon - it's been a while since we've had anything significant. 2 - This particular bug gets addressed. I'm on a new Mac Pro - 64 GB Dual Hexacore 2.93 GHz.  Running Raid 0 internal with a Blade SSD in the 16x PCI sl

  • Burn 350 images to single disk

    I have iMac G5, OS 10.4.11, iPhoto 5.0.4, and i DVD 5.0.1. I want to put an already iPhoto-created slideshow, with music, on a DVD. Here's the problem: When transferring the slideshow to a DVD, using iDVD, a message states that only 99 images can be

  • How to lock iphone 5 with closing the cover

                                                                                                                                          how do i lock my iphone 5 when i close the cover ipad can do it but iphone can