Oracle Containers for J2EE Deployment Guide???

Hi. I am trying to find a document referenced in the 10.1.3 EA1 help text, entitled Oracle Containers for J2EE Deployment Guide. I've searched the Oracle online documentation and the JDeveloper help text but haven't found this. Any pointers?
Johnny Lee

I didn't see anything in the 10.1.2 docset here:
http://download-east.oracle.com/docs/cd/B14099_16/nav/docindex.htm

Similar Messages

  • PDF PRINTING using Apache FOP and Oracle Containers for J2EE

    Hi,
    I am having major confusion about the pdf printing in Oracle XE and Apex 3.1.2.00.02
    It clearly states that this is an available option on the Oracle website.
    According to Apex there are two options for printing report regions.
    Standard - which is free
    Advanced - which uses BI and requires a licence
    Standard requires me to have Apache FOP (which is provided by Oracle in the Apex release) and Oracle Containers for J2EE (OC4J)
    Where my understanding of all this falls down is the part where I am downloading the Oracle Containers for J2EE and the license agreement states this cannot be used in a production system (only as a protptype). Can anyone clarify this? This is surely a required componenet and for the standard report printing which is supposed to be free.
    My problem is that I need to have a database system on a laptop that will go off site for a number of weeks. We need report printing options.
    Can anyone help with this. im desperate.
    Kind regards
    colin mclay

    no not yet with Application Server.
    I have tried to compare the settings to another installation with a separeted oc4j as described in the howto. But at the moment i found no mistakes.
    If i call the url adresse like:
    http://localhost:18101/fop/apex_fop.jsp
    i get:
    500 Internal Server Error
    Servlet error: java.lang.ClassNotFoundException: fop.apex__fop
    I installed it another time with these settings:
    Web Anwendung= .../fop.war (selected war file from apex install directory)
    Anwendungsname= fop
    URL zuordnen= /fop
    I would like to know if its possible to use the fop.war out of apex install directory with the Application server? In the standalone version (as described in howto) it works. But if you install it there you don't need to define an URL.
    Is the URL /fop correct or what do i have to insert there?

  • Do older versions of Oracle Application Server support Containers for J2EE?

    Do older versions of Oracle 9iAS support Oracle Application Server Containers for J2EE (OC4J)?
    I went to the our companies application server directory. I don't see an oc4j or j2ee directory.
    Thanks,
    Merced

    How far back are you looking? ANd what, in particular, are you looking for ...
    The history of the Oracle 'internet service' that I remember is roughly:
    Web Server 2.1 (mid 1990s)
    Web Application Server 3.x (mid 1990s)
    Oracle Application Server 4.0.x (late 1990s)
    Oracle Internet Application Server 1.0.x (2000)
    Oracle Application Server 8i (basically 1.0.2.22.2.z)
    Oracle Application Server 9i (9.0.2, 9.0.3)
    Oracle Application Server 10g (9.0.4, 10.?.1)
    Oracle had an initial J2EE container [attempt] with 4.0.x but that never really took off. I think that was really around the time of the last beta revisions for the JSP spec, and that's left us with the legacy of JServ apps. Seems like you would see OJSE, Oracle JSE (Java Server Engine?) in the docco and path.
    IIRC, the current OC4J lineage started with around IAS 1.0.2 and has moved forward on what is now OC4J. There were some opportunities in the early days to improve consistency in the naming and directory structure areas. That has some lineage from Ironflare's Orion engine and so occasionally you see 'Orion' in the messages.

  • Connection for the Oracle9iAS Containers for J2EE Failed.

    I tried to Create a Connection to Oracle9iAS Containers for J2EE Provided by Oracle9i JDeveloper and received an Invalid username/password for default (admin) upon testing my connection.
    My Oracle9iAS Containers for J2EE are started.
    I used the following:
    Username - admin
    Password - admin
    as suggested by Oracle9i Web Services Quickstart Install documentation.
    Any idea. Please help.
    Thanks,
    Rudy

    I am assuming you followed the instructions/pictures in:
    http://otn.oracle.com/tech/webservices/htdocs/quickstart/quickstart902.html
    and particularly the OC4J startup:
    http://otn.oracle.com/tech/webservices/htdocs/quickstart/config.gif
    and your JDev app server connection, step 3 looks like:
    http://otn.oracle.com/tech/webservices/htdocs/quickstart/13.gif
    If this is true, then there are likely three possibilities:
    1. If you copied verbatum the picture settings shown in 13.gif picture pointed to above you should make sure you installed JDeveloper in the d:\jdeveloper directory. 13.gif is assuming you started the OC4J in JDeveloper in d:\jdeveloper directory rather than a separate OC4J outside of the JDeveloper path. If your settings are different set them to fit your environment.
    If you started a separate OC4J, then edit the JDev app server location in 13.gif where your OC4J is installed (e.g. <OC4J_Location>\j2ee\home).
    2. The other common problem here is covered in the grey notes in that quickstart install guide immediately following the setup of the JDev connection. If you are using the JDeveloper shipped as part of Oracle9iDS (i.e. build 822 - see Help->About to get the build number), there is some edits described there that are required for the OC4J file server.xml.
    3. If you are using JDeveloper 9.0.3 not 9.0.2 (build 988), then you might be better off following the instructions to get it going from a Web services perspective at:
    http://otn.oracle.com/tech/webservices/htdocs/quickstart/quickstart903.html
    Hope this helps.
    Mike

  • JDBC Connections in Oracle9iAS Containers for J2EE

    does anyone have an idea as to what jdev libraries aside from j2ee and jdbc that i can include to get the OTN article "JDBC Connections in Oracle9iAS Containers for J2EE" to at least compile?
    Thank you
    Jim
    The url for the excellent article is;
    http://www.oracle.com/technology/sample_code/tech/java/codesnippet/j2ee/jdbc/JDBC_in_J2EE.html

    gday to you mate!
    The solution is probably very simple it is just that i can't see it. i am getting the following messages from jdev9.0.5.2 build 1618 debug with the j2ee and Oracle JDBC libraries on this code:
    60     javax.naming.InitialContext ic = new javax.naming.InitialContext();
    61     oracle.jdbc.pool.OracleConnectionPoolDataSource ds = (oracle.jdbc.pool.OracleConnectionPoolDataSource)ic.lookup("jdbc/pool/OracleConnectionPoolDS");
    62 oracle.jdbc.pool.OraclePooledConnection pc = ds.getPooledConnection();
    63 oracle.jdbc.driver.OracleConnection conn1 = pc.getConnection();
    Project: C:\JDev\jdev\mywork\DVDOrdering\ViewController\ViewController.jpr
    C:\JDev\jdev\mywork\DVDOrdering\ViewController\src\view\InsertOrder.java
    Error(62,86): incompatible types; found: javax.sql.PooledConnection, required: oracle.jdbc.pool.OraclePooledConnection
    Error(63,82): incompatible types; found: java.sql.Connection, required: oracle.jdbc.driver.OracleConnection
    Thanks again!

  • Install Containers for J2EE on 9iAs release 1

    Hi,
    Is it possible to install Oracle9iAs Containers for J2EE on Oracle9iAs Release 1?
    How?
    Thanks a lot.

    you can install 'Oracle9iAS J2EE and Web Cache' version which has built-in OC4J if you do not want to install the standalone flavor.
    Addition documentation is available at:
    http://technet.oracle.com/software/products/ias/devuse.html

  • Cannot downlad OAS Containers for J2EE 10g (10.0.3)

    Hi,
    I cannot download "Oracle Application Server Containers for J2EE 10g (10.0.3)" referenced from the OTN home page (http://otn.oracle.com/index.html) from within the Oracle firewall (haven't tried outside it yet).
    Link Used:
    Oracle Application Server Containers for J2EE 10g (10.0.3)
    http://otn.oracle.com/software/htdocs/eaplic.html?http://download.oracle.com/otn/java/oc4j/1003/preview/oc4j_extended.zip
    Error Recieved:
    Sorry, this page was not found (Error Document 404)
    http://otn.oracle.com/errors/404.html
    Get the same error here:
    http://download-west.oracle.com/otn
    -GK

    It would certainly be more helpful if the website simply redirected users to a web page that stated this fact like the Systems Assurance Center website does (http://sac.us.oracle.com/).
    The following is the message I get from the SAC site (which I tried after OTN):
    At the moment, you are not allowed to download from the Archive. Please click here to see the reason, and to find out more about your permissions.
    Archive Access Information
    Your IP address is: xxx.x.xxx.xx
    Our records show that you are in the GMT-5 time zone.
    We assume that your local time is Tue Aug 3 15:32:56 2004
    You have download access to the Archive from 18:00 to 05:59 on Monday - Friday, and all day during Saturday and Sunday.
    Right now, you are not allowed to download software from the Archive. You will gain access to the Archive in 2 hours and 28 minutes.
    I certainly find this more informative than "Sorry, this page was not found (Error Document 404)".
    It would be great if someone could fix this. Unfortunately at this point, there is no way to distinguish this scenario from other networking failures.
    Thanks,
    GK

  • Cannot download OAS Containers for J2EE 10g (10.0.3)

    Hi,
    I cannot download "Oracle Application Server Containers for J2EE 10g (10.0.3)" referenced from the OTN home page (http://otn.oracle.com/index.html) from within the Oracle firewall (haven't tried outside it yet).
    Link Used:
    Oracle Application Server Containers for J2EE 10g (10.0.3)
    http://otn.oracle.com/software/htdocs/eaplic.html?http://download.oracle.com/otn/java/oc4j/1003/preview/oc4j_extended.zip
    Error Received:
    Sorry, this page was not found (Error Document 404)
    http://otn.oracle.com/errors/404.html
    Get the same error here:
    http://download-west.oracle.com/otn
    Note: This message was also inadvertently posted in the Member Feedback forum.
    -GK

    This was answered in the "Member Feedback" Forum" along with my feedback.....
    http://forums.oracle.com/forums/thread.jsp?forum=29&thread=257859&tstart=0&trange=15
    "Employees cannot download during business hours (6am to 6pm PST).
    OTN"
    -GK

  • Version 9.0.2 Oracle9iAS Containers for J2EE (OC4J) can not find the orion.jar file

    Oracle9iAS Containers for J2EE (OC4J)
    Version 9.0.2
    Oracle9iAS Containers for J2EE (OC4J) (19,789,999 bytes)
    when i unzip the oc4j_extend.zip, i can not find the orion.jar under j2ee/home diretory, how can start it?

    You're absolutely right. For some reason orion.jar isn't in that distribution. However there should be an oc4j.jar file in there, which behaves exactly as the orion.jar file would. So, any place in the documentation where it refers to orion.jar, just substitute oc4j.jar.
    Ryan

  • Best tool to use for j2ee deployment ?

    Hi,
    I've developed j2ee apps using NetWeaver Developer Studio. I am not using the component model in my applications yet.
    I use the deploy tool or the Netweaver Developer Studio to deploy my application. I've read that the deploy tool will be removed from the standard tools and that SDM should be used instead for j2ee application deployment.
    The problem is that with SDM you canot configure such things as Environment Ressource References or other informations contained in the ejb jar.
    Also, I don't like changing the source to make a deployment in NetWeaver Developer Studio as most deployment configs are associated with the runtime environment variables.
    What is the proposed solution for this ? Will SDM be adjusted in order to allow more customization in the ear file before deployment ?
    Are there any other suggestions ? What do you use ?
    Thanks.
    Thierry Dagnino
    Systems Architect
    Hydro Quebec

    Hi Thierry,
    I understand that you want to configure your apps in a way that you don't have to edit the deployment descriptors before the actual deployment, am I right? Then you can use substitution variables. A substitution variable is referenced as <i>${subst.var.name}</i>, e.g.[code]<env-entry>
        <env-entry-name>myEnvEntry</env-entry-name>
        <env-entry-type>java.lang.String</env-entry-type>
        <env-entry-value>${my.subst.var.name}</env-entry-value>
    </env-entry>[/code]For more information on configuring substitution variables, please refer to the following two links:
    http://help.sap.com/saphelp_nw04/helpdata/en/85/fa673ba8ecf22fe10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/35/1cd66947184aa8915ca1831c59b6c1/frameset.htm
    Hope that helps,
    Vladimir

  • Overview - Oracle Application Server Containers for J2EE (OCJ4)

    After reading the OCJ4 documentation, I still have a very simple question: what does OCJ4 actually do?
    Is it just a calling mechanism that exposes the Java procedures stored/compiled on the Oracle Database?
    Does it provide functionality redundant to Sun Java Application Server, and possible allow you to deploy your Java services using only OAS?
    ...I'm just a little confused by all the marketing bragging about all the things it will help me do that I am not sure what it actually does.

    Thank you Shail.
    Can you or anyone give guidance or the relevant documentation link for:
    1. Deploying Java apps to this OAS component?
    2. How to administrate these deployments?
    ...I assume it's in the documentation somewhere; I just haven't dug deep enough or searched on the correct terminology.

  • Oracle9iAS Containers for J2EE user's guide doc

    where can i found it? i need it to know how to config server.xml
    and application.xml, the otn dont have it but other pdf refer to
    it, it is really sick.

    Dear SP,
    The oc4j docs work on the assumption that you will use the
    admin.jar or oem to deploy your applications. When you do this,
    the server.xml and application.xml are automatically modified.
    You can also look at the docs at orion
    http://www.orionserver.com/docs/index.html
    There's some bits on the server.xml and orion-application.xml
    (the application.xml in the config directory).
    These should help you.
    The server.xml file is used to point to the enterprise
    application ear files. In addition, the *-web-site.xml files are
    also pointed to in this file.
    The config/applicatiom.xml is also pointed to in the server.xml.
    This is the orion-application.xml file for the default
    application, the mother of all applications in oc4j/orion. From
    this file you point to any web-module's or ejb-modules which are
    used by the default application.
    If you use the admin.jar or oem or even jdeveloper you won't
    have to do this, since these can deploy your enterprise
    applications in oc4j for you.
    regards,
    the elephantwalker
    www.elephantwalker.com

  • Problems with Oracle9iAS Containers for J2EE - Developer Preview!

    Guys,
    Trying to RE-deploy an EJB CMP 2.o from JDeveloper (that used to work) to the new version of OC4J returns the following errors:
    java.io.UTFDataFormatException: Invalid UTF8 encoding.
    Wrote EJB .jar file to D:\Oracle\JDeveloper\Rehder\CommOSS\Locations\locations.jar
    Wrote EAR file to D:\Oracle\JDeveloper\Rehder\CommOSS\Locations\locations.ear
    Invoking Oracle9iAS admin tool...
    C:\JDeveloperRC2\jdk\jre\bin\javaw.exe -jar D:\Oracle\Products\O9iAS\Install\oc4jxtnd\j2ee\home\admin.jar ormi://sandro/ admin **** -deploy -file D:\Oracle\JDeveloper\Rehder\CommOSS\Locations\locations.ear -deploymentName locations
    Fatal Error: Failure to initialize EJBQL descriptors: com.sun.enterprise.deployment.xml.ParseException: Invalid UTF8 encoding.
    Auto-unpacking D:\Oracle\Products\O9iAS\Install\oc4jxtnd\j2ee\home\applications\__locations.ear... done.
    Copying default deployment descriptor from archive at D:\Oracle\Products\O9iAS\Install\oc4jxtnd\j2ee\home\applications\__locations/META-INF/orion-application.xml to deployment directory D:\Oracle\Products\O9iAS\Install\oc4jxtnd\j2ee\home\application-deployments\locations...
    Auto-deploying locations (New server version detected)...
    java.io.UTFDataFormatException: Invalid UTF8 encoding.
         int oracle.xml.parser.v2.XMLUTF8Reader.readUTF8Char(int, int)
         void oracle.xml.parser.v2.XMLUTF8Reader.fillBuffer()
         int oracle.xml.parser.v2.XMLByteReader.saveBuffer(int)
         boolean oracle.xml.parser.v2.XMLReader.fillBuffer()
         boolean oracle.xml.parser.v2.XMLReader.tryRead(char[], int, int)
         void oracle.xml.parser.v2.XMLReader.scanXMLDecl()
         void oracle.xml.parser.v2.XMLReader.pushXMLReader(java.io.InputStream, java.lang.String, java.lang.String)
         void oracle.xml.parser.v2.XMLReader.pushXMLReader(org.xml.sax.InputSource)
         void oracle.xml.parser.v2.XMLParser.parse(org.xml.sax.InputSource)
         java.util.Vector com.sun.enterprise.deployment.xml.XMLUtils.getNodesByType(java.lang.Class, java.util.Dictionary, java.io.InputStream)
         java.util.Vector com.sun.enterprise.deployment.xml.EjbBundleNode.readEjbBundleNodes(java.io.InputStream)
         com.sun.enterprise.deployment.xml.EjbBundleNode com.sun.enterprise.deployment.xml.EjbBundleNode.read(java.io.InputStream)
         com.sun.enterprise.deployment.EjbBundleDescriptor com.sun.enterprise.deployment.EjbBundleDescriptorFactory.makeEjbBundleDescriptor(java.io.InputStream, java.lang.ClassLoader, boolean)
         void com.evermind.server.ejb.deployment.EJBPackage.init(byte[], int, int, boolean)
         void com.evermind.server.ServerComponent.init()
         com.evermind.server.ejb.deployment.EJBPackage com.evermind.server.ejb.EJBPackageDeployment.getPackage()
         java.util.Map com.evermind.server.administration.ServerApplicationInstallation.finish(java.util.Map)
         java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])
         void com.evermind.server.rmi.RMICallHandler.run(java.lang.Thread)
         void com.evermind.util.ThreadPoolThread.run()
    com.sun.enterprise.deployment.xml.ParseException: Invalid UTF8 encoding.
         java.util.Vector com.sun.enterprise.deployment.xml.EjbBundleNode.readEjbBundleNodes(java.io.InputStream)
         com.sun.enterprise.deployment.xml.EjbBundleNode com.sun.enterprise.deployment.xml.EjbBundleNode.read(java.io.InputStream)
         com.sun.enterprise.deployment.EjbBundleDescriptor com.sun.enterprise.deployment.EjbBundleDescriptorFactory.makeEjbBundleDescriptor(java.io.InputStream, java.lang.ClassLoader, boolean)
         void com.evermind.server.ejb.deployment.EJBPackage.init(byte[], int, int, boolean)
         void com.evermind.server.ServerComponent.init()
         com.evermind.server.ejb.deployment.EJBPackage com.evermind.server.ejb.EJBPackageDeployment.getPackage()
         java.util.Map com.evermind.server.administration.ServerApplicationInstallation.finish(java.util.Map)
         java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])
         void com.evermind.server.rmi.RMICallHandler.run(java.lang.Thread)
         void com.evermind.util.ThreadPoolThread.run()
    java.lang.InstantiationException: Failure to initialize EJBQL descriptors: com.sun.enterprise.deployment.xml.ParseException: Invalid UTF8 encoding.
         void com.evermind.server.ejb.deployment.EJBPackage.init(byte[], int, int, boolean)
         void com.evermind.server.ServerComponent.init()
         com.evermind.server.ejb.deployment.EJBPackage com.evermind.server.ejb.EJBPackageDeployment.getPackage()
         java.util.Map com.evermind.server.administration.ServerApplicationInstallation.finish(java.util.Map)
         java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])
         void com.evermind.server.rmi.RMICallHandler.run(java.lang.Thread)
         void com.evermind.util.ThreadPoolThread.run()
    Exit status of Oracle9iAS admin tool (-deploy): 0
    ---- Deployment finished. ---- 28/03/2002 23:43:10
    Any idea? What I should do? Wait for a more stable version of OC4J?
    Regards
    Sandro

    I am getting a similar error trying to deploy my 2.0 CMP beans. Any insight from anyone on this problem? The biggest issue is that there is no guidance on where the problem lies. I think my ejb-jar.xml file is fine, it deploys as is in Orion as well as WebLogic....

  • Can't download Oracle9iAS Containers for J2EE

    When I try to download http://download.oracle.com/otn/java/oc4j/oc4j.zip it redirects mi to download-eu.oracle.com and gives mi 404 error :(

    Please stay tuned. We are working to resolve this problem asap.
    null

  • Pro Oracle Spatial for Oracle Database 11g - Book now available

    Pro Oracle Spatial for Oracle Database 11g
    Pro Oracle Spatial for Oracle Database 11g shows how to take advantage of Oracle Databases built-in feature set for working with location-based data. A great deal of the information used in business today is associated with location in some way, and analysis of that data is becoming ever more important in todays mobile and highly connected world. In Pro Oracle Spatial for Oracle Database 11g, authors Ravi Kothuri and Albert Godfrind address
    * The special nature of spatial data and its role in professional and consumer applications
    * Issues in spatial data management such as modeling, storing, accessing, and analyzing spatial data
    * The Oracle Spatial solution and the integration of spatial data into enterprise databases
    * How spatial information is used to understand business and support decisions, to manage customer relations, and to better serve private and corporate users
    When you read Pro Oracle Spatial for Oracle Database 11g, you’re learning from the very best. Ravi Kothuri is a key member of Oracle’s Spatial development team. Albert Godfrind consults widely with Oracle clients on the implementation of Oracle Spatial, develops training courses, and presents frequently at conferences. Together they have crafted a technically sound and authoritative fountain of information on working with Spatial data in Oracle...
    Goto http://www.apress.com/book/view/1590598997 or Amazon.com

    Thank you very much.....got it.
    I know it isn't your gig, so I am not asking for a solution, just looking to know where I might have to go to get one. If buying SR's on meta link is going to solve this for me, then I am all for it, just let me know where the expertise can be found, I have been battling this overall set up now for too long, I need someone who really knows this stuff so I can get on with making use of it in industry....thanks....
    Can you steer me in the right direction to access some solid support on the installation issues I am having? See below;
    From oc4j on an attempted stand-alone install;
    07/11/22 20:23:39 INFO [oracle.lbs.mapserver.core.MapperConfig] using default config file: /opt/mv10131/mv10131_qs/oc4j/j2ee/home/applications/mapviewer/web/WEB-INF/conf/mapViewerConfig.xml
    07/11/22 20:23:39 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL mapmaker instances.
    07/11/22 20:23:39 Oracle Containers for J2EE 10g (10.1.3.1.0) initialized
    07/11/22 20:23:39 INFO [oracle.lbs.mapserver.core.MapperConfig] Map Recycling thread started.
    07/11/22 20:23:39 INFO [oracle.lbs.mapserver.oms] *** Oracle MapViewer started. ***
    07/11/22 20:23:40 INFO [oracle.lbs.mapcache.mcservlet] *** Oracle MapCacheServer started. ***
    07/11/22 20:23:40 Thu Nov 22 20:23:40 EST 2007 INFO [oracle.lbs.mapserver.core.MapRecycleThread, ,#Thread-19] cleansing old maps
    user induced ctl-c....program jams
    07/11/22 20:23:51 Shutting down OC4J...
    07/11/22 20:23:54 ERROR [oracle.lbs.mapcache.mcservlet] !!! Oracle MapCacheServer destroyed. !!!
    07/11/22 20:23:54 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL mapmaker instances.
    07/11/22 20:23:54 WARN [oracle.lbs.mapserver.oms] Oracle MapViewer shut down
    From a full AppServer Install Attempt (10.1.3 from e-delivery pack) , despite proper TMP/TMPDIR variables, more than ample space via df -k /tmp (300G) and chmod a+rwx /tmp settings;
    [root@bluesky1 Disk1]# ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-2.1, redhat-3, redhat-4, SuSE-9 or UnitedLinux-1.0
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2007-11-22_07-58-50PM. Please wait ...
    Error in writing to directory /tmp/OraInstall2007-11-22_07-58-50PM. Please ensure that this directory is writable and has atleast 60 MB of disk space. Installation cannot continue.
    : Success
    The people in the forums have been trying to help, and they have all been great, but noone seems able to solve....I am asking you because I am hoping you will know who the guru's are, and what I can do to access some of their wisdom to get up and running.?

Maybe you are looking for

  • Form Guides don't show in Preview

    I am trying to learn how to create form guides and have found that when I click the preview button, nothing but a blank template of the form guide appears.  None of the text or graphics I have added appear.  Can anyone provide any solutions? I am wor

  • Bootstrap and DW CC template mark up

    I am currently constructing a site using bootstrap in DW CC (latest update) see link here http://www.yogaherveybay.com.au/index1.html I am not sure whether this is a DMX or DW issue so I have posted on both forums. Building the home page was easy wit

  • Itunes can not read its library

    itunes will not load and gives message "the file 'itunes library' cannot be opened because it was created by a newer version of itunes" I keep getting this message even though I have reinstalled the latest version twice.

  • MB1A User Exit at document save

    Hi everyone, I have a requirement related to MB1A for materials distribution to personnel defined in HR. This can happen at line <Enter> press or at 'Document Save' time (either one is good, but could not get any to work). The requirements are: - get

  • Wrong home directory permissions for new users

    Hi everyone. I reinstalled my laptop the other day and ran into a rather strange problem: after a system update new users had their permissions totally screwed. It took me 3-4 reinstalls to notice, as i was also playing with lvm2 &co. Anyway, on fres