Remove /j2ee/ from URL

Hello,
I am using 10g Application Server 9.0.4 on UNIX. I have a J2EE application deployed into the default-application directory. Unfortunately, it is an old program that can not be bundled into an EAR/WAR file for easy deployment, so I have manually set it up in the directory "$J2EE_HOME/default-web-app".
Accessing files in this directory via a browser requires me to add /j2ee/ in front of the application name. For example, if I have an application in "$J2EE_HOME/default-web-app/myApp", the URL would be "http://my.server.com:7778/j2ee/myApp". How can I remove the need for /j2ee/ to be in the URL, so that it reads "http://my.server.com:7778/myApp"?
Ideally, I want to make ""$J2EE_HOME/default-web-app" my DocumentRoot directory - is this possible? If so, how?

You could never run a JSP application with the following URL, for example:
http://your.server.address:7777/myFile.jsp
Certainly you can. Please see my post how to deploy web application to root context in Oracle application server.
After speaking with Oracle, I have found the only way to do what I want is to create a soft
link in the directory of my choice to a pre-determined J2EE application folder which is a
sub-directory of $J2EE_HOME.I do not think that is the only way. You can also specify the location of your ear file for your application in server.xml by the attribute "path" of the "application" element for your application. This does need a little bit of manual work since I do not recall the em providing this option.
I have not tested on the latest oc4j release, the 10.1.3 production. However, I believe what I said is basically true for that too.

Similar Messages

  • How to remove faces from url

    Hi All,
    Following is my web.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
        <description>Empty web.xml file for Web Application</description>
        <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>client</param-value>
        </context-param>
        <context-param>
            <param-name>CpxFileName</param-name>
            <param-value>com.gemini.view.DataBindings</param-value>
        </context-param>
        <filter>
            <filter-name>adfBindings</filter-name>
            <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
        </filter>
        <filter>
            <filter-name>adfFaces</filter-name>
            <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jsp</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jspx</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfFaces</filter-name>
            <url-pattern>*.jsp</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfFaces</filter-name>
            <url-pattern>*.jspx</url-pattern>
        </filter-mapping>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet>
            <servlet-name>resources</servlet-name>
            <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
        </servlet>
        <servlet>
            <servlet-name>geminiservlet</servlet-name>
            <servlet-class>com.gemini.view.managed.geminiservlet</servlet-class>
        </servlet>
        <servlet>
            <servlet-name>gemini</servlet-name>
            <servlet-class>com.gemini.view.managed.gemini</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>resources</servlet-name>
            <url-pattern>/adf/*</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>geminiservlet</servlet-name>
            <url-pattern>/faces/geminiservlet</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>gemini</servlet-name>
            <url-pattern>/gemini</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>35</session-timeout>
        </session-config>
        <mime-mapping>
            <extension>html</extension>
            <mime-type>text/html</mime-type>
        </mime-mapping>
        <mime-mapping>
            <extension>txt</extension>
            <mime-type>text/plain</mime-type>
        </mime-mapping>
        <welcome-file-list>
            <welcome-file>/login.jsp</welcome-file>
        </welcome-file-list>
    </web-app>I access the site using http://bri-dev2/Gemini/faces/login.jsp
    I want to remove faces from the URL. like http://bri-dev2/Gemini/login.jsp
    How can I achieve this ?
    I used /* in the Faces Servlet URL Pattern. and when I accessed the page using
    http://bri-dev2/Gemini/login.jsp it gave me FacesContext Exception. I am using FacesContext object in login.jsp and several other jsp pages. So /* did not work.
    Any idea ?
    thanks,
    pp

    Sorry, it took long time. bcoz after that, all the components of server were down. I had to restart the server.
    Well, Following is the log:
    07/08/09 18:12:35 Start process
    07/08/09 18:13:04 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:14 Error initializing site OracleAS Java Web Site: No application named 'BC4J' found in the server
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Short,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Short)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Byte,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Byte)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Integer,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Integer)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Number,null)
    07/08/09 18:13:25 Tutalii: D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80\webappjdk14ver80\WEB-INF\lib\adf-faces-api.jar archive
    07/08/09 18:13:25 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2) initialized
    07/08/10 08:21:29 Error initializing site OracleAS Java Web Site: No application named 'BC4J' found in the server
    07/08/10 08:22:30 Notification ==> Application Deployer for webappjdk14ver80 STARTS [ 2007-08-10T08:22:30.864PDT ]
    07/08/10 08:22:30 Notification ==> Do not undeploy previous deployment
    07/08/10 08:22:30 Notification ==> Copy the archive to D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80.ear
    07/08/10 08:22:30 Copy file C:\WINDOWS\TEMP\dir53654.tmp\webappjdk14ver80.ear to D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80.ear
    07/08/10 08:22:31 Notification ==> Unpack webappjdk14ver80.ear begins...
    07/08/10 08:22:31 Auto-unpacking D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80.ear... done.
    07/08/10 08:22:31 Notification ==> Unpack webappjdk14ver80.ear ends...
    07/08/10 08:22:31 Notification ==> Initialize webappjdk14ver80.ear begins...
    07/08/10 08:22:31 Auto-unpacking D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80\webappjdk14ver80.war... done.
    07/08/10 08:22:32 Copying default deployment descriptor from archive at D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80/META-INF/orion-application.xml
    to deployment directory D:\Apps\OraHome_1\j2ee\home\application-deployments\webappjdk14ver80...
    07/08/10 08:22:32 Notification ==> Initialize webappjdk14ver80.ear ends...
    07/08/10 08:22:32 Notification ==> Initialize webappjdk14ver80 begins...
    07/08/10 08:22:32 Notification ==> Initialize webappjdk14ver80 ends...
    07/08/10 08:22:32 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/10 08:22:32 Notification ==> Application Deployer for webappjdk14ver80 COMPLETES [ 2007-08-10T08:22:32.695PDT ]
    07/08/10 08:22:32 Error initializing site OracleAS Java Web Site: No application named 'BC4J' found in the server
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Short,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Short)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Byte,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Byte)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Integer,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Integer)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Number,null)
    07/08/10 08:22:39 Tutalii: D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80\webappjdk14ver80\WEB-INF\lib\adf-faces-api.jar archive

  • Please help create folder to remove .htm from URL

    I wanted to remove the .htm from a specific URL on my site. I
    created a new folder named 'careers' and placed my original
    dreamweaver page in the folder. I can now access that page / url by
    typing www.nameofmysite.com/careers but a page comes up first that
    lists 'parent directory' in addition to the actual page that I want
    to direct the traffic to. How do I remove this unecessary page that
    contains the parent directory and have traffic go directly to
    carrers page without having to type in .htm? Any help would be
    appreciated.

    Place your careers.htm page inside a Folder called Careers.
    Rename your careers.htm page index.htm. The server will look
    for the index
    page. If it doesn't find one, it will list the folder's
    contents.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "below average" <[email protected]> wrote in
    message
    news:ffl7ba$8dm$[email protected]..
    > I wanted to remove the .htm from a specific URL on my
    site. I created a
    new
    > folder named 'careers' and placed my original
    dreamweaver page in the
    folder.
    > I can now access that page / url by typing
    www.nameofmysite.com/careers
    but a
    > page comes up first that lists 'parent directory' in
    addition to the
    actual
    > page that I want to direct the traffic to. How do I
    remove this
    unecessary
    > page that contains the parent directory and have traffic
    go directly to
    carrers
    > page without having to type in .htm? Any help would be
    appreciated.
    >

  • Remove /iwc from URL

    Hi,
    How can remove the "iwc" from the URL to access convergence ?
    instead of access http://domain.com/iwc , we would to have only http://domain.com !!
    if I try to change the context of the web application using administration console of the application server, it wont let me change it
    any idea how i can change the context ?
    thanks a lot

    KenGra wrote:
    instead of access http://domain.com/iwc , we would to have only http://domain.com !!
    Why don't you just replace the default Application Server docroot index.html file to redirect users to Convergence e.g.
    /opt/SUNWappserver/domains/domain1/docroot/index.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
      <head>
       <script type="text/javascript">
         location.replace('/iwc/');
       </script>
      </head>
    </html>Regards,
    Shane.

  • HOw Can I remove faces from the URL

    I know that it's in the web.xml file but as soon as i remove the faces part from the file nothing works. Someone please tell me how to properly remove "faces" from the url. Example http:.//localhost:8080/croot/Page1.jsp
    Thanks in advance

    I know that it's in the web.xml file but as soon as i remove the faces part from the file nothing works. Someone please tell me how to properly remove "faces" from the url. Example http:.//localhost:8080/croot/Page1.jsp
    Thanks in advance

  • How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP server

    In 9iAS 9.0.2 Oracle HTTP Server (OHS) is pre-configured to assign requests to the Home OC4J instance via the URL-prefix "/j2ee"/
    For example, the TEST servlet under OC4J would be passed through OHS using:
    http://urmachine:urApachePort/j2ee/TEST
    whereas in the standlone OC4J version, this URL works:
    http://urmachine:urOC4JPort/TEST
    How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP Server?

    It is getting the url prefix from mod_oc4j.conf
    under /ora9ias/Apache/Apache/conf
    You can read more on this at
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/web.902/a92173/confmods.htm#1008977
    -Prasad

  • Removing jsessionid parameter from url of Webdynpro iview

    Hi All,
             While i create a Webdynpro iview from SAP Webdynpro iview template, the generated url gets appended with the parameter jsessionid as shown.
    http://server:port/webdynpro/dispatcher/local/session/New_app;<b>jsessionid</b>=(J2EE14778100)ID1600385450DB11689045888563713719End
    I don't want this parameter to be appended and exposed in the url of the ivew. Is there any way i can hide/remove this parameter from the generated url?
    Regards,
    Vijay.K

    Hi All,
             I found that, the Webdynpro template which is an App-Integrator appends the parameter jsessionid to the generated URL. So, i tried changing some properties of the system regarding session, but i couldn't remove this parameter from URL.
    I also found that, custom Application integrators can also be developed. So, is it possible to get rid of the jsessionid parameter by developing a custom App-Integrator for Webdynpro application?
    Please help me in this regard.
    Regards,
    Vijay.K

  • [svn:fx-trunk] 8825: Normalizing URLs to remove [[DYNAMIC]] from LoaderInfo .url information which occurs when linking against RSLs.

    Revision: 8825
    Author:   [email protected]
    Date:     2009-07-27 11:51:15 -0700 (Mon, 27 Jul 2009)
    Log Message:
    Normalizing URLs to remove [[DYNAMIC]] from LoaderInfo.url information which occurs when linking against RSLs. This fixes RPC services trying to resolve a fully qualified URL for relative resources.
    QE: Yes, please ensure RPC tests that make use of relative paths are compiled with RSLs.
    Doc: No
    Checkintests: Pass
    Reviewer: Darrell
    Bugs:
    FB-21713 - HTTPService to relative file in CF project fails due to incorrectly re-written URL
    SDK-22362 - RemoteObject method calls for invoking php code fails when relative URL is given for endpoint
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-21713
        http://bugs.adobe.com/jira/browse/SDK-22362
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/ChildManager.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/messaging/config/LoaderConfig.as

    Revision: 8825
    Author:   [email protected]
    Date:     2009-07-27 11:51:15 -0700 (Mon, 27 Jul 2009)
    Log Message:
    Normalizing URLs to remove [[DYNAMIC]] from LoaderInfo.url information which occurs when linking against RSLs. This fixes RPC services trying to resolve a fully qualified URL for relative resources.
    QE: Yes, please ensure RPC tests that make use of relative paths are compiled with RSLs.
    Doc: No
    Checkintests: Pass
    Reviewer: Darrell
    Bugs:
    FB-21713 - HTTPService to relative file in CF project fails due to incorrectly re-written URL
    SDK-22362 - RemoteObject method calls for invoking php code fails when relative URL is given for endpoint
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-21713
        http://bugs.adobe.com/jira/browse/SDK-22362
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/ChildManager.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/messaging/config/LoaderConfig.as

  • What is the URL to ad and remove devices from my profile account?

    What is the URL to ad and remove devices from my profile account?

    I've read Mr. Reed's Mac Malware Guide, and found it very interesting and informative. I use Sophos for Mac Home Edition; it's free and scored highly in Mr. Reed's tests of anti-virus software.
    Here is the link; if you choose to download click on the 'get started' icon at the right of the screen:
    http://www.sophos.com/en-us/products/free-tools/sophos-antivirus-for-mac-home-ed ition.aspx

  • Queries related to ADF Train Component, Region disable if 'No data Found' from URL service

    I have below few queries. I am using JDeveloper version : 11.1.1.6.0
    1. Train Component : I need to remove link which is on 'Train Stop' icon so user can't directly go to next stop.
    2. Hide region in case of Empty Result from URL Service Call :
         I have created a region  and in region put the task flow which have readOnly table calling URL Service data control.
         In case of empty result from service call, table is rendered and displays 'No data to display.' I don't want to show empty table in this case. and I also want to make region invisible (rendered=false).
    3. alternative of <optgroup> tag in adf: Do we have any alternative option to display <optgroup> tag in adf ?
    Regards,
    Niraj

    1. Train Component : I need to remove link which is on 'Train Stop' icon so user can't directly go to next stop.
    You can reference a managed bean from the view activity train definition to enable/disable stops dynamically:
    http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51adf-452576.html
    ADF Code corner has more train examples, just search for "train" : http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html
    2. Hide region in case of Empty Result from URL Service Call :
         I have created a region  and in region put the task flow which have readOnly table calling URL Service data control.
         In case of empty result from service call, table is rendered and displays 'No data to display.' I don't want to show empty table in this case. and I also want to make region invisible (rendered=false).
    The af:region is out of scope for the table. Instead use a dynamic regions that you switch to from a managed bean (see the product documentation about dynamic regions) and then you switch to an empty region when there is no values to display. Another option would be to hide the table instead of the region using its display property. Let me know which approach you go with and if you need additional information
    3. alternative of <optgroup> tag in adf: Do we have any alternative option to display <optgroup> tag in adf ?
    an af:switcher would do the same
    Frank

  • Error in java code for removing messages from a Topic

    Trying to write a code using oracle.jms package to remove messages from Topic. I have a similar code with javax.jms package for removing messages from Queue and it is working well. Whereas i have written this new code for removing messages from topic using oracle.jms package as methods like CreateBrowser and CreateTopicReceiver for topic are provided in oracle package only and can't be used from javax.jms package.
    Error i am getting is JMS-126: Invalid Topic specified at
             receiverTopic   = (Topic) ctx.lookup(((String)receiverProps.get( "Q_NAME")).trim()  );
             System.out.println ("receiverTopic is[" + receiverTopic + "]");
             MBeanHome home = (MBeanHome) Helper.getAdminMBeanHome("username","pwd","url:port");
             ((AQjmsSession)topicSession).grantSystemPrivilege("MANAGE_ANY", "SA", true);
             for(Iterator i = home.getMBeansByType("JMSTopic").iterator();i.hasNext(); )
              WebLogicMBean wmb = (WebLogicMBean)i.next();
              System.out.println("topic name found: " + wmb.getName());
                topicBrowser   = ((AQjmsSession) topicSession).createBrowser(receiverTopic, "Edin");topic handle which i am receiving in receiverTopic is same as what i am expecting but still it says Invalid topic specified on createBrowser method. Anyone who can help me to write this type of code, please reply. If anyone has ready code for this situation, please reply with the same as i am working on a prodcution system and we are in serious situation to resolve this problem.

    Hi,
    I am afraid this is impossible. You need to find another solution like a filtering queue. Your messages can be sent to a queue that is monitored by let say a MDB. This MDB will maintain a map of title and only forward once a given title/message to your topic.
    Hope it helps.
    Arnaud
    www.arjuna.com

  • Unable to read WSDL from URL

    This is my first web service. I thought I read that the
    service registers itself when first run, but it's just not jumping
    for me. I'd try registering it, but I'm not sure how to fill in all
    the blanks in the CF Administrator's Register Web Service form.
    I believe I'm doing this pretty plain and simple. Any ideas
    why this won't work? Tried both methods, both give the same error
    -- "Unable to read WSDL from URL"
    Calling URL:
    http://prod.trollsoftware.com/echotest.cfm
    Is looking at:
    http://prod.trollsoftware.com/trollws.cfc?wsdl
    which looks fine to me, but what do I know? This is my
    first....
    RLS

    I found this wonderful forum post
    {HERE}">http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=7&threadid=881689[/S
    and have been tyring to get it to run without removing the "/"
    mapping in case that would "break" something on my production
    server. I've tried hard to get Approach #2 to work as listed in
    that item, but to no avail. I can almost always see the XML code,
    but CF never wants to find it as an object reference.
    To answer your questions -- and thank you for your help on
    this! --
    1. Yes. I can see the XML code just fine.
    2. No. I get unknown host, connection failure, status not
    available.
    3. Doesn't work with IP, but that was expected as there are
    many domains on this server, not just this one.
    So, to continue, I thought I'd back up and try it on my CF7
    server. The program runs from here [
    http://www.saphea.com/echotest.cfm
    against the WSDL/CFC file here [
    http://components.findaportal.com/wsdl/trollws.cfc?wsdl
    I can see the XML file just fine, but the echotest does not work
    (code attached).
    I created a mapping of "/wsdl" to
    "d:\clients\components\wsdl" in trying to emulate Approach #2, and
    created a web subdomain of
    http://components.findaportal.com
    to "d:\clients\components", but no dice. Approach #2 may have to be
    abandoned.
    Why would it work for you and not me? That's the weird part.
    RLS

  • Passing a paremeter from URL to a form

    I am running a single form from URL.
    http://100.180.127.225:7779/forms90/f90servlet?form=test1.fmx
    where test1.fmx is the name of teh form.
    Now this form is is showing all the records of the customers. since it is a customer information form.
    Now i want to pass a parameter with the customer id to this URL which shud result in the populating teh record of teh customer id which is passed thro the parameter in the URL.
    http://100.180.127.225:7779/forms90/f90servlet?.fmx&PRM_CUST_NO=000000014
    but still it is showing the record from teh begining ie,it is not accepting the parameter.
    Note:PRM_CUST_NO is the form level parameter.
    can any trigger be written or something can be done which results in the populating of the record with the passed id.

    i have added this code but still nothing happens.
    i have only written the code
    :BLK_STTMS_CUSTOMER.CUSTOMER_NO:=:PARAMETER.PRM_CUST_NO ;
    in the trigger.
    when i put the initial value of teh form level parameter prm_cust_no=000000014
    then the first record comes is this one but now i have removed the initial value from the parameter prm_cust_no and now no record is populating.
    F7 & F8 shows the records from begining

  • Problem with remove task from schedule in PWA

    In our environment problem with remove task from schedule by PWA.
    Problem is only when I want to remove few task in the same time, but the operation one by one is correct.
    In my opinion problem is with calculation schedule after remove tasks, column ID include wrong value it means that Number ID does not generate in the correct order same of numer
    disappear. Click Calculate button on ribbon causes problem with finshed operation and save project.
    Problem occurs only machine with IE 11.0 browser without compability mode, on other machine for example on the same project with IE 8,9,10 everything is correct.
    Problem appeared recently, earlier everything was OK.
    Txn, Dariusz Moczyński

    Hi Darius,
    I'm a bit confused. You are now talking about 2 issues.
    For the first one, you cannot edit anymore tasks in PWA, with any browser versions? Is it happenonog for any users on any projects? Try the following solutions publish the project from Project Pro and see if it helps. Press CTRL F5 to delete IE cache. Ensure
    that your PWA URL is added to the trusted site and/or compatibility sites. Check for the ULS logs or javascript errors.
    For the second issue, please refer to my previous reply, this obviously cannot be considered as a bug since it is happening with a non supported browser version and working properly on supported versions of IE.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • OnComplet for video imported from url

    i made an ios app.
    in the app i have a video imporeted from url using StageWebView.
    how do i remove the video from stage on complete?
    the viseo is in second frame.
    can i force the on Complete to remove + goto 1 frame again?

    Thanks Sue, I was afraid of that!
    The section of GB help on adding URLs says you can view via iTunes or DVD, and launch the website by clicking the link, hence my confusion.
    It's a shame, because that would be a great feature in making sales or marketing DVD's - any idea why the disconnect, and do you know if Apple plans to add that feature?
    Thanks again!

Maybe you are looking for

  • Skype shutting down, and then impossible to restar...

    So i was just watching some youtube, when i uddenly heard my skype shutting down. When i tried to restart it, it didn't recocnice my password. I changed my password and i got an I/O error (whatever that is), i then tried to uninstall skype and reinst

  • How do I find my Apple ID?

    How do I find my  Apple ID?

  • How to Clear if material received without PO

    Dear All, I have received materials without PO, Now I wanted to clear those without creating POs. For this I am using 501 (GR without PO) mvmt type to do the MIGO, Now my question is how can I do Invoice to vendor for this material. Please suggest...

  • Installation Error Installing Exchange 2013 CU3 on Server 2012

    Hello, When Installing Exchange 2013 on server 2012 I get the following error during Step 1 of 8 of Transport Service. I have installed and unistalled Exchange a few times, restarted the machine manually and removed exchange from AD, etc. to no avail

  • H.264 mov files from Canon 5D Mark II running at incorrect speed?

    What is causing the mov. files recorded at 25 fps Imported from a Canon 5D Mark II PAL to run at 2.5 fps on the Timeline of Premiere Pro ? And it looks like it.This all happened after the Firmware Upgrade 2.0.4 The camera is recording at the right sp