OC4J and ias 1.021 on AIX 433 ??

hello
I am planning to install the OC4J engine
on AIX433 and I downloaded oc4j.zip
However the last version of IAS on AIX we
have is the release 1.021 instead of 1.022
as adviced ( or required ?? ) in the
documentation.
Could you tell me if this installation is
possible with IAS 1021 on aix, and if it is
no, where will be the problems ?
Thanks for your help
Best regards
Jean-Philippe BATTU
BULL Grenoble
France

Triple asdf, I agree that the shell script, oc4j.sh, is too simple and nice to be guilty here. From the console output, it seems the coredump happened when the server was initializing ascontrol application. To confirm that, can you comment out the following two lines in your j2ee/home/config/server.xml and then try starting the server.
  <application name="ascontrol" path="../applications/ascontrol.ear" start="true" />
  <web-site path="./ascontrol-web-site.xml" />
If you got the server started, then try adding these lines and bounce the server.

Similar Messages

  • OC4J and login failure

    'Install' the embedded OC4J in JDev9i (<Jdev9i_HOME>\j2ee\home) and assign an administrative password of admin.
    Deployment from JDev9i works with no issue - URL uses port 8888.
    Problem is when shutdown machine and come back in I have to go back and reinstall the embedded OC4J. It seems to lose
    the fact that it was installed and had a password of admin.
    What gives - Thanks - Ken Cooper

    First of all i had the exact same problem for few weeks ago.
    I was advised to download the Oracle9iAS Containers for J2EE Standalone ( http://technet.oracle.com/software/products/ias/devuse.html )
    then make own oc4j directory and install this version. This will work!
    Note that if you work with bc4j you need to adjust your configuration
    according to this doc:
    http://otn.oracle.com/products/jdev/htdocs/bc4j9ioc4j.html
    and do the configuration manually.
    You will never have to reinstall oc4j and if for any reason the oc4j does not work properly, you can simply delete the oc4j directory and setup a clean one.
    succes!
    greetz jaime

  • OC4J and BC4J Runtime installation for Solaris (Unix)!

    We have successfully installed, configured and deployed JSP/BC4J apps using OC4J and BC4J on Windows NT/2000. However, our production environment is Solaris.
    We have installed OC4J on Solaris, with some difficulties. How/where is the installation process for the BC4J Runtime Installation? The download (bc4j-ojsp.zip) for this utility is Windows only.
    Is there a method or process to install BC4J Runtime on Unix? If not, we are stuck.
    We cannot use JServ (servlet limitations) and refuse to use OSE (to many issues).
    Any guidance or assistance would be greatly appreciated...
    JDeveloper 3.2.3
    iAS 1.0.2.2
    Solaris 8
    JDK 1.2.2_08 (Unix)
    Dean

    Stephan,
    I have located multiple "connections" files and will remove all but the default located in the OC4J classes directory. We have been developing with JDeveloper and it often created multiple connections files that appear when you "jar" project components.
    We also installed JDK1.2.2_008 and are using this. However, when I use the classpath method of starting OC4J, I receive numerous errors. Using the jar method, everything works, with the exception of BC4J apps. I'll have to look into the errors more.
    Thanks for the response. At least I know one other person (organization) is using this successfully. I hope to join the "success" crowd tomorrow!
    Thanks again...
    Dean

  • How can I enable the ias transaction on IBM AIX.

    Hello:
    I have a question.I install the ias sp1 for aix. ias can't enable the
    trancsaction.
    I find if you want to disable the transaction on NT.You can disable
    through the kregedit-> software\iplanet->Application
    Server->6.0->CSCO->TXNMGR->isEnable=0.
    You can get the image "Transactions aren't enable on the server" in ias
    admintool.and you can't config the transaction.
    I install the ias sp1 on IBM AIX.I find I can't enable the
    transaction.Like I disable the transaction on NT. I try to enable the
    transaction.I use the db_setup.But I can't enable the transaction.How can I
    do? Please help me!!
    Thank you.

    Hi,
    If you want to enable the transaction in AIX, use kregedit and enable the
    same way as you enabled in NT. db_setup is not a utility to enable
    transactions, where as to enable the data source for processing transactions.
    Regards
    Raj
    "Dr.K" wrote:
    Hello:
    I have a question.I install the ias sp1 for aix. ias can't enable the
    trancsaction.
    I find if you want to disable the transaction on NT.You can disable
    through the kregedit-> software\iplanet->Application
    Server->6.0->CSCO->TXNMGR->isEnable=0.
    You can get the image "Transactions aren't enable on the server" in ias
    admintool.and you can't config the transaction.
    I install the ias sp1 on IBM AIX.I find I can't enable the
    transaction.Like I disable the transaction on NT. I try to enable the
    transaction.I use the db_setup.But I can't enable the transaction.How can I
    do? Please help me!!
    Thank you.

  • Jclient and ias

    I made a local jclient application with bc4j (no ejb) which works fine, now I want to deploy the bc4j (ejb) things to ias. this works too
    but now every time i try to compile the jclient project, jdeveloper makes some jar files of the bc4j components (this takes some minutes). Is this necessary?
    By the making of the ias deployment , jdev also make a application module client file ( i have some client methods). If i try to use this client file in my jclient file it gives an exception. How do i implement this client methods in my jclient project.
    the behavior of the jclient appl. is totally different in local mode and ias mode. I am getting errors like record modified by other user. Is there a whitepaper on this topic.
    Do i need an ias for jclient apps or can I run it on a several machine without the need of an ias/oc4j like the way you run it inside jdeveloper.
    thanks,
    edwin

    I made a local jclient application with bc4j (no ejb)
    which works fine, now I want to deploy the bc4j (ejb)
    things to ias. this works too
    but now every time i try to compile the jclient
    project, jdeveloper makes some jar files of the bc4j
    components (this takes some minutes). Is this
    necessary?When you build a client project for an application in 3 tier mode by default a dependency is setup betwen the client project and the common profile of the middle tier project. The common profile is used to generated the jar containing the files required by the client. Every time you compile the client project this jar is regenerated. As an alternative you can manage this dependency yourself:
    In the client project settings dialog uncheck the common profile dependency. Instead add a new library to the client project which points to the jar produced by the common profile.
    >
    By the making of the ias deployment , jdev also make
    a application module client file ( i have some client
    methods). If i try to use this client file in my
    jclient file it gives an exception. How do i
    implement this client methods in my jclient project.The client file is a proxy that implements the interface containing the exported appmodule methods. The class in internally instantiated by the framework. You should be able to call yor methods by casting the apmodule reference to the custom appmodule interface. See the OnlineOrders\BatchClient sample.
    >
    the behavior of the jclient appl. is totally
    different in local mode and ias mode. I am getting
    errors like record modified by other user. Is there a
    whitepaper on this topic.
    What kind of exceptions? Can you elaborate.
    Do i need an ias for jclient apps or can I run it on
    a several machine without the need of an ias/oc4j
    like the way you run it inside jdeveloper.
    You don't need to deploy the ejb (actually the .ear file containing the ejb) to an ias instance. You can either use the embedded oc4j instance or the external standalone instance. Make sure to use the right config in the JClient application. I don't have the help system handy but I believe these topics are covered in the doc.
    Dhiraj

  • OC4J and FOP installation

    Hi,
    We would like to use the PDF printing of 3.0.1
    I am trying to install FOP but I do not have any knowledge in OC4J and Java ... so I am kind a lost right now.
    I am following the installation guide of OC4J standalone (http://download.oracle.com/docs/cd/B32110_01/web.1013/b28950/install.htm#BABIBGCA)
    I was wondering :
    1- do I need to install oc4j standalone in a separate Oracle Home ?
    2- There is already an OC4J installed in my db Oracle Home , I guess for emdbconsole. So , I created a new directory called oc4j_sa and unzipped the file. When I start OC4J with oc4j -start , it does not give me the prompt back. Then , I can access the web page with port 8888 (192.168.0.21:8888) , but 192.168.0.21:8888/em fails . So I cannot deploy the FOP war file.
    Any pointers or guidance would be great.
    Thanks
    Francis.
    P.S. :
    Oracle 10.1.0.5
    Oracle Linux (RH 4)

    OK, I finally got to the deployment of FOP but now it generates a corrupted PDF.
    Are there any log files that I can check ?
    I created a new Oracle_home for OC4J and ran "EM" to deploy FOP and everything worked like in the viewlet.
    Now I did the setup in APEX and set the following :
    Standard Support
    Print Server Protocol HTTP
    Print Server Host Address 192.168.0.21
    Print Server Port 8888
    Print Server Script /fop/apex_fop.jsp
    I created a sample application to test. In a report , I added the print link.
    When I clic Print, the pdf generated is corrupted and does not work.
    Thanks
    Francis.

  • Is there a group that is porting the firefox, thunderbird and/or seamonkey to IBM AIX(5.3, 6.1 and/or 7.1)?

    Just trying to find a newer version of firefox, thunderbird and seamonkey for my
    IBM AIX (5.3 and 7.1) systems.
    Wondering if anyone in this forum knows of anyone trying to port one of the
    latest version to AIX. (I am using firefox 3.6.28, thunderbird 3.1.20 and seamonkey 1.1.18)
    Really need to update these products. Unable to fully access a lot of sites.
    Would appreciate help locating a never version that runs on my system.

    Sorry, the situation hasn't changed ([https://support.mozilla.org/questions/935325 935325], [https://support.mozilla.org/questions/959919 959919]). I suggest you direct this question either at IBM support, or at the AIX forum.
    * [http://www-03.ibm.com/systems/power/support/index.html Support]
    * [http://www-03.ibm.com/systems/power/community/index.html Community]
    * The only [http://www.mozilla.org/firefox/all/ official builds] are for Windows, Mac and Linux.
    * The only [ftp://ftp.mozilla.org/pub/firefox/releases/27.0/contrib/ hosted contributed build] is for Solaris.
    * IBM only makes mention of [http://www.ibm.com/systems/power/software/aix/browsers/ Firefox 3.6.25].
    * I couldn't find any third-party builds more recent than 3.6.28.

  • RE: 1) Changing name and IP address of an AIX 4.2 Server 2)Using NAT

    Daniel,
    you (normaly) just have to :
    1) edit the $FORTE_ROOT/fortedef.sh fileand change the value of variable
    FORTE_NS_ADDRESS
    2) shutdown and restart forte environment
    3) put the new values in the control panel of the client and run !
    It worked on our site with the same configuration (Aix 4.2)
    Good luck
    De : Daniel[SMTP:[email protected]]
    R&eacute;pondre &agrave; : Daniel
    Date : vendredi 18 juin 1999 13:08
    A : [email protected]
    Cc : Jose Ignacio
    Objet : 1) Changing name and IP address of an AIX 4.2 Server 2)
    Using NAT to reach forte
    Hello Forte Users :
        I have 2 questions to make:
        1)
        I've installed a Forte Server Central Node (Release 3.0.F.2) in an
    IBM RS/6000  with OS AIX 4.2
        (The name of the server is Name_1 and the IP address is
    125.125.50.50 with mask 255.255.255.0)
        Nowadays we had to change the name and IP address of this server
    lets say to Name_2 and 125.125.60.60 with mask 255.255.255.0.
        After that we try to find any reference to old name and IP address
    in the forte directory and all of its subdirectories changing them to
    the new ones.
        After these changes we found than forte could'nt start the nodemgr
    server.
        We have too many reasons to avoid installing FORTE again.
        Does anybody know if I have to change anything more to make
    nodemgr server work.
        2)
        The second question is about NAT (Network Address Translation).
        To reach a Forte Server Central Node from a Forte Client we have
    to pass through a Firewall and NAT.
        We are researching and at this moment we can not reach the server
    from the client, has anybody any suggestion to correctly configure
    Forte (Client and Server) to use NAT between them.
        If anyone could help me I would be very pleased.
        Thank you very much in advance,
        Daniel Gonz&aacute;Lucas (EAM Sistemas Inform&aacute;ticos SL, Spain,
    e-mail: [email protected])
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    >> 15 Mins is not enough for completely the replication.
    >> use repadmin /syncall /aEpd   - for force replication.
    >> Wait 3 hrs minimum.
    Regards,
    Biswajit
    MCTS, MCP 2003,MCSA 2003, MCSA:M 2003, CCNA, Enterprise Admin, ITIL F 2011
    Blog:
      Script Gallary:
      LinkedIn:
    Note: Disclaimer: This posting is provided & with no warranties or guarantees and confers no rights..

  • OC4J and Oracle forms causes ie or firefox to not respond when running form

    When I run a form in Oracle Forms 10g, I have OC4J running, and have the following displayed:
    E:\Windows\system32>E:\DevSuiteHome_5\jdk\bin\java -Doracle.security.jazn.confi
    g=E:\DevSuiteHome_5\j2ee\DevSuite\config\jazn.xml -Doracle.home=E:\DevSuiteHome_
    5 -DORACLE_HOME=E:\DevSuiteHome_5 -jar E:\DevSuiteHome_5\j2ee\home\oc4j.jar -use
    rThreads -config E:\DevSuiteHome_5\j2ee\DevSuite\config\server.xml
    07/11/20 23:11:44 Warning: Error reading transaction-log file (/E:/DevSuiteHome_
    5/j2ee/DevSuite/persistence/transaction.state) for recovery: premature end of fi
    le
    07/11/20 23:11:44 Forced or abrupt (crash etc) server shutdown detected, startin
    g recovery process...
    07/11/20 23:11:44 Recovery completed, 0 connections committed and 0 rolled back.
    07/11/20 23:11:44 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    initialized
    07/11/20 23:18:10 FormsServlet init():
    configFileName: E:\DevSuiteHome_5/forms/server/formsweb.cfg
    testMode: false
    I am running vista, and have the latest version of the dev suite. Does anybody know how I can fix this problem?

    You cannot use Internet Explorer on Windows Vista to run Web Forms.
    <p>But you CAN run web forms through Netscape or Firefox. But you first need to disable Java in the browser.
    <p>And to run OC4J on Vista, you need to set its compatibility mode to Windows XP.
    <p>See my notes on OC4J and "Browser Settings" in this thread:<br>   
    Forms 10g installed and running on Windows Vista

  • Report display is different in report builder, local oc4j and app server

    Hi guys,
    we upgrade reports from sql report writer into report 10g. In the report 10g builder,
    the report format looks fine. but if i use the url as below
    http://applicationserver/reports/rwservlet?report=test.rdf&userid=username/password@service&desformat=pdf&destype=cache
    so the format will be mess up whatever i use this url in my local oc4j or i deployed it into 10g application server. and the format is different in oc4j and application server. Why this issue happend?
    Thanks in advance,
    Appcat

    Hello,
    They are a Fix Pack higher than you which may explain why it's broken on their server.
    Download the Fix Pack for R2 and see if you can duplicate the issue.
    Thank you
    Don

  • How to make OC4J and IIS on diffrent machines ?

    Hi,
    How to make OC4J and IIS running diffrent machines. following document tells use "standalone ONS daemon",Can anybody tell what standalone ONS daemon means and steps to be done to make IIS working on diffrent machine
    http://download-west.oracle.com/docs/cd/B25221_03/web.1013/b25211/oc4jplugin.htm#i638738
    Thanks & Regards
    Vino joy

    sender,
    the quantize menu is in the top info box in the arrange.
    if you double click on it, an extended parameter box appears with a lot of quantizing options. also RTFM about this bit.
    in the sample editor, there is an audio quantize feature.
    but it is old, and probably hasn't been updated in ten years........try it, you
    'll prolly hate it.
    there is also a quantize audio/groove plug, in the special menu.
    it works....sorta.
    if you're talkin' drums, on seperate tracks, like kik on one, and snr on the next, etc., try strip silence to cut the loop/file up, then select same in the arrange trk and quantize this, as above. (info box).
    this does work well provided you know just where you want the feel to be.
    you could also try making a groove template of the original clip/loop and use this as a timing reference.
    this also works well if you can get a clean footprint of the audio.
    best,
    DR9

  • EAP-TLS Win2003 CA and IAS...not checking CRL?

    Hi
    I've got EAP-TLS setup and working using Win2003 CA and IAS as the RADIUS backend. I've issued certs to my wireless users, and now I want to revoke a certificate, so in the CA, I revoke the cert and then under Revoked Certs I click on publish...yet the user can still authenticate and communicate. How can I configure the IAS to check the CRL? Thanks

    Hi,
    I'm battling to setup EAP-TLS with AP1200,windows AD 2003 and IAS.Are there any funny tricks in setting up
    EAP-TLS with IAS.
    On the AP1200 I keep getting AAA unsupported.
    regds
    Johnny

  • How Standalone OC4J and the Oracle Application Server linked to each other

    Hi ,
    Please let me know what is the relation between a Standalone OC4J and the Oracle Application Server ?
    In my application The Oracle Application Server is installed in C drive and there is a Stand alone oC4j .
    Please tell me how they are linked to each other .
    Thank you .

    It depends on your need and what features and functionality of Oracle Application Server you are interested in. Note that OC4J is a component of Oracle Application Server that can run as a standalone component or within Oracle Application Server. Question #6 in earlier mentioned FAQ document states:
    OC4J standalone is J2EE 1.3 compatible (1.4 and 1.5 too in later releases of OC4J) and is able to be used in both development and small scale production environments. OC4J standalone provides its own inbuilt HTTP/S listener to allow clients to execute Web applications that it has deployed. Application deployment and server configuration of OC4J standalone is performed by the manual editing of a simple set of XML files.
    For large scale enterprise deployments, the Oracle Application Server product is likely to be more suitable with its comprehensive feature set including Oracle HTTP Server, process monitoring and management capabilities, and its configuration and management console.
    So if you are happy with what you see in standalone OC4J and scalability isn't an issue for you, you can stay with standalone OC4J and don't need to move to Oracle Application Server.
    PS: If you do decide to use OC4J that's embedded with Oracle Application Server, you can't move your standalone OC4J inside Oracle Application Server. You will have to reconfigure embedded OC4J again (as you might have done with standalone OC4J) and redeploy your applications.
    Hope this helps.
    Thanks
    Shail

  • Is the Lastest OC4J and AS9i work with oracle 8i ?

    Hi, a quick question:
    Is the lastest OC4J and Oracle AS9i works/compatible with Oracle 8i?

    Yes, you can use OC4J and Oracle9iAS with Oracle8i also.
    -Arun

  • Why is it that directory server and IAS will not install through a remote Terminal Services session??

     

    Hi,
    I think this can be done in Unix, using telnet, you may log into the
    system and install it.
    Regards
    Raj
    Mozkill Williams wrote:
    why is it that directory server and IAS will not install through a
    remote Terminal Services session??
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

Maybe you are looking for

  • Can't update or install Itunes In Widows 7

    I have tried to update my Itunes and keep getting an error 7 (Windows error code 127).  I have tried Uninstalling all Apples Itunes and Icloud in the uninstall portion of Control Panel and deleting all files related to the Itunes (64bit) version and

  • Can I do that???

    is it possible to put my own DVDs on to itunes and then on to my iPOd video? PC   Windows XP Pro   g-drive

  • BPC DeleteOlapDimFromCube error  and Analysis Sevices error (-2147221421)

    Attempted to process a dimension in BPC and encountered the following error message: -DeleteOlapDimFromCube : Item not found in collection -Dimension is locked because it is currently being used in a cube. Remove the dimension from the cube Went to A

  • Update date field to database

    Hi All, I tried to update a date field to my database by using dataprovider, however, I got the following error "java.lang.RuntimeException: Number of conflicts while synchronizing: 1 SyncResolver.INSERT_ROW_CONFLICT row 1 Can't infer the SQL type to

  • Airport extreme needs manual restarts

    My airport extreme serves also as a router directly linked via ethernet to a cable modem.  When it's up and running it works beautifully. However almost everyday at some point the airport extreme loses its connection to the modem. So not only do I ha