Problems with exporting display for oracle apps installation

Platform : RedHat Enterprise Server 4
I'm trying to do a 2 tier installation of Oracle Applications.
As part of the install, I need to generate a display that can be used by the applmgr user, but bellongs to another user.
When running the following command line, I get an error message.
xauth -f .Xauthority extract - $DISPLAY | rsh -l applmgr localhost /usr/X11R6/bin/xauth merge -
connect to address 127.0.0.1: Connection refused
Trying krb4 rsh...
connect to address 127.0.0.1: Connection refused
trying normal rsh (/usr/bin/rsh)
localhost: Connection refused
Does anyne have an idea? I've done some troubleshooting, but I can't figure out what is wrong.
I have added the following in the xmgr and applmgr's profiles
DISPLAY=localhost:13
export DISPLAY
The vnc server runs on display 13

These are the scripts/files I'm using for installing Oracle Apps 11.5.10 on CentOS 4.2 (RedHat Clone) - hope it helps:
install.sh - adds necessary packages
yum install libaio
yum install openmotif
yum install gcc
yum install gcc-c++
mv /usr/bin/gcc /usr/bin/gcc344
mv /usr/bin/g++ /usr/bin/g++344
rpm -iUhv compat-gcc-7.3-2.96.126.i386.rpm
rpm -iUhv --nodeps compat-gcc-c++-7.3-2.96.126.i386.rpm
ln -sf /usr/bin/gcc296 /usr/bin/gcc
ln -sf /usr/bin/g++296 /usr/bin/g++
setup.env - Setup paths
# Oracle Setup Environment
ORACLE_SETUP_APPS=/setup/oracle/install/ebusiness/startCD
ORACLE_SETUP_PATCH=/data/setup/install/db
oracle.env - Installation environment
# Oracle Environment
ORACLE_BASE=/d01/oracle
ORACLE_HOME=$ORACLE_BASE/visdb/9.2.0
ORACLE_VAR=/var/opt/oracle
ORACLE_SID=VIS
ORACLE_TERM=xterm
# export TNS_ADMIN= Set if sqlnet.ora, tnsnames.ora, etc. are not in $ORACLE_HOME/network/admin
NLS_LANG=AMERICA_AMERICAN.UTF8
#ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
export ORACLE_BASE ORACLE_HOME ORACLE_SID ORACLE_TERM NLS_LANG ORA_NLS33
LD_ASSUME_KERNEL=2.4.19
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
export LD_ASSUME_KERNEL LD_LIBRARY_PATH
# Set shell search paths
export PATH=$PATH:/usr/sbin:/sbin:$ORACLE_HOME/bin
oracle - Kernel Parameters
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem    = 250 32000 100 128
fs.file-max   = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 262144
net.core.rmem_max     = 262144
net.core.wmem_default = 262144
net.core.wmem_max     = 262144
setup_oracle_1.sh - Installation Step 1 : Add oracle user
#!/bin/sh
PATH=$PATH:/usr/sbin
groupadd dba          # group of users to be granted with SYSDBA system privilege
groupadd oinstall     # group owner of Oracle files
useradd -m -c "Oracle software owner" -g oinstall -G dba oracle -s /bin/bash
passwd oracle
setup_oracle_2.sh - Installation Step 2 : Prepare installation directory
#!/bin/sh
. ./oracle.env
BASE_DIR=/`echo $ORACLE_BASE | cut -d'/' -f2`
mkdir -p $ORACLE_BASE
chown -R oracle:oinstall /$BASE_DIR
chmod -R 775 $BASE_DIR
mkdir -p $ORACLE_VAR
chown oracle:dba $ORACLE_VAR
chmod 755 $ORACLE_VAR
setup_oracle_3_apps.sh - Installation Step 3 : Start installer
#!/bin/sh
. ./oracle.env
. ./setup.env
sysctl -p ./oracle
su oracle -c "export DISPLAY=:0.0 && $ORACLE_SETUP_APPS/Disk1/rapidwiz/rapidwiz"There are some steps afterwards, but with this I'll usually end up with a complete installation.
C.

Similar Messages

  • SUNWsprox package with solaris 10 for Oracle 10g Installation....

    Hi
    I am in problem with a Solaris 10 package "SUNWsprox - Sun workshop Bundled 64-bit make library" for Oracle 10g Installation. I checked the CDs (In the /.../products) but did't found this packege. Can any one tell me please can I go without this package or where I found this package...Please Its very URGENT for me....
    Thanks
    Mohammed Tanvir

    Hi...
    I had the same issue, but found out that the SUNWsprox was replaced by SUNWsprot. The OUI 10.1 Release 2 will 'pass' as the doco in the Oracle quick install guide is wrong (as well as 10g Application Server).
    The only way to lay a 10g Release database on Solaris 10 is to lay the software doen only, then cd in the .../bin directory, step your Rdbms ORACLE_HOME, ORACLE_SID, LD_LIBRARY_PATH and of course the DISPLAY (is X-windowing into the server), and run dbca manually. Oracle 10g is a bit buggy.
    Roger

  • Problem with Microsoft ODBC for Oracle Driver

    I tried to import table in MS Access with Microsoft ODBC for Oracle Driver, but a msg error appeared:
    "Reserved error (-7776); there is no message for this error"
    I think the problem is about Microsoft Jet, but i'm not sure.
    Does anybody already had this problem?

    Given that you're using a Microsoft front-end and a Microsoft ODBC driver, I'm not sure how much help you'll find on this forum. You could try substituting the Oracle ODBC driver to see if that improves anything.
    Justin

  • Problem with JDBC driver for Oracle 10g

    Hi.
    I've successfully accessed a MySQL database via a DataSource from a servlet (that uses a DAO). However, when I try to do the same with an Oracle 10g Database, I get the error message:
    Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver'
    I'm using J2SE1.5.0/5.0 and ojdbc14.jar, the latter of which I downloaded this afternoon as the latest driver JAR available on the Oracle site. As with the MySQL driver, I've placed it in the commons\lib folder within Tomcat. (I've also, of course, made the necessary modifications to server.xml and web.xml.)
    Upon examining the ReadMe file at the top of the Oracle download page, I found that the oracle.jdbc.driver package is now deprecated and all references to oracle.jdbc.driver should be replaced with oracle.jdbc. However, I got a similar error message when I tried this modification. Upon examining the contents of ojdbc.jar, I found that the driver was there and that it was, in fact, still oracle\jdbc\driver\OracleDriver!
    It appears as though the Oracle site has not been updated with a driver that matches its latest documentation. However, this does not explain why the driver is not even being loacted when it is in the correct place. Can anybody shed any light on this? Any help would be much appreciated.
    Thanks in anticipation.
    Cheers.
    Jan

    I've successfully accessed a MySQL database via a
    DataSource from a servlet (that uses a DAO). However,
    when I try to do the same with an Oracle 10g
    Database, I get the error message:
    Cannot load JDBC driver class 'oracle.jdbc.driver.OracleDriver'
    That's different from a ClassNotFoundException.
    >
    I'm using J2SE1.5.0/5.0 and ojdbc14.jar, the latter
    of which I downloaded this afternoon as the latest
    driver JAR available on the Oracle site. So you got ojdbc14.jar or ojdbc14_g.jar under the 10g drivers?
    As with the
    MySQL driver, I've placed it in the commons\lib
    folder within Tomcat. I think it's a better idea to put in the WEB-INF/lib directory of your Web app rather than commons/lib. WAR files are a very good idea, too.
    (I've also, of course, made the
    necessary modifications to server.xml and web.xml.)So you're using a JNDI data source? It sounds to me like that's where the problem is.
    You should not have to edit the server.xml at all. If you put the <ResourceParams> in a context XML file with the same name as your WAR file into the TOMCAT_HOME/webapps directory it'll be picked up automatically. (It might also be accessible in the META-INF directory for your app, but I haven't done it that way.)
    Upon examining the ReadMe file at the top of the
    Oracle download page, I found that the
    oracle.jdbc.driver package is now deprecated and all
    references to oracle.jdbc.driver should be replaced
    with oracle.jdbc.
    However, I got a similar error
    message when I tried this modification. Upon
    examining the contents of ojdbc.jar, I found that the
    driver was there and that it was, in fact, still
    oracle\jdbc\driver\OracleDriver! The fully-resolved class name you should be using MUST match the class that's in the ojdbc14.jar that you're using. Look in the JAR for the definitive answer: the one that I downloaded is still using the oracle.jdbc.driver package for OracleDriver.class. Ignore the docs - use the name that's in the JAR.
    It appears as though the Oracle site has not been
    updated with a driver that matches its latest
    documentation. That often happens with docs.
    However, this does not explain why the
    driver is not even being loacted when it is in the
    correct place. Can anybody shed any light on this?
    Any help would be much appreciated.I think the problem lies in your web.xml and server.xml
    I'd recommend that you decouple the JDBC from the Web app for now. See if you can connect to Oracle using a simple desktop app and leave the Web piece out of the equation for now. Once you can do that, you'll be certain that the parameters you're using are correct and you can turn your attention to getting the Tomcat configuration right.
    PS - I'm using Oracle 9.2.0.1 and Tomcat successfully right now, so it can be done.

  • Problem in Form Development for Oracle Apps

    Hello everybody,
    I have developed one form with three blocks:
    Header Level (block1) [master block]
    Line Level (block2) [child to block1]
    Line Detail Level (block3) [child to block2]
    in the header level i have used two non database items and in line level again i have used two non database items. I am facing two problems in this form.
    1. When i run form in query mode. whenever i execute the query and navigate down the records in the header block, first prompts: DO YOU WANT TO SAVE THE REOCRD even then if dont make any sort change in the form.
    2. When i start navigating the form in reverse order i.e. up the records, the form will go in deadlock state. It will hang and as of result i have to kill the process explicitly from the Oracle Apps server.
    Please suggest me the solution ASAP!!!
    Thanks in Advance!
    Ankur

    Hi Rizwan,
    hey dear form relations are ok
    <<block1>>.header_id=<<block2>>.header_id
    <<block2>>.line_id=<<block3>>.line_id
    If you need the form file u can tell me ur id so that i can send it to you...
    Please help me its urgent...
    Ankur

  • Problems with Macromedia Extension for Oracle Portal

    Hello,
    I’m learning about Oracle portal 10g(3.0.4). I'm having some problems about Oracle portal. Please help me as soon as possible.
    I created an Web Template using Dreamweaver MX 2004, and I´m tring to send this template to Oracle Portal through dreamweaver webservice (dreamweaver_webservice.zip) using Dreamweaver extension (dreamweaver_extension.zip) but when I try to connect using the extension to send my template I get Invalid Login message (I tried all possible passwords and logins for Oracle Portal and OracleAS). Please Help!
    Please help me or give me any materials about oracle portal. I want to study about this subject so if you have books in pdf format please send me.
    [email protected]
    thanks
    Douglas

    When I try to open the url with the ORMI port in the brownser I get this error message:
    Invalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocolvInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol
    Ports I have tryed : 1852 and 3202
    ex:
    http://<host>:<port>/portalTemplate/portalTemplate

  • Problems with exporting PDF for Print

    Hi all,
    I would appreciate some help with exporting my indesign document (using v9.2, 32x) to PDF for print.
    I have a number of images and text objects in the document and all links seem to be in place.
    However when I come to export the document to print PDF, the PDF file is corrupted and has a size of 0 bytes. The export worked fine earlier when I did a test, but since I have added a few more images, everytime I go to export it, it will not work!!
    I would be grateful for any help with this, it is infuriating when I have deadlines to meet! Many thanks.

    I'd try a 'save as idml', reopen, then export.
    If no go, rename your images folder (if separate) to break the links to images, and try exporting just the previews (you can't use this output, but it will tell you if there's a bad original image file). If a bad image, open images and re-save.
    If still no go, try a full computer shut down and try again...

  • Problem with jdbc oci in oracle full installation

    Hi,
    My server has Oracle 10g R2 in full installation, and not run jdbc in oci,
    my java command:
    /usr/java/jre1.5.0_07/bin/java -Dlibrary.path=/oracle/product/10.2.0/db_1/lib -cp ... mypackage.myclass
    and its says:
    java.lang.UnsatisfiedLinkError: /oracle/product/10.2.0/db_1/lib/libocijdbc10.so: /oracle/product/10.2.0/db_1/lib/libocijdbc10.so: cannot open shared object file: No such file or directory
    but this file [ libocijdbc10.so ] there is in the path... however the file [ libclnstsh.so.10.1 ] not...
    what is the problem ?
    thanks a lot

    Hello!
    I hope that it wasn't late but if you see the note 293667.1 you will find that is necessary set two environment variables LIBPATH and LD_LIBRARY_PATH
    $export LIBPATH=$ORACLE_HOME/lib:$LIBPATH
    $export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    Ramiro Ortiz

  • Problem with exporting SWF for web - missing last 5 seconds

    Hello everybody.
    I´ve got this problem that when I render my animation everythings OK, but when I try to export it as SWF it doesn´t include last 5 seconds. There are only shapes & solids used in the animation (masks, scale etc.) so pretty simple stuff. Animation has 35 sec. Is there any time limit or do you have any ideas how to fix this? I checked rasterize all unsupported features that did nothing.
    AE CS6
    Thank´s a lot,
    Marek

    This could be a bunch of things. It could be that the last five seconds are using an effect that is not supported so it needs to be rasterized. Frankly, AE is a lousy, let me repeat that, lousy tool for creating SWF files. Your best option is to render a video compressed in the H.261 format and use Flash to embed that video in your SWF file. The SWF will load quicker, be smaller, play on more devices and be more professional. The project will still not be mobile compatible which, now days, means you're losing 60% of your audience.

  • Problems with TV display for MacBook Air

    I currently have a MacBook Air that I am trying to hookup to my HDTV. I have a MIcro DV to VGA adapter, followed by a VGA Cable, then a VGA to DVI conversion cable plugged into the TV. When I plug it in, the Macbook Display changes, but I get absolutely nothing on the TV. I realize it might be an issue with cable conversion, but Im also wondering if there is any other way to hook this up eg. Mini DV to component, S-Video etc. THanks in advance

    Try installing the combo update from here. http://support.apple.com/downloads/MacOS_X_10_5_6_ComboUpdate
    Repair permissions before and after the update.

  • Installation problem with Siebel8.0 on Oracle Enterprise Linux 4 system

    We are having installation problem with Siebel8.0 on Oracle Enterprise Linux 4 system.
    Using interface, when installation come up to “Installing Wizard” window where Gateway Name Server Configuration window should take place, everything just freeze up
    Using console, after installation we obtain following errors:
    Installing Siebel Enterprise Server. Please wait...
    unable to launch: "ksh export
    LD_LIBRARY_PATH=/siebel/gtwysrvr/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/gtwysrvr/bin/setup.jar run -args LANG=ENU
    MODE=LIVE MODEL_FILE=/siebel/gtwysrvr/admin/enterprise_console.scm" error code:
    "236"(SBL-STJ-00152)
    LD_LIBRARY_PATH=/siebel/siebsrvr/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/siebsrvr/bin/setup.jar run -args LANG=ENU
    REPEAT=FALSE MODE=LIVE MODEL_FILE=/siebel/siebsrvr/admin/siebel_server.scm"
    error code: "236"(SBL-STJ-00152)
    LD_LIBRARY_PATH=/siebel/siebsrvr/mgmtagent/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/siebsrvr/mgmtagent/bin/setup.jar run -args
    LANG=ENU MODE=LIVE
    MODEL_FILE=/siebel/siebsrvr/mgmtagent/admin/mgmtagent_ses.scm" error code:
    "236"(SBL-STJ-00152)
    Running command :
    ./ssincfgw -is:javaconsole -console -args LANG=ENU MODE=LIVE MODEL_FILE=/siebel/gtwysrvr/admin/enterprise_console.scm
    Infinite loop of following error pops out:
    An error occurred during wizard bean change notification:
    java.lang.NoClassDefFoundError
    at ConfigInitialize.execute(ConfigInitialize.java:21)
    at com.installshield.wizard.StandardWizardListener.execute(StandardWizardListener.java:123)
    Is there any clue how this error can be solved??
    Thanks in advance!!
    Gordon
    Message was edited by:
    user605023

    I'm facing the same error message while install Siebel 8.0 on OEL. But before I had this ksh problem, it complains about disc space first, and I actually has plenty of disk space under the directory (it needs only 0.7 G and I have 17G free). Anybody has encountered such problem before?
    /net/sdcnas05/vol/engfs01/v_sia/8.0SIA[20405|http://forums.oracle.com/forums/]/Release/Linux/Server/Siebel_Enterprise_Server
    -bash-3.00$ ./setuplinux -is:javaconsole -console
    Initializing InstallShield Wizard........
    Initializing InstallShield Wizard........
    Launching InstallShield Wizard........
    0% 25% 50% 75% 100%
    Welcome to the InstallShield Wizard for Siebel Enterprise Server
    The InstallShield Wizard will install Siebel Enterprise Server on your
    computer.
    To continue, choose Next.
    Siebel Enterprise Server
    Siebel Systems
    Press 1 for Next, 3 to Cancel or 4 to Redisplay [1]
    Siebel Enterprise Server Install Location
    Please specify a directory or press Enter to accept the default directory.
    Directory Name: [siebel] /slot/ems1115/appmgr/20405
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Please select the products you wish to install.
    [ ] 1 - Gateway Name Server
    [ ] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]: 1
    [X] 1 - Gateway Name Server
    [ ] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]: 2
    [X] 1 - Gateway Name Server
    [X] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]:
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Configuring uninstallers. Please wait...
    0% 25% 50% 75% 100%
    Choose the setup type that best suits your needs.
    [X] 1 - Typical
    [ ] 2 - Compact
    [ ] 3 - Custom
    To select an item enter its number, or 0 when you are finished: [0]
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Please select the languages you wish to install.
    [X] 1 - enu - English (American)
    [ ] 2 - fin - Finnish
    [ ] 3 - kor - Korean
    [ ] 4 - cht - Chinese (Traditional)
    [ ] 5 - ita - Italian (Standard)
    [ ] 6 - esn - Spanish (Modern)
    [ ] 7 - deu - German (Standard)
    [ ] 8 - chs - Chinese (Simplified)
    [ ] 9 - tha - Thai
    [ ] 10 - dan - Danish
    [ ] 11 - heb - Hebrew
    [ ] 12 - fra - French (Standard)
    [ ] 13 - nld - Dutch (Standard)
    [ ] 14 - ptb - Portuguese (Brazilian)
    [ ] 15 - csy - Czech
    [ ] 16 - jpn - Japanese
    [ ] 17 - ptg - Portuguese (Standard)
    [ ] 18 - ara - Arabic (Sa`udi)
    [ ] 19 - sve - Swedish
    To select an item enter its number, or 0 when you are finished: [0]
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    {color:#ff0000}*Drive "/slot/ems1115/appmgr/20405" does not have enough space to install the*
    selected configuration. Please free up "766446" KB on drive
    *"/slot/ems1115/appmgr/20405" before continuing.*{color}
    -bash-3.00$ pwd
    /slot/ems1115/appmgr/20405
    -bash-3.00$ df -h .
    Filesystem Size Used Avail Use% Mounted on
    sdc1002nap-vlan1:/vol/ems_39426_1115
    71G 55G 17G 77% /slot/ems1115

  • Facing problem with the code for sending an .xls attachment via email, a field value contains leading zeros but excel automatically removes these from display i.e. (00444 with be displayed as 444).kindly guide .

    Facing problem with the code for sending an .xls attachment via email, a field value contains leading zeros but excel automatically removes these from display i.e. (00444 with be displayed as 444).kindly guide .

    Hi Chhayank,
    the problem is not the exported xls. If you have a look inside with Notepad or something like that, you will see that your leading zeros are exported correct.Excel-settings occurs this problem, it is all about how to open the document. If you use the import-assistant you will have no problems because there are options available how to handle the different columns.
    Another solution might be to get familiar with ABAP2XLS-Project. I got in my mind, that there is a method implemented, that will help you solving this problem. But that is not a five minute job
    ~Florian

  • Problem with Exporter for MS Access 3.2 in SQL Developer

    Hi,
    I have problem with exporting tables and data from MS Access to XML with Exporter for MS Access 2000.
    This error ocurr: 'Error #5 - XML Exporter'
    When I use Exporter for MS Access 2002 this error ocurr: 'Error #3478 - XML Exporter'
    Any leads how to solve this problem ?

    Thread moved to Forum Home » Database » SQL Developer
    SQL Developer
    Please, stay tune there.
    Nicolas.

  • I am getting an error encountered problem with the display driver for my Photoshop CS5 extended

    I have Windows 7 and have used CS5 extended with no problems for quite a while now.
    Last week I started up CS5 and received the error:
    "Photoshop has encountered a problem with the display driver and has temporarily disabled GPU enhancements. Check the video card manufacturers website for the latest software. GPU enhancements can be enabled in the Performance panel of Preferences."
    "Please close program and uninstall and re-install if problem persists"
    I was able to edit, however when I went to save my work it would not do so. The following error came up.
    "Could not complete the command because the extension could not be loaded"
    "Could not save a copy as .....because of a program error"
    I checked to make sure I have the latest driver, I also uninstalled and re-installed the program and I am still getting the errors.
    Can anyone help with this?

    Error 1402 | Error 1406 | Acrobat, Reader

  • MORE DETAIL ABOUT MY problem (Configuration Steps for Oracle Forms installation)

    OS:WINDOWS 2000 SERVER
    DB:8I
    FORMS:6I
    I WANT TO TEST MY FROM TO RUN ON THE WEB ONLY TEST BY (RUN FROMS IN THE WEB)
    BUT I CAN'T DO CONFIGRURATION STEPS (VIRTUAL PATH)
    WHERE I CAN DO THIS CONFIGRATION
    Configuration Steps for Oracle Forms installation of 06:05:38 2002/10/18
    This file gives details of the configuration steps done for you by the installation process
    (marked '[INFO]') and of any actions you need to do manually (marked '[ACTION]'). Please read
    this file and perform the requested actions.
    [ACTION] If you are installing in a new Oracle Home, please reboot the machine after the installation.
    [ACTION] Please configure the following virtual path with your web listener: /dev60temp for
    physical directory F:\devnt\tools\web60\temp.
    [INFO] NT service Oracle Forms Server [Forms60Server] has been created and started for
    the Forms Server.
    [ACTION] Please configure the following virtual path with your web listener: /forms60java for
    physical directory F:\devnt\FORMS60\java.
    [ACTION] Please configure the following virtual path with your web listener: /dev60html for
    physical directory F:\devnt\tools\web60\html.
    [ACTION] Please configure the following virtual path with your web listener: /dev60cgi for
    physical directory F:\devnt\tools\web60\cgi.
    [INFO] An internet shortcut to run a standard test form, or any form of your choice, has been
    created for you in the Oracle Forms program group.
    [ACTION] Please configure the following virtual path with your web listener: /jinitiator for
    physical directory F:\devnt\JINIT.

    Hi Guys,
    Any help on this request will be very helpful.
    Thanks,
    Ashok Kumar.G

Maybe you are looking for

  • Mappings Help Required

    Hi guys, 1st of all i m new in DHW. i just want to know that when a mapping runs, it inserted or load data from external oracle tables into internal (oracle table) ? Regards

  • Can't connect to Report Server via Management Studio

    Hi, I have a local installation of SQL Server 2005 (Developer Edition) on XP Professional SP2, with Reporting Services, Integration Services, and Analysis Server installed. I can connect to Integration Services and Analysis Server via the SQL Server

  • Scanning documents for email attachments.

    When I scan a document with Preview, and I want to attach it to an email, it will not let the attachment show just as a PDF file.  It always opens the document in the email.  Can this be changed?

  • Real time issues faced during Sap Implementation.

    Hi All, Please let me know some real time issues faced during SAP end to end implementation. Hw did u get over the issues. Issues faced during Production Support. I have an F2F interview. Please help me out. Regards, Somya

  • Pt880 shuts down after 10 seconds

    new mainboard and i get to see the the msi logo and thats about it.  another time i saw a screen that said press tab for windows or something like that.  but no matter what it always shuts down.  im running a p4 2.8 and i justed checked it another bo