Does Oracle Application Server (10.1.3.4.0) support JSF 1.2?

Sorry for the double post, but I realized this was more appropriate in the OC4J forum so posted it there. Not sure how to delete this one :-(.
I am trying to migrate from JSF 1.1 to JSF 1.2 on OC4j 10.1.3.4.0 and am running in to problems. I recently stumbled on this post:
http://kjvarga.blogspot.com/2008/12/oc4j-1013-does-not-support-jsf-12.html
Which reads as follows:
I spent a very frustrating day wading through the version soup that is JavaServer Faces and trying to deploy a JSF 1.2 app on on OC4J 10.1.3 container. To save you a lot of time, OC4J DOES NOT SUPPORT JSF 1.2.
This technical paper explains that OC4J 10.1.3 (all versions) supports Servlet 2.4, JSP 2.0 and JSF 1.1.
http://www.oracle.com/technology/tech/java/oc4j/1013/whitepapers/OC4J-FOV-10131.pdf
And this handy webpage explains that "JSF 1.2 is the latest release and it works with servlet 2.5 and jsp 2.1". So obviously it's not compatible. It also details all the versions of Java technologies that each JSF version relies upon.
http://www.roseindia.net/jsf/jsf-versions.shtml
Is this true? I can't use the JSF spec released in 06 on the most current version of oracle application server? Could someone please confirm/deny/shed some light?
Thanks so much,
Yeuker
Edited by: yeuker on Jun 29, 2009 10:54 AM

Found a bit more information located here:
http://wiki.glassfish.java.net/Wiki.jsp?page=JavaServerFacesRI
See the section entitled
"Do I have to use a JSP 2.1/Servlet 2.5 container with the Mojarra version 1.2?" which states:
If you're using JSPs for your view descriptions, then yes, you will need to use a JSP 2.1/Servlet 2.5 compliant container. However, if you're using another view technology, such as Facelets or JSFTemplating, you can run JSF 1.2 within a Servlet 2.4 container with out issue.
Now here is the part that may make me look like a newb... not sure if I am "using JSP's for my view descriptions"... what does that mean anyway?
I dont think I am not using Facelets or JSFTemplating. I'm just using standard JSF... All of my pages end in jsp and the standard faces servlet that makes all *.faces requests go through the faces controller servlet. There is really no JSP EL code in my faces pages, just standard jsf tags h:form, f:selectItems, h:inputText etc...
So my question is... am I using JSP's for my view descriptions?

Similar Messages

  • Does oracle application server 10.1.3.3 supports IPV6

    hi
    Anyone let me know does oracle application server 10.1.3.3 supports IPV6.
    thanks in advance
    Arunachalam

    Hi
    I believe this is covered in the online documention:
    http://download.oracle.com/docs/cd/B32110_01/core.1013/b28944/opmnxml.htm#BABIICIJ

  • Does oracle application server's plsql program accord with corba criterion?

    Does oracle application server's plsql program accord with corba criterion?

    You need to purchase a have a support contract to have access to that.
    You can try upgrading to the latest JDK 6 an latest WLS 10.3.6, you have the chance the issue is fixed in the latest 11g release.
    Best Regards
    Luz

  • Migrating from Weblogic to Oracle Application Server 10g

    Hello,
    To respond to this post you will need some basic familiarity with Weblogic.
    I am currently using Weblogic Server 8.1.
    I have an admin machine which is on its own physical hardware, and multiple managed servers. The admin server is a single point of management for all of the managed servers. Each managed server lies on it's own physical hardware and are managed remotely from the admin server.
    Does Oracle Application Server have this type of architecture?
    Lets say I have salesApp.ear and I want to deploy it across multiple physical machines, where would I administer the various physical machines from, and how would I create an instance on each machine?
    Would it be an oc4j instance or an AS instance? What is the difference?

    Forget about this!
    You need a JEE5 server to work with 11g.
    In theory you can develop application for OAS 10.1.3.1 but you must be very very careful which components you use. One new component and you are not able to run it on OAS 10.1.3.1
    If you have to run your apps on OAS 10.1.3.1 stay with JDEV 10g.
    Timo

  • Stop poodle vulnerability in oracle application server

    Hello guys.
    Our Enterprise is using Oracle Application Server in front of oracle database. we using oracle wallet manager(Installed with Oracle client 10) to create self sign certificates. as you may know wallet manager in v 10 has some limitation in key size or ... (i don't know exactly the limitation and i hope you could help me on it ).
    when we want to issue a certificate at first we create a certificate request with wallet manager and then issue based on certificate in windows server CA.
    now i have some question:
    1- what are the limitation of using wallet manager in V10 to issue the self sign certificate?
    2- is there another way to create self sign certificate without wallet manager V10?(when i try the newest versions oracle application failed to open a certificate)
    3- and my most important question:
    can i stop poodle attack in oracle application? (i red somewhere that poodle attack doesn't apply in TLSV1. so i guess its better to ask my question this way:
    does oracle application server support the TLSV1? )
    i really appreciate any sort of help.
    thank you.

    Hi Muhammad,
    What do you mean with BI?. do you forms & rep servers or discoverer.
    Anyhow you can download BI separately the contents of BI is as following:
    Oracle Business Intelligence Discoverer
    Oracle HTTP Server
    Oracle Application Server Containers for J2EE (OC4J)
    Oracle Enterprise Manager 10g Application Server Control
    Oracle Application Server Web Cache
    Oracle Application Server Reports Services
    Also you can download Forms & report servers separately.
    Regards,
    Hamdy

  • Client-cert auth impl in web.xml does not work in Oracle Application Server

    Hi,
    I am new to implementing security features on the web applications.. I have developed a new web service using jdev1012 and deployed in OAS 10.1.2. Its working fine according to the business requirements, but I am in need of implementing client-cert authentication to enable the web service available to only those who have client certificate.
    My server details are:
    Oracle Application Server 10g Release 2 (10.1.2)
    Server certificate is in place and SSL mode have been already enabled.. able to access my web service through https://<mydomain.com>/myws/TreqWS as well able to see the WSDL file through https://<mydomain.com>/myws/TreqWS?WSDL.
    I tried to include the following in my web.xml file as part of implementing CLIENT-CERT authentication.
    <security-constraint>
    <display-name>SecurityConstraint</display-name>
    <web-resource-collection>
    <web-resource-name>WSCollection</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>CLIENT-CERT</auth-method>
    <realm-name>WSCollection</realm-name> <!-- am not sure about this realm-name and its purpose -->
    </login-config>
    It is not woking as expected, though I have restarted my oc4j container after including this content to the web.xml file. i.e, I am able to invoke the web service though my sample java client program, though I donot have client certificate/keystore.
    I believe I am missing something..Can anyone help me in this regard to implement CLIENT-CERT authentication successfully?
    Thanks,
    Ms

    I am having the same problem with doc and xsl. I have added this
    <mime-mapping>
    <extension>xls</extension>
    <mime-type>application/vnd.ms-excel</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>doc</extension>
    <mime-type>application/msword</mime-type>
    </mime-mapping>
    to my web.xml. I even restarted the server. I still see doc and xsl in binary.
    Is there some other setting that needs to take place?
    I am using WL6.1 with fixpack 1.
    I can see the doc and excel files in the browser if I don't go through the weblogic
    server. That just confirms it's not my browser.
    Kumar Allamraju <[email protected]> wrote:
    <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
    <html>
    It works fine for me in 6.1 SP1.
    <br><br>
    If the following doesn't work , can you
    <br>try application/winword instead of application/msword?
    <p>--
    <br>Kumar
    <p>Siming Mu wrote:
    <blockquote TYPE=CITE>Hi,
    <p>I setup in my web.xml a mime mapping as follows,
    <p><mime-mapping>
    <br><extension>doc</extension><mime-type>application/msword</mime-type>
    <br></mime-mapping>
    <p>When I specify a test.doc url, the doc file appears in my browser
    as
    binary data
    <br>instead of download.
    <p>Please reference change request 055002, which decribes this problem. 
    According
    <br>to edocs, it has been fixed in wls6.1sp1.
    <p>But I am seeing it fixed.  Am I doing anything wrong? Thanks.
    <p>Siming</blockquote>
    </html>

  • Developing for a Oracle Application Server with SSO

    Hello there,
    I'm developing an application (Java) that will be deployed as a partner application within an Oracle Application Server 10g at my client. This Oracle instance has a SSO already configured, and my app will use this Identity Manager (consuming the cookie). The problem is that at my company we don't have a SSO system configured, not even an Oracle Application Server, just a simple Oracle XE 10g to hold data. So I'm wondering how can I do to develop my application and test it.
    I was looking forward to install an OAS and configure an SSO to validate my implementation, but the download link provided by Oracle is broken (http://www.oracle.com/technology/products/ias/index.html). Another alternative that I thought of was to install an OC4J and configure a Java SSO to simulate the behavior of OSSO, and make my app the cookie set by it. But OC4J supports only til Servlet 2.4 and my app is using 2.5...
    And to complete, I cannot access my client's environment. I'm supposed to write a Deploying document telling him how to deploy my app and then try to access it through Internet.
    Does anyone have an idea of how can I develop and test my app in my company's environment?
    Thanks in advance,
    Bruno Krebs.

    Apache 2.0 based OHS is located in Oracle Application Server Companion CD.
    Pavna

  • Oracle application server 10g version checking scripts

    Hi does anyone know how the script to check the application server 10g version on R12.1.3, without checking it on the form.

    Hi Tunde,
    You can get the detailed version of all the 10.1.2 and 10.1.3 components using the below commands
    A. 10.1.3 Component Versions
    ========================
    1. Login in to Putty as application file system owner
    2. Source the applications env file under $ORA_CONFIG_HOME/10.1.3 directory.
    3. cd $ORACLE_HOME/OPatch
    4. opatch lsinventory -detail >> inv.out
    5. Review the inv.out file and check for the Oracle Application Server and other component versions.
    B. 10.1.2 Component Versions
    ========================
    1. Login in to Putty as application file system owner
    2. Source the applications env file under $APPL_TOP
    3. cd $ORACLE_HOME/OPatch - This will be pointing to 10.1.2 Home
    4. opatch lsinventory -detail >> inv.out
    5. Review the inv.out file and check for the Oracle Application Server and other component versions.
    I hope this clarifies your queries, Please let me know the same.
    Regards,
    Thiagarajan.

  • Oracle Application Server 10g Cloning - Urgent

    Hello All,
    I have been given a new assignment which involves Oracle Applications server 10g, i am new to oracle application server and hoping that some one will please clarify my doubts.
    i have to clone a production machine (Solaris 10) which has oracle AS 10g, this machine had oracle database 10g before and just the application server was installed on it, i have to clone a test environment for this machine, i have the following two doubts
    1) Is it possible to just install Oracle Application server 10g on a machine which already contains oracle 10g database, if so then what about the database that gets installed when installing Oracle application server 10g.
    2) How to clone the above production machine, should the oracle 10g database be cloned first and then oracle application server 10g cloned on the new machine?
    Eagerly waiting for a reply

    user12077492 wrote:
    i have to clone a production machine (Solaris 10) which has oracle AS 10g, this machine had oracle database 10g before and just the application server was installed on it, i have to clone a test environment for this machine, i have the following two doubts
    1) Is it possible to just install Oracle Application server 10g on a machine which already contains oracle 10g database, if so then what about the database that gets installed when installing Oracle application server 10g.
    2) How to clone the above production machine, should the oracle 10g database be cloned first and then oracle application server 10g cloned on the new machine?1) Yes, it is possible. The DB that comes with OAS as the infrastructure DB for it (I presume you are installing a full OAS with infrastructure and midtier both) does not affect the DB you already have on your system ... obviously ... as long as you install them in their separate homes.
    2) I always say, this term cloning is somewhat loosely used in general communication meaning making copies. In OAS context, Cloning works for middletiers only. You cannot clone an infrastructure.
    To make a redundant/alternate environment for OAS, you can do the following:
    - a) either use the same infra on machine 1, and install another midtier and register with the same infra.
    - b) or install a separate infra on machine 2, and also a midtier registered with it.
    Here for the first option a), Cloning can be used because you can (*only*) clone a middle-tier. There are pros and cons for this setup, including that you share the SSO, and OID, and hence users and groups bases, etc on those two environments - something that you may or may not want. But then there are also some way-outs to avoid them or minimize their effects too. Please see the following reference for cloning and search on Metalink for how to minimize effects, once you get better familiar with the processes.
    Oracle® Application Server Administrator's Guide
    10g Release 2 (10.1.2)
    B13995-08
    [10 Cloning Application Server Middle-Tier Instances|http://download-uk.oracle.com/docs/cd/B14099_19/core.1012/b13995/cloning.htm#BCGBDIDF]
    For b), you will need to Stage a server as defined in this reference.
    [11 Staging a Test Environment from a Production Environment|http://download-uk.oracle.com/docs/cd/B14099_19/core.1012/b13995/prodtest.htm]
    There are some notes on Metalink which address issues about benefits or procedures of Cloning and Staging an environment too.
    There are some other ways to export/transport your applications to another instance across DB. Please also read about them.
    hope that helps!
    AMN

  • Oracle Application Server 10g Installation Guide for Windows

    The link to Oracle Application Server 10g Installation Guide for Windows on the OTN Web Site don't work. Using search on site does not turn up any installation document for Oracle Application Server 10g.
    How can I find the Installtion Guide or the Quick Installtion Guide for Oracle Application Server 10g for Windows?

    Hi,
    The docs you seek are available through the OTN documentation pages at: http://otn.oracle.com/documentation/index.html.
    Click on the link for "Oracle Application Server Release 10g (9.0.4)" and then on the "View Library" link for part B10468_04 - Oracle Application Server 10g Online Documentation 10g (9.0.4.0.0) for Microsoft Windows.
    The Docs are located under the Documentation tab.
    Alternatively, here is the direct link to the Documentation Tab interface of the Library:
    http://download.oracle.com/docs/cd/B10468_04/docs.htm
    Regards,
    Les

  • Problem while configuring webutil on oracle application server 10g(9.0.4)

    hi,
    I have configured webutil with oracle application server 10g(9.0.4).JInitiator 1.3.1.17 is installed.
    I did everything according to webutil manual.Then i developed a form using developer suit 10g (9.0.4).
    and successfully compiled and attached webutil library.then i subclass
    webutil object group from webutil.olb into my form,that is also
    subclassed successfully.Form has also been compiled and saved
    successfully.
    also configured my formsweb.cfg,forms90.conf,default.env according to webutil documentation.
    {color:#993366}Now when i run this form from client, it does not show form in the
    browser and shows a message on the client browser console as follows{color}.
    {color:#0000ff}*Applet oracle.forms.webutil.common.RegisterWebUtil*
    {color} {color:#993366}After this message,It does nothing and if i refresh browser,it shows following message in the browser' Console.{color}
    {color:#0000ff}*Applet oracle.forms.engine.Main notinited.*{color}
    Note:In the browser ,loading java applet is also visible.
    how should i resolve this problem?
    any suggestion?
    Its urgent.
    Regards,
    abbasyazdani

    Refer this metalink note,
    566628.1 How To Install Webutil on 10g Oracle AS
    [email protected]

  • How to deploy oracle forms on oracle application server 10g release3

    i have installed oracle database 10.1.0.5 and oracle application server 10.1.3.1.
    I have to run forms using this setup.
    I was unable to find which version of oracle application server forms and reports should i install to run.
    I would appreciate if someone can guide me.
    Regards.
    Sid.

    Application server 10.1.3 does not have Forms. You should install 10.1.2.0.2 version. See Re: Forms / Reports services in 10gAS Release 3

  • How to Setup SSL on Oracle Application Server 10g Release 2 (10.1..2)

    Hi All,
    Can anybody tell me How to setup the SSL on Oracle Application Server 10g Release 2 (10.1.2).
    I have all the required documents like
    1. Oracle Application Server Portal Server Configuration Guide.
    2. Oracle Application Server Web Cache Configuration Guide.
    3. Oracle Application Server SSO Administration Guide.
    I tried to follow all this documents but still i am not able to set SSL for Oracle Portal Server.

    The Portal Configuration Guide, available on OTN at http://www.oracle.com/technology/documentation/appserver1012.html does provide some very specific information on how to set up OracleAS Portal.
    Section 6.3.2.1 Configuring SSL for OracleAS Portal describes various configurations, such as:
    SSL to OracleAS Single Sign-On
    SSL to OracleAS Web Cache
    SSL Throughout OracleAS Portal
    External SSL with Non-SSL Within Oracle Application Server
    For larger enterprise configurations, you can refer to the Enterprise Deployment Guide.
    Can you give a bit more background on what you are trying to set up? Which scenario, what sort of hardware, software versions, and so on.
    Regards,
    Pete

  • Configuring Oracle Application Server to use a user friendly url

    Hi All,
    I am having trouble configuring the apache httpd.conf file within an applicaton server to be able to use user-friendly urls for the infrastructure identity management tools server. I also need this for security reasons as well as hardware reasons - loadbalancing.
    At the moment I have a standard setup, whereby the sso application server is using port 7777. I would like the user not to enter the port, but to enter just a standard url, like http://login.<company>.com.au, so that if the user needs to modify oid using the oiddas web application, they can enter something like http://login.<company>.com.au/oiddas/ rather than http://<machine host name>:7777/oiddas/. This would also be used by portal for sso logins.
    From the standard installation, Apache was configured as follows:
    Port 7777
    Listen 7777
    ServerName <machine host name>
    DocumentRoot <root document folder>
    Now reading the documentation from the Oracle Application Server Installation notes for the Http Server, they document how to do this (in the loadbalancer section - this will eventually be used in the hardware setup):
    Port 80
    Listen 7777
    Listen 80
    # Virtual Hosts
    # This section is mandatory for URLs that are generated by
    # the PL/SQL packages of the Oracle Portal and various other components
    # These entries dictate that the server should listen on port
    # 7777, but will assert that it is using port 80, so that
    # self-referential URLs generated specify www.oracle.com:80
    # This will create URLs that are valid for the browser since
    # the browser does not directly see the host server.oracle.com.
    NameVirtualHost <machine ip>:7777
    <VirtualHost <nameofmachine>:7777>
    ServerName login.<company>.com.au
    Port 80
    </VirtualHost>
    # Since the previous virtual host entry will cause all links
    # generated by the Oracle Portal to use port 80, the server.company.com
    # server needs to listen on 80 as well since the Parallel Page
    # Engine will make connection requests to Port 80 to request the
    # portlets.
    NameVirtualHost <machine ip>:80
    <VirtualHost <nameofmachine>:80>
    ServerName login.<company>.com.au
    Port 80
    <VirtualHost>
    Note that I used slightly different names for the url's rather than the oracle names www.oracle.com and server.oracle.com
    Now after applying this, I noticed not only could I not go to the oiddas from the original machine name, but also couldnt go there from the new machine name.
    Also I was not even able to go to the standard index page whereby you can go to the enterprise manager for the application server, from either names.
    The following urls provide me with "The Page Cannot Be Displayed" error message:
    http://login.<company>.com.au:7777/
    http://<nameofmachine>:7777/
    The following urls provide me with "Page Under Construction" error message:
    http://login.<company>.com.au/
    http://<nameofmachine>/
    Could someone please tell me why this is the case, considering I am using the installation procedures Oracle has published within the Oracle Http Server Admistrators Guide (http://download-west.oracle.com/docs/cd/B14099_19/web.1012/b14007/netconf.htm#sthref379).
    Cheers
    Rodney

    Hi Rondey,
    Ik think that I can see your probleem.
    Just change the following line at your httpd.conf, then restart the component.
    First of all if the port is installed with nr. 7777. then the listen process will be on port 7778
    the second thing is just try to do the following steps
    ((Port 80 to Port 7777)))
    Listen 7778
    %%%% In loadbalancer section %%%%%%
    just add the following lines
    Listen 80
    Listen 8103
    Listen 8102
    NameVirtualHost *
    NameVirtualHost *:8103 or 80
    If you want to use this ports (8103 or 8102) for other site (url), then
    <VirtualHost *:80>
    ServerName <machine ip> or (host name)
    Hear from U,
    Regards,
    Hamdy

  • Configure OID 10.1.4.0.1 with Oracle Application Server 10.1.3.3

    Dear gurus,
    I have configured OID 10.1.4.0.1 and MRCA 10.1.4.0.1 on database 10.2.0.3 with Oracle Application Server 10.1.3.3 (HTTP Server and OC4J Server). it went well, i could login into my oid or sso page. then i deployed a simple jar file into OAS 10.1.3.3 and i updated few lines in mod_osso.conf on midtier 10.1.3.3, so it look like this :
    ==================================================================================================
    LoadModule osso_module libexec/mod_osso.so
    <IfModule mod_osso.c>
    OssoConfigFile /u01/oraias/midtier/Apache/Apache/conf/osso/osso.conf
    OssoIpCheck off
    OssoIdleTimeout off
    # Insert Protected Resources: (see Notes below for how to protect resources)
    # Notes
    # 1. Here's what you need to add to protect a resource,
    # e.g. <ApacheServerRoot>/htdocs/private:
    # <Location /private>
    # require valid-user
    # AuthType Basic
    # </Location>
    <Location /JABSUAT>
    require valid-user
    AuthType Basic
    </Location>
    <Location /HR>
    require valid-user
    AuthType Basic
    </Location>
    </IfModule>
    # If you would like to have short hostnames redirected to
    # fully qualified hostnames to allow clients that need
    ==================================================================================================
    my application faces name is HR, so i called the URL http://devel.sas.co.id:7778/HR/faces/HomeMenu.jspx, the output was sso login page, so i did login with username : orcladmin and password : oracle1 but it turned me error page on browser, it said :
    =========================================================
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    =========================================================
    and i found that in /u02/oid/Apache/Apache/logs/error_log.1249430400 contains these lines :
    [Wed Aug  5 09:13:33 2009] [notice] Accept mutex: fcntl (Default: sysvsem)
    [Wed Aug  5 09:13:33 2009] [warn] long lost child came home! (pid 4924)
    [Wed Aug  5 09:14:01 2009] [error] [client 172.16.2.14] [ecid: 1249438441:172.16.5.11:5080:0:2,0] File does not exist: /u02/oid/Apache/Apache/htdocs/favicon.ico
    [Wed Aug  5 09:14:04 2009] [error] [client 172.16.2.14] [ecid: 1249438444:172.16.5.11:5068:0:3,0] File does not exist: /u02/oid/Apache/Apache/htdocs/favicon.ico
    [Wed Aug  5 09:14:24 2009] [error] [client 172.16.2.14] [ecid: 1249438464:172.16.5.11:5093:0:2,0] \n[OSSO] E34: Unable to assure integrity of communication with SSO server.\n
    [Wed Aug  5 09:49:36 2009] [error] [client 172.16.2.14] [ecid: 1249440576:172.16.5.11:5074:0:20,0] \n[OSSO] E34: Unable to assure integrity of communication with SSO server.\n
    [Wed Aug  5 10:30:01 2009] [error] [client 172.16.2.14] [ecid: 1249443001:172.16.5.11:5096:0:25,0] \n[OSSO] E34: Unable to assure integrity of communication with SSO server.\n
    [Wed Aug  5 10:34:13 2009] [error] [client 172.16.2.14] [ecid: 1249443253:172.16.5.11:5102:0:26,0] \n[OSSO] E34: Unable to assure integrity of communication with SSO server.\n
    [Wed Aug  5 10:58:58 2009] [error] [client 172.16.2.14] [ecid: 1249444738:172.16.5.11:5093:0:40,0] File does not exist: /u02/oid/Apache/Apache/htdocs/favicon.ico
    [Wed Aug  5 10:59:09 2009] [error] [client 172.16.2.14] [ecid: 1249444749:172.16.5.11:5093:0:41,0] \n[OSSO] E34: Unable to assure integrity of communication with SSO server.\n
    Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server Server at devel.sas.co.id Port 7782
    Note : 172.16.2.14 is my pc and 172.16.5.11 is OID and MRCA's IP, please need your suggestion, Many Thanks.
    Regards
    Edited by: andes on Aug 4, 2009 9:23 PM
    Edited by: andes on Aug 4, 2009 9:28 PM

    Dear gurus,
    i have solved my problem, i re-run ssoreg.sh and re-configure mod_osso.conf, now it's working.
    Regards

Maybe you are looking for

  • Premiere elements 9 and windows 7 64 bit, installation and startup

    Installing pre 9 on my Dell Studio x64 with the mcAfee software did not work. I had to use msconfig to use selected start without mcAfee security center and adobe software, plus other software that had photoediting - before that I could not start pho

  • In LSMW while executing the specify file step logical file name and path.

    Hi , In LSMW , while executing the specify file step, logical file name and path is mandatory field to entry, but in some of other LSMW objects, these fields are not mandatory one, i want to know is it possible for me to do hide the logical file name

  • Mac equivalent to de-fragging?

    I have a five or six year old iBook which still runs well, especially since I installed the Tiger operating system. Just one thing though....I have an increasingly smaller & smaller amount of free space. I know a mac should run on a minimum of 10 gig

  • Query regarding Purchase Org assignment

    Hi All , I have a understanding that PORG assignment to PLANT is ALWAYS MANDATORY to create a purchase order in that plant but assignment of PORG to Company code is not mandatory ( as in case of Company group wide PORG i.e centralized PORG). Is that

  • Is it possible to treat a mpeg movie (selected area intensity profiles) with imaq ?

    From a mpeg movie file (recorded with a digital camera in grayscale colors), I want to create some windows fixed in a selected area (always the same during all the treatment). Then, from this window, integrate all the grayscale level data for each im