CI issues on Linux - CentOS + Hudson

Hi there,
I got some issues to generate the Junit reports, it gets up to "Waiting for client connection" then do nothing for a few seconds.
When it gets back this is what I get in the console:
runUnitTests:
     [java] Loading configuration file /opt/flex/frameworks/flex-config.xml
     [java] Failed to match the compile target with /root/.hudson/jobs/myProject_Continuous_Build/workspace/trunk/bin/TMCV6TestRunner.swf.cache. The cache file will not be reused.
     [java] /root/.hudson/jobs/myProject_Continuous_Build/workspace/trunk/bin/TMCV6TestRunner.swf (1582916 bytes)
[flexunit] Validating task attributes ...
[flexunit] Generating default values ...
[flexunit] Using default snapshot file path [/root/.hudson/jobs/myProject_Continuous_Build/workspace/trunk/bin/logs/unitTestReport/snapshot.jpg]
[flexunit] Using the following settings:
[flexunit]      haltonfailure: [true]
[flexunit]      headless: [true]
[flexunit]      localTrusted: [true]
[flexunit]      player: [flash]
[flexunit]      port: [1024]
[flexunit]      snapshot: [false]
[flexunit]      snapshotFile: [/root/.hudson/jobs/myProject_Continuous_Build/workspace/trunk/bin/logs/unitTestReport/snapshot.jpg]
[flexunit]      swf: [/root/.hudson/jobs/myProject_Continuous_Build/workspace/trunk/bin/TMCV6TestRunner.swf]
[flexunit]      timeout: [60000ms]
[flexunit]      toDir: [/root/.hudson/jobs/myProject_Continuous_Build/workspace/trunk/bin/logs/unitTestReport]
[flexunit]      verbose: [true]
[flexunit]      xcommand: [xvfb]
[flexunit] Setting up server process ...
[flexunit] OS: [Unix]
[flexunit] Launching player:
[flexunit] Executing 'gflashplayer' with arguments:
[flexunit] '/root/.hudson/jobs/myProject_Continuous_Build/workspace/trunk/bin/TMCV6TestRunner.swf'
[flexunit]
[flexunit] The ' characters around the executable and arguments are
[flexunit] not part of the command.
[flexunit]
[flexunit] Created local trust file at [/root/.macromedia/Flash_Player/#Security/FlashPlayerTrust/flexUnit.cfg]
[flexunit] Starting server ...
[flexunit] Opening server socket on port [1024].
[flexunit] Waiting for client connection ...
[flexunit]
[flexunit] Stopping server ...
[flexunit] End of test data reached, sending acknowledgement to player ...
[flexunit] Closing client connection ...
[flexunit] Closing server on port [1024] ...
It halts there unless I cancel the build, in that case I get the following in the console:
Terminating xvnc.
[workspace] $ vncserver -kill :99
BUILD FAILED
java.util.concurrent.ExecutionException: Socket timeout waiting for flexunit report
     at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:222)
     at java.util.concurrent.FutureTask.get(FutureTask.java:83)
     at org.flexunit.ant.tasks.FlexUnitTask.execute(Unknown Source)
     at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
     at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
     at org.apache.tools.ant.Task.perform(Task.java:348)
     at org.apache.tools.ant.Target.execute(Target.java:357)
     at org.apache.tools.ant.Target.performTasks(Target.java:385)
     at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
     at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
     at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
     at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
     at org.apache.tools.ant.Main.runBuild(Main.java:758)
     at org.apache.tools.ant.Main.startAnt(Main.java:217)
     at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
     at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
Caused by: Socket timeout waiting for flexunit report
     at org.flexunit.ant.FlexUnitSocketServer.start(Unknown Source)
     at org.flexunit.ant.FlexUnitSocketThread.call(Unknown Source)
     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
     at java.util.concurrent.FutureTask.run(FutureTask.java:138)
     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:619)
Caused by: java.net.SocketTimeoutException: Accept timed out
     at java.net.PlainSocketImpl.socketAccept(Native Method)
     at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
     at java.net.ServerSocket.implAccept(ServerSocket.java:453)
     at java.net.ServerSocket.accept(ServerSocket.java:421)
     at org.flexunit.ant.FlexUnitSocketServer.openClientSocket(Unknown Source)
     ... 7 more
Total time: 10 minutes 49 seconds
Killing Xvnc process ID 4490
Build was aborted
Recording test results
No test report files were found. Configuration error?
Finished: ABORTED
I'm using CentOS and Hudson.
Any help will be appreciated.
Thanks in advance,
Diego

Hi Brian,
Many thanks for your reply,
I'll reply inline:
- Make sure that you add the CIListener class to the core as a listener so this handshake can take place from the Flash movie.
This is how my Main file looks like:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                                xmlns:flexUnitUIRunner="http://www.adobe.com/2009/flexUnitUIRunner"
                                creationComplete="creationCompleteHandler()">
        <mx:Script>
                <![CDATA[
                        import org.flexunit.listeners.CIListener;
                        import au.com.infomedia.tmcV6.TMCV6Suite;
                        import au.com.infomedia.V6.V6Suite;
                        import org.flexunit.listeners.UIListener;
                        import org.flexunit.runner.FlexUnitCore;
                        private var core:FlexUnitCore;
                        public function creationCompleteHandler():void
                                core = new FlexUnitCore();
                                core.addListener(new CIListener());
                                core.addListener(new UIListener(uiListener));
                                core.run(V6Suite, TMCV6Suite);
                ]]>
        </mx:Script>
        <flexUnitUIRunner:TestRunnerBase id="uiListener" width="100%" height="100%" />
</mx:Application>
- Make sure that the X-Windows is installed and that you are able to launch the flash player using the gflashplayer symlink while logged in under the windowing environment.  Typically not having the correct dependencies installed will result in a Segmentation Fault error from my experiences.
I run vncserver and viewer by command line and I'm able to run gflashplayer inside the window.
[root@uibuild build]# vncserver :99
New 'uibuild.devsyd.com:99 (root)' desktop is uibuild.devsyd.com:99
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/uibuild.devsyd.com:99.log
[root@uibuild build]# vncviewer :99
VNC Viewer Free Edition 4.1.2 for X - built Mar 24 2009 19:52:30
Copyright (C) 2002-2005 RealVNC Ltd.
See http://www.realvnc.com for information on VNC.
Mon Jan 11 17:28:11 2010
CConn:       connected to host localhost port 5999
CConnection: Server supports RFB protocol version 3.8
CConnection: Using RFB protocol version 3.8
Mon Jan 11 17:28:27 2010
TXImage:     Using default colormap and visual, TrueColor, depth 24.
CConn:       Using pixel format depth 6 (8bpp) rgb222
CConn:       Using ZRLE encoding
- Try attaching to display :99 with a vnc client to see if an error message is being output and if the FP is opening before the server timeout occurs. This may have more clues to help.
I'm pointing to display :99 in Hudson, but you made me wonder, should Hudson open up the standalone player as Windows does, or it should run in the background as a different process?
I already tried setting up localTrusted and headless to true and false.
This is the ANT target I'm using to run the unit tests:
       <!-- =================================
          target: runUnitTests
         ================================= -->
    <target name="runUnitTests" description="Runs Unit Tests and creates JUnit reports">
        <mkdir dir="${unitTestReport.dir}"/>
        <compile.flex in="${flex.test.dir}/${testRunner.name}.mxml" out="${build.dir}/${testRunner.name}.swf" failonerror="true" targetPlayer="${target.flash.player}"
                                additional="-source-path+='${flex.src.dir},${flex.test.dir}' -compiler.verbose-stacktraces='true' -compiler.headless-server='true'"/>
        <flexunit swf="${build.dir}/${testRunner.name}.swf" toDir="${unitTestReport.dir}" haltonfailure="true"
verbose="true" localTrusted="false" headless="true"/>
                <junitreport todir="${unitTestReport.dir}">
                        <fileset dir="${unitTestReport.dir}">
                        <include name="TEST-*.xml"/>
                        </fileset>
                        <report format="frames" todir="${unitTestReport.dir}/html"/>
                </junitreport>
    </target>
     <!--  =================================
              macrodef: compile.flex
             ================================= -->
        <macrodef name="compile.flex">
                <attribute name="flexHome" default="${flex.home}"/>
                <attribute name="backgroundColor" default="#FFFFFF"/>
                <attribute name="incremental" default="true"/>
                <attribute name="optimize" default="true"/>
                <attribute name="strict" default="true"/>
                <attribute name="targetPlayer"/>
                <attribute name="useNetwork" default="true"/>
                <attribute name="in"/>
                <attribute name="out"/>
                <attribute name="failonerror" default="true"/>
                <attribute name="additional" default=""/>
                <sequential>
                        <java jar="@{flexHome}/lib/mxmlc.jar" fork="true" maxmemory="512m" failonerror="@{failonerror}" resultproperty="buildResultProperty">
                                <jvmarg line="-Xms32m -Xmx768m -Dsun.io.useCanonCaches=false"/>
                                <!-- Add metadata -->
                                <arg value="-title=${title}"/>
                                <arg value="-publisher=${publisher}"/>
                                <arg value="-creator=${creator}"/>
                                <arg value="-language=${language}"/>
                                <!-- Compiler arguments -->
                                <arg value="+flexlib=@{flexHome}/frameworks"/>
                                <arg value="-library-path+=${basedir}/libs"/>
                                <arg value="-default-background-color=@{backgroundColor}"/>
                                <arg value="-incremental=@{incremental}"/>
                                <arg value="-optimize=@{optimize}"/>
                                <arg value="-strict=@{strict}"/>
                                <arg value="-use-network=@{useNetwork}"/>
                                <arg value="-target-player=@{targetPlayer}"/>
                                <arg value="-output=@{out}" />
                                <arg line="@{additional}" />
                                <arg value="@{in}" />
                        </java>
                </sequential>
        </macrodef>
Thanks again for your help,
Diego

Similar Messages

  • Oracle Installation Issue on Linux

    When I execute runInstaller Command it's give's following Error...
    "runInstaller: line 88: /usr/Software/database/install/.oui: Permission denied"
    What would I do to resolve this issue....
    Please Help me...
    Tharaka

    Refer & you can easily install linux
    http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/
    http://kamranagayev.wordpress.com/2010/04/25/video-tutorial-installing-oel-and-oracle-10gr2/

  • .oui error in the install of oracle database client in a linux CentOS

    I am installing oracle database client in eqipo linux CentOS, after making all the passages for the creation of the user oracle and its groups beginning the ./runInstaller application and appears to me the following error:
    ./runInstaller: line 66: /install/.oiu: cannot excecute binary file
    as I can solve this
    they can notify me the possible solution to the following e-mail?
    [email protected] or
    [email protected]

    You may want to check these references for CentOS install:
    Installing 10g Release 2 on Centos 4.3 & 4.4
    http://www.dizwell.com/prod/node/50
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b15660/toc.htm
    Oracle® Database Installation Guide
    10g Release 2 (10.2) for Linux x86
    Part Number B15660-02
    Installing Oracle 10.2.0.1 on CentOS 5.0 (x86_64)
    http://bderzhavets.blogspot.com/2007/04/installing-oracle-10.html
    Installing 9i (9.2.0.1) Database on Centos 4.5
    Installing 9i (9.2.0.1) Database on Centos 4.5
    installing 10.2.0 on CentOS
    Re: Got "java.lang.NullPointerException" installing 10.2.0 on CentOS
    Link error installing 10gR2 on CentOS 4.4
    Link error installing 10gR2 on CentOS 4.4
    Re: 10g in vmware Centos
    10g in vmware Centos
    ~ Madrid.

  • P6 R8.1 Web Service installation issue on Linux

    We are trying to install P6R8.1 web services on weblogic in linux. We have the following setup:
    1. Oracle 11g standard database in CentOS-5.4 64-bit
    2. P6R8.1/ Weblogic 10.3.3.4 installed on CentOS 5.4 64-bit (separate server).
    We have installed as per the oracle installation guide without any warning/ failure. After deploying the .war file (p6ws.war), it also showing Active in Weblogic admin console. But while trying to access the application (http://localhost:7001/p6ws) we are getting error: 403 Forbidden.
    We have tested the weblogic by deplyoing some sample .war file and it works fine
    After examining, we have found that there is no index.jsp file in the root of the p6ws.war file and it is only 29 mb compare to primaveraweb.ear file which is 194 mb of our existing installation (P6V7 with similar environment).
    Is our .war file is not properly generated or we are missing some steps? Or there is any other issue?
    Any help will be highly appreciated.
    Best Regards,
    Sandip

    In previous versions the following was sufficient:
    http://HOST:PORT/p6ws/
    The correct URL as of version 8.0 of P6 Web Services is the following:
    http://HOST:PORT/p6ws/services
    See the following: "Error 403--Forbidden" When Attempting To View Available Services For P6 Web Services (Doc ID 1293112.1)

  • Executing "jdeveloper.exe on Linux CENTOS

    I'm new to both Linux and Oracle. I've installed "jdeveloper" on an CENTOS 5.2 Linux. The installation went well with not issues. However, I'm unable to execute jdeveloper.exe. When i type "./jdeveloper.exe" I get the following message:
    bash: ./jdeveloper.exe: cannot execute binary file
    The attributes of the file is as follows:
    -rwxr-xr-x 1 root root 45056 Feb 8 15:04 jdeveloper.exe
    Why do I get the above message?
    How do I fix it?
    Thanks

    Well, .exe files are for Windows based systems only. On Linux and Unix systems you can start JDeveloper by calling $JDEV_HOME/jdev/bin/jdev (adjustment of the execution rights might be needed).
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Is JavaFX included in the Java 1.7 JDK/JRE for RH Linux/CentOS?

    I am experimenting developing an eclipse 4 application with JavaFX as the renderer on a CentOS system. It was my understanding that JavaFX was now part of the Java 7 (and later) JREs.  Is this not true for the RH/CentOS linux distribution?  If it is not, what do I need to do in order to add JavaFX?

    I've written a small program isolating this issue, you can find it here. It is effected on the 1.6.0u45 and 1.7.0u21 JVMs on Windows for the Calibri, Calibri Bold, Calibri Bold Italic, Calibri Italic and Cambria Bold fonts, and most likely fixed in the non-public 1.6.0u51 JVM and confirmed to be fixed on the 1.7.0u25 JVMs. Given that there's no public documentation, I assume this has been internally discovered or fixed unintentionally.

  • Rsync errors when syncing from linux centos 5.1

    I run this command to sync from linux directories to apple pc:
    rsync -arv --exclude-from="/Users/blwegrzyn/exclude.txt" --delete [email protected]:/shared3/ /DATA_BACKUP
    during the copy i see files being copied
    and if i run it again i see same files being copied again
    so around 1% or less was not copied correctly
    it looks like there are some special characters that macos does not like
    what is the proper way to do rsync so files are copied correctly from linux to apple ? When I copy linux to linux i dont have any issues.
    thx
    Bart

    for example directory that has character:
    (2006) Völkerball
    cannot be copied and every time i run rsync it tries to copy it again
    when i look at the destination folder I see that the directory actually was copied, but when i run rsync again , rsync deletes that directory and starts over
    if i remove special characters it works
    i found this post:
    http://www.xelon.it/articles/rsync-mac-linux-windows/
    so maybe the iconv is the switch that need to be used?
    i cannot tell cause my centos is not compliled with iconv
    i already compiled it for mac with iconv switch so i need to try on my linux to enable it and maybe it will solve the problem

  • JPasswordField locking issue in linux

    Hi,
    password field is working good if its alone in the panel/frame. if added textfield for username before password field, password field is locking and its never allowing to enter the data. this issue is in linux.* the same code works well in windows platform. is this a bug? i am using latest jre though....
    public class test3 extends JFrame implements ActionListener
        JTextField txtUserName=new JTextField(10);
        JPasswordField pwd = new JPasswordField(10);
        public test3()
             setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             getContentPane().setLayout(new GridLayout(2,1));
             getContentPane().add(txtUserName);
         getContentPane().add(pwd);
         txtUserName.addActionListener(this);
         pwd.addActionListener(this);
         pack();
         setVisible(true);
        public void actionPerformed(ActionEvent e)
             System.out.println("UserName=" + txtUserName.getText());
             System.out.println("Password=" + pwd.getText());
        public static void main(String arg[])
             new test3();
    }My environment...
    [root@uma ~]# java -version
    java version "1.6.0_13"
    Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
    Java HotSpot(TM) Server VM (build 11.3-b02, mixed mode)
    [root@uma ~]#
    [root@uma ~]# uname -a
    Linux uma 2.6.18-92.1.13.el5PAE #1 SMP Wed Sep 24 20:07:49 EDT 2008 i686 i686 i386 GNU/Linux
    [root@uma ~]#
    [root@uma ~]# cat /etc/redhat-release
    CentOS release 5.2 (Final)

    Note: This thread was originally posted in the [Java Programming|http://forums.sun.com/forum.jspa?forumID=31] forum, but moved to this forum for closer topic alignment.

  • OBIEE dashboard login issue in LINUX

    Hi,
    I am getting the following error on LINUX IN presentation server log.
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 12002] Socket communication error at call=recv: (Number=9) Bad file descriptor (HY000)
    On Windows its working fine and when i copy the RPD Linux server and try to login its not logging in.
    Please help.

    Hi User,
    It seems to be a Unix server crash.
    I have few questions :
    1) Are you using OBIEE 10g (10.1.3.4)?. It seems to be a bug on 10.1.3.4 to do with the ldap library.
    2)Can you login as Administrator and check the report? . What about the login status for normal user?
    If your case is as an adminstrator, you can login and see the report while for a normal user you can't able to view then
    Do the following steps to fix the issue: (To start up the OBIEE Server)
    abipatst:-$ more StartBIEE.sh
    #!/bin/ksh
    . $HOME/BIEE/10.1.3.4/setup/sa-init.sh
    export LD_PRELOAD=$HOME/BIEE/10.1.3.4/server/Bin/libibmldap.so
    $HOME/BIEE/10.1.3.4/setup/run-sa.sh start
    $HOME/BIEE/10.1.3.4/setup/run-sch.sh start
    Thanks,
    Karthikeyan V

  • File adapter issue in Linux enviornment

    hi'
    I am deploying BPEL in Linux enviornment, and with the file adapter read operation I am reading a test.xml file this file is internally refering to emp.xsd (files are below), now the issue is the file adapter is reading XML file even if it is invalid, this was not the case in windows XP enviornment, please advice why it is behaving like this.
    Also the path of my XSD is "/home/wsfbpel/public_html/XSD" and the file has all read write permission (chmod 777 filename)
    XSD
    *<?xml version="1.0" encoding="windows-1252" ?>*
    *<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"*
    xmlns="http://www.example.org"
    targetNamespace="http://www.example.org"
    elementFormDefault="qualified">
    *<xsd:element name="readfile">*
    *<xsd:complexType>*
    *<xsd:sequence>*
    *<xsd:element name="name" type="xsd:string"/>*
    *<xsd:element name="empid" type="xsd:string"/>*
    *</xsd:sequence>*
    *</xsd:complexType>*
    *</xsd:element>*
    *</xsd:schema>*
    XML (this is clearly invalid with respect to XSD it is refering to)
    *<?xml version="1.0" encoding="utf-8"?>*
    *<!-- Created with Liquid XML Studio Developer Edition (Trial) 8.1.2.2399 (http://www.liquid-technologies.com) -->*
    *<tns:readfile xmlns:tns="http://www.example.org"*
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.example.org /home/wsfbpel/public_html/XSD/emp.xsd">
    *     <tns:name>yatanveersingh</tns:name>     *
    *     <tns:empidname>6499</tns:empidname>* +(incorrect element name)+
    *</tns:readfile>*
    thanks
    Yatan

    Hi,
    My problem got resolved.
    There was some access issue to see the txt files at the File Directory.
    Thanks.

  • Can't install Flash plugin on 64-bit Linux (CentOS) system

    Firefox complains:
    "You need to upgrade your Adobe Flash Player to watch this video.
    Download it from Adobe."
    I download the latest version (Flash 11, Linux 64-bit) and placed the "libflashplayer.so" library in the Firefox installation directory and in /usr/lib, but Firefox doesn't see it.
    I've spent two full days on this now. Please help.
    Thanks,
    Steve

    Hello Chris,
    I have the same issue, but I've tried all the options you suggested and is not working either.
    this is what I get when trying to install it, the option you mention before "
    1. Download and mount the dmg from http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.235/install_flash_player_osx .dmg
    2. Right click on the "Install Adobe Flash Player" icon and select "Show Package Contents".
    3. Navigate into the /Contents/Resources/ folder and double click the Adobe Flash Player.pkg file. "
    is not coming up :/
    I will much appreciate your help
    regards

  • Reg ::Java Plug in issue in linux 5.7

    Folks,
    I am facing jave plug in issue and cant open the form as itis geting error java plug in need
    FYI,
    [root@apps12 ns7]# uname -a
    Linux apps12.com 2.6.32-200.13.1.el5uek #1 SMP Wed Jul 27 20:
    **11 i686 i686 i386 GNU/Linux**
    <!-- JDK plugins -->
    <sun_plugin_ver oa_var="s_sun_plugin_ver">1.5.0_10</sun_plugin_ver>
    <sun_plugin_type oa_var="s_sun_plugin_type">jdk</sun_plugin_type>
    /usr/java/jre1.5.0_10/plugin/i386/ns7
    [root@apps12 ns7]# ls -ltr
    total 112
    -rwxr-xr-x 1 root root 102464 Nov 10 2006 libjavaplugin_oji.so
    [root@apps12 firefox-3.6]# cd plug*
    [root@apps12 plugins]# ls -ltr
    total 4
    lrwxrwxrwx 1 root root 58 Mar 31 05:53 libjavaplugin_oji.so -> /usr/java/jre1.5.0_10/plugin/i386/ns7/libjavaplugin_oji.so
    [root@apps12 plugins]# cd /usr/lib/mozilla/plugins
    total 4
    lrwxrwxrwx 1 root root 58 Mar 31 06:00 libjavaplugin_oji.so -> /usr/java/jre1.5.0_10/plugin/i386/ns7/libjavaplugin_oji.so
    pls advise for the same
    Thanks
    Edited by: JuniorDBA on Mar 30, 2012 3:13 PM

    I am facing jave plug in issue and cant open the form as itis geting error java plug in needAre you trying to run the application from a Linux client? If yes, please note it is not certified -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Linux+AND+client&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    If you are trying to do something else, please post the details of the application release, database version and OS along with what you are trying to achieve.
    Thanks,
    Hussein

  • OBPM 10.3.1 Configuration issue in Linux (RedHat Enterprise Linux AS rel 4)

    Hi,
    OBPM enterprise version: OBPM 10.3.1 for WL @ linux, 32 bit version
    WLS: 10.3.0
    OBPM directory configuration wizard is empty / blank. (graphical mode)
    Am using vnc viewer 4.1.1 free edition in my windows XP desktop. I connect to the linux box using the desktop details obtained when vncserver is run in the linux. When OraBPMwlHome/bin/obpmadmcenter is run, the Oracle BPM Admin Center opens up showing the Configuration link. After clicking the Configuration link, another window opens showing the Directory tab. When Add button is clicked, shows up an empty / blank window. I do not see any of the check boxes /radio buttons / buttons. If windows keyboard ESCAPE is done, do you want to cancel this wizard, yes /no comes up.
    I tried searching the net and gettig under the documentation, but could not find any resolutions.
    Please LMK,
    1. how to do hybrid directory service configuration using console mode
    2. if any patches to be applied for resolving graphical mode issues.
    Thanks & Regards,
    Swamy

    Hi Ariel,
    Thanks a lot for the reply.
    I do not see any desktop effects like Compiz, Beryl installed in my windows XP desktop. The X windows client that i am using, the vncviewer, does not seem to have any special X effects. Could you please suggest, how I can disable X effects and any workarounds / alternatives for my linux version.
    I also tried using the omni-X windows server (a different box, on windows 2000 server), setting the DISPLAY in the linux box. I face the same problem. The 3rd window (directory type provider selection) is blank.
    Appreciate all your help.
    Thanks,
    Swamy
    Edited by: user8994281 on 15-Feb-2010 21:40

  • Forms 11gR2 installed on linux (centos 6.3) cannot start

    hello ervery one,
    I installed weblogic 10.3.5 and jdk first ,and then installed forms11gR2 on my linux virtual machine.
    I can not start up my forms builder .
    it report an error: cannot find libjvm.so :cannot open shared object file ,no such file or directory.
    the weblogic server can start normally.
    what may be the reason and how can i fix it ?
    lmw.

    CentOS is not a supported operating system for 11g Forms/Reports - thus if you run into a brickwall on this, don't be surprised :)
    Despite it not being supported, I have ran Forms Builder in an unsupported linux environment before. You likely just need to setup missing environment variables to get it to run, make sure the environment variables listed below are set. I'd probably do this in a little shell script to launch forms builder. However just a fair warning, the user interface isnt pretty when you run it on UNIX-based systems.
    #MW_HOME: WebLogic Middleware home directory
    export MW_HOME=/opt/oracle/middleware
    #ORACLE_INSTANCE: Oracle Instance of your Forms/Reports Domain
    export ORACLE_INSTANCE=$MW_HOME/asinst_1
    #ORACLE_HOME: Oracle Home of Forms and Reports
    export ORACLE_HOME=$MW_HOME/as_1
    export FORMS=$ORACLE_HOME/forms
    export FORMS_BUILDER_CLASSPATH=$ORACLE_HOME/jlib/frmbld.jar:$ORACLE_HOME/jlib/importer.jar:$ORACLE_HOME/jlib/debugger.jar:$ORACLE_HOME/jlib/utj.jar:$ORACLE_HOME/jlib/ewt3.jar:$ORACLE_HOME/jlib/share.jar:$ORACLE_HOME/jlib/dfc.jar:$ORACLE_HOME/jlib/ohj.jar:$ORACLE_HOME/jlib/help-share.jar:$ORACLE_HOME/jlib/oracle_ice.jar:$ORACLE_HOME/jlib/jewt4.jar:$ORACLE_HOME/forms/java/frmwebutil.jar:$ORACLE_HOME/forms/java/frmall.jar
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/jdk/jre/lib/amd64:$ORACLE_HOME/jdk/jre/lib/amd64/server:$ORACLE_HOME/jdk/jre/lib/amd64/native_threads
    export LD_PRELOAD=$ORACLE_HOME/jdk/jre/lib/amd64/libjsig.so
    #PATH: Make sure to include OS User bin paths
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/jdk/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin
    #TNS_ADMIN: Default TNS_ADMIN for 11g Forms and Reports
    export TNS_ADMIN=$ORACLE_INSTANCE/config
    Thanks,
    Gavin

  • Drag-and-drop issue with Linux, KDE

    My application used to work fine, but when i tested it on Linux drag and drop stopped working.
    I used snippet that would take list of supported DataFlavors of Transferable and used for loop to find a javafilelist one. (isJavaFileListType()).
    Well, now, it does that flava scan, but it doesn't find javafilelisttype in the list!
    I tried to retrieve String, serializedobject.. no use. It throws and illegal action exception of DnD or something like that.
    Does anybody know what's wrong, or had similar issues? I use j2 of v 1.5.2
    I shall provide you with more info if it's something totally new.

    I'd be interested in the answer to this too.
    It only just started happening to me a day or so ago, about the time that I think I did an OS upgrade.
    I'm on OSX 10.8.2.
    Its annoying.
    I can drop and drag in Finder but it just affects email.

Maybe you are looking for

  • Getting error while creating trigger!!

    Hi Guys, I am getting the following error while creating trigger in Oracle10g Database in TOAD environment. Error: PLS-00306: wrong number or types of arguments in call to '=' Table details: One of the column having BLOB Data type in the table. In th

  • Problem With Ringtones in iTunes

    Okay so I've never tried the ringtone thing before and I tried it out last night and it worked fine. Now today, I get to my computer and click on the "Create Ringtone" tab thing. It goes through the "processing" load bar and then it goes to the ringt

  • Error while logging in B1

    Hi when i am logging in to SAP b1 some times it gives the error and B1 automatically shutdowns. This the error description Exception code: C0000005 ACCESS_VIOLATION Fault address: 01A4CEE0 0001:0164BEE0 C:\Program Files\SAP\SAP Business One\SAP Busin

  • Transferring Contacts from iPhone 3g to a new Macbook Pro...need help:-)

    Transferring Contacts from iPhone 3g to a new Macbook Pro...need help:-)

  • Disk space for photos not deleting

    Hi, I have an iPhone 6 where I deleted all photos and videos, then deleted them again from the recently deleted folder.  Yet, usage shows my photo library still taking up 3.8GB of space.  Can anyone tell me how to delete for good? Thanks.