Using apex to create a news board application ?

hi,dear all
have you think of this before ?i am trying to do this now,I have built two applications,one for admin and the other is for public users.do you have any suggestions ? because I have met some questions during processing this application,for example, I am not sure how to store the news' contents,a table ? a page?or something else.what's more,i don't know how to display these news would be better.
best regards
hlee

The news content should be stored in a column of type CLOB. In the admin application the news will be entered in an html editor field. Your public application will be, in its simplest form, one ApEx page where you have a pl/sql region that outputs the news using the htp package. You will pass an ID to the page via the URL, so that the right news post is shown. Be aware of the varchar size limit: you will have to write a loop and output your news content in chunks of 4000 characters. Additionally you can create a table to store images which can be uploaded in the admin app, where you show a report with a download link, which can be used as an image url in the news post.

Similar Messages

  • Create a new web application, how shall I update the file server.xml

    Hi,
    I will create a new web application, i.e named newApp. Then I create a file structure as follows:
    - <server-root>/newApp
    - <server-root>/newApp/WEB-INF
    - <server-root>/newApp/WEB-INF/classes
    Then I must tell the server that I have created a new web application. Then I must update my file server.xml, How shall I do this and where in the file shall I type in the new information?
    I use windows XP Pro, and Tomcat 4.1.27.
    My server.xml file looks like below:
    <!-- Example Server Configuration File -->
    <!-- Note that component elements are nested corresponding to their
    parent-child relationships with each other -->
    <!-- A "Server" is a singleton element that represents the entire JVM,
    which may contain one or more "Service" instances. The Server
    listens for a shutdown command on the indicated port.
    Note: A "Server" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <!-- Comment these entries out to disable JMX MBeans support -->
    <!-- You may also configure custom components (e.g. Valves/Realms) by
    including your own mbean-descriptor file(s), and setting the
    "descriptors" attribute to point to a ';' seperated list of paths
    (in the ClassLoader sense) of files to add to the default list.
    e.g. descriptors="/com/myfirm/mypackage/mbean-descriptor.xml"
    -->
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
    debug="0"/>
    <!-- Global JNDI resources -->
    <GlobalNamingResources>
    <!-- Test entry for demonstration purposes -->
    <Environment name="simpleValue" type="java.lang.Integer" value="30"/>
    <!-- Editable user database that can also be used by
    UserDatabaseRealm to authenticate users -->
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    </GlobalNamingResources>
    <!-- A "Service" is a collection of one or more "Connectors" that share
    a single "Container" (and therefore the web applications visible
    within that Container). Normally, that Container is an "Engine",
    but this is not required.
    Note: A "Service" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <!-- A "Connector" represents an endpoint by which requests are received
    and responses are returned. Each Connector passes requests on to the
    associated "Container" (normally an Engine) for processing.
    By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
    You can also enable an SSL HTTP/1.1 Connector on port 8443 by
    following the instructions below and uncommenting the second Connector
    entry. SSL support requires the following steps (see the SSL Config
    HOWTO in the Tomcat 4.0 documentation bundle for more detailed
    instructions):
    * Download and install JSSE 1.0.2 or later, and put the JAR files
    into "$JAVA_HOME/jre/lib/ext".
    * Execute:
    %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
    $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA (Unix)
    with a password value of "changeit" for both the certificate and
    the keystore itself.
    By default, DNS lookups are enabled when a web application calls
    request.getRemoteHost(). This can have an adverse impact on
    performance, so you can disable it by setting the
    "enableLookups" attribute to "false". When DNS lookups are disabled,
    request.getRemoteHost() will return the String version of the
    IP address of the remote client.
    -->
    <!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="100" debug="0" connectionTimeout="20000"
    useURIValidationHack="false" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" scheme="https" secure="true"
    useURIValidationHack="false" disableUploadTimeout="true">
    <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    clientAuth="false" protocol="TLS" />
    </Connector>
    -->
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <!--
    <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
    port="8009" minProcessors="5" maxProcessors="75"
    acceptCount="10" debug="0"/>
    -->
    <!-- Define a Proxied HTTP/1.1 Connector on port 8082 -->
    <!-- See proxy documentation for more information about using this. -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8082" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" connectionTimeout="20000"
    proxyPort="80" useURIValidationHack="false"
    disableUploadTimeout="true" />
    -->
    <!-- Define a non-SSL legacy HTTP/1.1 Test Connector on port 8083 -->
    <!--
    <Connector className="org.apache.catalina.connector.http.HttpConnector"
    port="8083" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" />
    -->
    <!-- Define a non-SSL HTTP/1.0 Test Connector on port 8084 -->
    <!--
    <Connector className="org.apache.catalina.connector.http10.HttpConnector"
    port="8084" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" />
    -->
    <!-- An Engine represents the entry point (within Catalina) that processes
    every request. The Engine implementation for Tomcat stand alone
    analyzes the HTTP headers included with the request, and passes them
    on to the appropriate Host (virtual host). -->
    <!-- You should set jvmRoute to support load-balancing via JK/JK2 ie :
    <Engine name="Standalone" defaultHost="localhost" debug="0" jmvRoute="jvm1">
    -->
    <!-- Define the top level container in our container hierarchy -->
    <Engine name="Standalone" defaultHost="localhost" debug="0">
    <!-- The request dumper valve dumps useful debugging information about
    the request headers and cookies that were received, and the response
    headers and cookies that were sent, for all requests received by
    this instance of Tomcat. If you care only about requests to a
    particular virtual host, or a particular application, nest this
    element inside the corresponding <Host> or <Context> entry instead.
    For a similar mechanism that is portable to all Servlet 2.3
    containers, check out the "RequestDumperFilter" Filter in the
    example application (the source for this filter may be found in
    "$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").
    Request dumping is disabled by default. Uncomment the following
    element to enable it. -->
    <!--
    <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
    -->
    <!-- Global logger unless overridden at lower levels -->
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Because this Realm is here, an instance will be shared globally -->
    <!-- This Realm uses the UserDatabase configured in the global JNDI
    resources under the key "UserDatabase". Any edits
    that are performed against this UserDatabase are immediately
    available for use by the Realm. -->
    <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
    debug="0" resourceName="UserDatabase"/>
    <!-- Comment out the old realm but leave here for now in case we
    need to go back quickly -->
    <!--
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    -->
    <!-- Replace the above Realm with one of the following to get a Realm
    stored in a database and accessed via JDBC -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="org.gjt.mm.mysql.Driver"
    connectionURL="jdbc:mysql://localhost/authority"
    connectionName="test" connectionPassword="test"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="oracle.jdbc.driver.OracleDriver"
    connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL"
    connectionName="scott" connectionPassword="tiger"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="sun.jdbc.odbc.JdbcOdbcDriver"
    connectionURL="jdbc:odbc:CATALINA"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <!-- Normally, users must authenticate themselves to each web app
    individually. Uncomment the following entry if you would like
    a user to be authenticated the first time they encounter a
    resource protected by a security constraint, and then have that
    user identity maintained across all web applications contained
    in this virtual host. -->
    <!--
    <Valve className="org.apache.catalina.authenticator.SingleSignOn"
    debug="0"/>
    -->
    <!-- Access log processes all requests for this virtual host. By
    default, log files are created in the "logs" directory relative to
    $CATALINA_HOME. If you wish, you can specify a different
    directory with the "directory" attribute. Specify either a relative
    (to $CATALINA_HOME) or absolute path to the desired directory.
    -->
    <!--
    <Valve className="org.apache.catalina.valves.AccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common" resolveHosts="false"/>
    -->
    <!-- Logger shared by all Contexts related to this virtual host. By
    default (when using FileLogger), log files are created in the "logs"
    directory relative to $CATALINA_HOME. If you wish, you can specify
    a different directory with the "directory" attribute. Specify either a
    relative (to $CATALINA_HOME) or absolute path to the desired
    directory.-->
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
    timestamp="true"/>
    <!-- Define properties for each web application. This is only needed
    if you want to set non-default properties, or have web application
    document roots in places other than the virtual host's appBase
    directory. -->
         <DefaultContext reloadable="true"/>
    <!-- Tomcat Root Context -->
    <Context path="" docBase="ROOT" debug="0"/>
    <!-- Tomcat Examples Context -->
    <Context path="/examples" docBase="examples" debug="0"
    reloadable="true" crossContext="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="localhost_examples_log." suffix=".txt"
    timestamp="true"/>
    <Ejb name="ejb/EmplRecord" type="Entity"
    home="com.wombat.empl.EmployeeRecordHome"
    remote="com.wombat.empl.EmployeeRecord"/>
    <!-- If you wanted the examples app to be able to edit the
    user database, you would uncomment the following entry.
    Of course, you would want to enable security on the
    application as well, so this is not done by default!
    The database object could be accessed like this:
    Context initCtx = new InitialContext();
    Context envCtx = (Context) initCtx.lookup("java:comp/env");
    UserDatabase database =
    (UserDatabase) envCtx.lookup("userDatabase");
    -->
    <!--
    <ResourceLink name="userDatabase" global="UserDatabase"
    type="org.apache.catalina.UserDatabase"/>
    -->
    <!-- PersistentManager: Uncomment the section below to test Persistent
    Sessions.
    saveOnRestart: If true, all active sessions will be saved
    to the Store when Catalina is shutdown, regardless of
    other settings. All Sessions found in the Store will be
    loaded on startup. Sessions past their expiration are
    ignored in both cases.
    maxActiveSessions: If 0 or greater, having too many active
    sessions will result in some being swapped out. minIdleSwap
    limits this. -1 or 0 means unlimited sessions are allowed.
    If it is not possible to swap sessions new sessions will
    be rejected.
    This avoids thrashing when the site is highly active.
    minIdleSwap: Sessions must be idle for at least this long
    (in seconds) before they will be swapped out due to
    activity.
    0 means sessions will almost always be swapped out after
    use - this will be noticeably slow for your users.
    maxIdleSwap: Sessions will be swapped out if idle for this
    long (in seconds). If minIdleSwap is higher, then it will
    override this. This isn't exact: it is checked periodically.
    -1 means sessions won't be swapped out for this reason,
    although they may be swapped out for maxActiveSessions.
    If set to >= 0, guarantees that all sessions found in the
    Store will be loaded on startup.
    maxIdleBackup: Sessions will be backed up (saved to the Store,
    but left in active memory) if idle for this long (in seconds),
    and all sessions found in the Store will be loaded on startup.
    If set to -1 sessions will not be backed up, 0 means they
    should be backed up shortly after being used.
    To clear sessions from the Store, set maxActiveSessions, maxIdleSwap,
    and minIdleBackup all to -1, saveOnRestart to false, then restart
    Catalina.
    -->
    <!--
    <Manager className="org.apache.catalina.session.PersistentManager"
    debug="0"
    saveOnRestart="true"
    maxActiveSessions="-1"
    minIdleSwap="-1"
    maxIdleSwap="-1"
    maxIdleBackup="-1">
    <Store className="org.apache.catalina.session.FileStore"/>
    </Manager>
    -->
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/EmployeeAppDb" auth="SERVLET"
    type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/EmployeeAppDb">
    <parameter><name>username</name><value>sa</value></parameter>
    <parameter><name>password</name><value></value></parameter>
    <parameter><name>driverClassName</name>
    <value>org.hsql.jdbcDriver</value></parameter>
    <parameter><name>url</name>
    <value>jdbc:HypersonicSQL:database</value></parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    <ResourceLink name="linkToGlobalResource"
    global="simpleValue"
    type="java.lang.Integer"/>
    </Context>
    </Host>
    </Engine>
    </Service>
    </Server>

    To use servlets u have indeed to update your web.xml...Well I'm not sure this is relevant to your case anyway.
    You have to add a <servlet> element to this file.
    Something like this:
    <servlet>
    <servlet-name>blabla</servlet-name>
    <servlet-class>blablapackage.Blablaclass</servlet-class>
    <init-param>...</init-param>
    </servlet>
    Now this may not solve your problem. Make sure you refer to your servlets using their full qualified names.btw, just to be sure, what is your definition of "servlet"? (i mean: any java class or only javax.servlet.Servlet)

  • I am using apex 4.2 and in sample application i cant find the administratio

    i am using apex 4.2 and in sample application i cant find the administration module
    through which i can add users.
    I dont think that facility is available in 4.2 kindly confirm pls
    Any information shall be appreciated
    Thanks
    Edited by: susf on Nov 26, 2012 6:02 AM

    It is called the sample database application. This consist of tabs like
    customer
    product
    order
    and admin
    In apex 4.0 i had a facility in admin to create users. .Thats not available in 4.2
    I mean facility to create user
    I was looking for custom authentication feature which was present earlier in this demo
    its not present currently
    Edited by: susf on Nov 26, 2012 6:07 AM
    Edited by: susf on Nov 26, 2012 6:17 AM

  • Created a new planning application ..while loggin in giving error as :.....

    Created a new planning application with Admin id ..while loggin in giving error as :.....
    Unable to obtain a connection to Hyperion Essbase. If this problem persists, please contact your administrator
    Steps i followed :
    1. created schema
    2.created DSN on application servr
    3.Created planning Applicaion from AppWizard plannig link
    4.Application was succesfully created.
    5.tried login into the plannig aplication got the boce error.
    6.the application i not seen when i login with Admin id through EAS console ....
    7.Applicaction is not created in essbase server also...i see in essbase server back end

    Check out in shared services if the user is still provisioned with appropriate access, if not do it.
    Try running updateusers utility because user dosent exists as NTLM and try creating the application again from Essbase and from Planning.
    If it doesnt work then Create a new user with administrator access and In EAS refresh the security from shared services and try creating the essbase and planning applications using new admin. Check if it works.
    Edited by: RahulS on Dec 2, 2010 4:12 AM

  • Steps to create a new Oracle Application server

    I am in unfamiliar territory and need to create a new Oracle Application Server. I would appreciate any direction or direction to documentation that explains the steps required to establish a new server. Thanks.

    William,
    Have you looked at the Portal section on OTN? We recently added a whole bunch of information under the documentation section.
    It can be found by clicking on Internet Servers under the Products heading on the left hand navigation bar. That page will have a section for Oracle9i Application Server and under that you will see Related Features & Products where there is a link to Portal.
    Rich

  • Unable to create a new planning application in EPM11.1.3.1

    Hello Guru's
    I am not able to create a new planning application in the existing environment.
    In the last week i created a new application to migrate from prod to dev and it was successfull but it was failing to now for creating new app.
    When i checked the database connection and the essbase connection both are fine.
    I have checked the logs in the path
    D:\Hyperion\deployments\WebLogic9\servers\HyperionPlanning\logs
    Environment: 11.1.3.1
    error:
    <Jan 24, 2012 5:15:46 AM EST> <Error> <JMS> <som-epmdevapp02> <HyperionPlanning> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1327400146994> <BEA-040373> <Could not find a license for JMS. Please contact BEA to get a license.>
    Cheers,
    Raj

    check the logs clearly, i think schema/user doesn't have admin rights. please check with DBA team and try creating again.
    If you have DB admin access, you can create new schema/user and provide Full admin privilizes to the user (even you can ask your DBA team), then create DSN & validate, then try creating new application (make sure you are giving all correct info while creating app), it should work.....if still giving any error, please let us know what's the error in front end & at the same time check the logs.....
    with time stamp you tried to create application, logs will be there, check clearly you will definitly find the cause & issue.

  • Where I can creat a new portal application?

    hello:
       I want to <u>Create a new Masthead Component</u>:
      a) Go to System Administration – Support – Support Desk – Portal Runtime – Browse deployment. Navigate to ROOT/WEB-INF/deployment/pcd and select file com.sap.portal.navigation.masthead.par.bak. Click the download link. Open the zip file and extract it to your local file system.
      b) Open Eclipse and <u><b>create a new portal application project</b></u> based on the par file (File – Import – PAR file).
    my problem is I don't know where I can creat a new portal application?Do I need download a software?
      anyone can help me ?And give me the tool!
      thanks in advance!

    Hi,
       For NW2004s you can download from <a href="https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/cfc19866-0401-0010-35b2-dc8158247fb6">here</a>.
    The steps for installation are:
    1.Begin installation by executing JDTSetup.exe
    2.Enter installation directory where u wish to install.
    3.You will have to enter your Java SDK directory. NDS needs at least 1.4.2 version or later.
    4.Enter folder name for workspace storage: C:\NWDS\Workspace or C:\SAP\JDT\Workspace
    5.After installation is finished start Developer Studio by going to SAP Netweaver Deveoper Studio icon on your desktop.
    6.Open EP Perspective by going to Window->Open Perspective->Other->Enterprise Portal
    Hope this helps.
    Regards,
    Pooja.
    Message was edited by:
            Pooja S

  • Added user as Farm Admin - still can't create a new Web Application

    What exactly does it take for someone (assuming through Central Admin) to be able to have enough permissions to create a new Web Application?
    I just added one of our developers as a Farm Admin, and the 'New' button is disabled for him, so he can't create a new Web Application.

    As I mentioned in my post.  To create a Web Application you need to be both a Farm Administrator and a local administrator on the server.  You said he was a farm admin.  Was he also a server admin on the server?
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • How to create a New database application in APEX

    Hi everyone..
    Greetings!!!
    I am a beginner to Oracle APEX, i want to develop a new database application(upload my own data) and wants to perform validations, LOV's, Regions etc..
    Can you guide me to handle this....
    Thanks,
    suresh

    Suresh,
    The forum can help ... but maybe "guide" is asking a lot. There are tons of suggestions here (in the forum).
    Have you read? https://forums.oracle.com/forums/ann.jspa?annID=1324 It's a good place to start.
    There are a wealth of APEX books if you have access to Safari, Books 24 or something like those.
    There are on-line courses: See http://www.oracle.com/technetwork/tutorials/index.html
    Specifically: http://apex.oracle.com/pls/apex/f?p=44785:24:87555121473::NO::P24_CONTENT_ID,P24_PREV_PAGE:6268,1 is "Building an Application using Oracle Application Express: Part 1"
    I'm certain you can find many more by Google'ing.
    If you're like me, you need to see (and do) many examples before you launch off into something non-trivial.
    Best wishes,
    Howard

  • Not able to create a new FDM application -11.1.1.4

    Hi
    I have installed Hyperion FDM on win2008 and oracle 10g. After installation, I configured it to authenticate with shared services. Everything else like Load balance, application server are configured. I can login to FDM web url using the shared services admin user. But when i go on to create a new application ( i give the application name, the oracle database schema name, the folder in the local hard drive), it takes forever to create the application. I keep on getting the message 'Processing, Please wait..' message. I see that it created 4 folders ( data, inbox, reports, outbox) but i don't see any tables in the schema. The web console never comes back. But i dont get any sort of error.
    It appears that IIS has hung up. But i can still get http://localhost.
    How can i find whats going on.
    Please help.
    Edited by: rajneesh sharma on Oct 17, 2011 9:34 AM

    I didn't understand 'think Tony probably has a technical explanation as to what the problem is; however'. Are you pointing me to another post? Thanks.
    Got it. I think you want to point me to http://www.fdmguru.com/. I am relatively new in FDM area.
    Can you please point me to the exact location where there could be information about this problem.
    Edited by: rajneesh sharma on Oct 18, 2011 11:22 AM
    Edited by: rajneesh sharma on Oct 18, 2011 11:25 AM
    Edited by: rajneesh sharma on Oct 18, 2011 8:45 PM

  • How to create a new blank application

    Seems like a simple request. I don't have a .war or .ear file. I'm creating a new application from scratch. How do I get it set up on 9iAS R2 so I can start developing?

    The easiest way to do this is to use Oracle9i JDeveloper. It's an IDE that let's you do rapid application development. It is Oracle9ias-aware and can deploy to .ear or .war also.
    HTH,
    Ashesh Parekh
    Oracle9iAS Product Management

  • Create a new target application - Secure Store Service administration issues

    Hi,
    I am trying to create new target application, when I go to Secure Store Service in Centra admin I have:
    Cannot complete this action as the Secure Store Shared Service is not responding. Please contact your administrator.
    I have used this few days ago and avarything else is working fine on the server, and I have applications created with it running fine.
    Any help is appreciated.
    cheers
    Valko

    I know this has been open and possibly answered for a while but I thought I would mention what I ran into since I haven't found it posted anywhere.
    It was confusing because once I clicked the Ssecure Store Service I recieved the message that is mentioned here in this thread. With that, you can't make any changes. After trying numerous things I simply highlighted the Secure Store Service (the Applicaiont
    not the Application Proxy) and selected Properties from the Operations section of the ribbon at the top of the page. This opened the properties page where I was able to change the Application Pool that the service was using.
    In my case it was using the Sharepoint Web Services Default and changing it to the SecurityTokenServiceApplicationPool, which I had already configured to run on a named account with adequate priveleges (although it should run find on Local or Network
    Service if they are configured correctly in IIS) corrected the issue.
    Hope this helps someone...
    Cheers

  • How can I select 5-star photos in one catalog and use them to create a new catalog

    I've been using Lightroom since LR1. I now have several LR 5.5 catalogs generally organized by year and camera. I want to create a new catalog which will contain my best from each catalog. BUT, I don't want to remove the photos from their "home" catalog. The photos will continue to reside in both their original catalog and in the new "Portfolio" catalog. The easiest way to approach this is to filter photos in catalog "A" by rating, select all 5-star photos and create a new catalog containing just the selection. I don't want to export or remove them from their catalog or move them on disk. I want them to appear in BOTH catalogs. Since Lightroom is built on a database that merely points to image files, it seems like this should be possible.
    I realize I can create an empty catalog and select File->Import from Another Catalog... , then locate the photos one at a time by name and location clicking the import checkbox - tedious is an understatement when you have several 10's of thousands of photos.
    Any ideas?

    jimfeet wrote:
    Yes, that's an option I've considered. But as with any database, size is inversely proportional to speed - larger database equals slower performance. LR 5 is much better than earlier versions in this regard but when you reach 100,000 images you can feel it.
    This is incorrect. I accept that you think the database is getting slower, but the database (and really all databases) are designed to work pretty much the same regardless of the number of records, except for perhaps searching through the entire catalog. We have seen in this forum people who are now editing larger RAW files than a few years ago, they see it is slower, and decide it is the size of the database, rather than the size of their photos.
    What aspects of Lightroom are slow? If it's scrolling and displaying the previews and searching, then it might be the database. If its displaying images in the Develop module, it is NOT the database at all.
    Have you taken steps to improve the performance of the database, such as Optimizing it regularly? have you tried these performance tips: FAQ: Experiencing Performance related problems in Lightroom?

  • Use diff3 to create a new file based on "deltas"

    I had som dos software once... from Burton System, nifty. Tlib.
    Unfornately I have dumped the manuals.
    I need to create a new file based on deltas between to others, and I thought
    diff3 could do the trick; the thing is that i cant remember how.
    I want to sort bash_history to one file, and then make a diff between bash_history and "bash_sort".
    then i want to "uniq -d <bash_sort >bash_dups".
    based on this file, I want to use diff3 to recreate bash_history;
    unsorted without any duplicate lines, in kindof same way as the appeard.
    It is only outof curiosity, because i wrote a thing in bash and sed, which does
    it for me. (together with uniq and sort).
    but the technique is very useful, so feel free...
    thanks
    Mc Geek

    mc Geek wrote:
    Thanks for answering.
    first i have my .bash_history file
    I sort that to create bash_sorted.
    then i make the sorted file uniqe with uniq -d <bash_sorted >bash_uniqe.
    Its easy to make a diff .bash_history bash_sorted to recreate bash_history.
    and it is easy to create a diff between bash_unique and bash_sorted, which
    makes me able to recreate the bash sorted file.
    I'm not sure exactly what this achieves...
    the thing is I belive there is a (quircky) way i can use diff/diff3 to recreate
    only the uniqe lines of .bash_history.
    Are you trying to create a file which contains all the commands in .bash_history without repeats? Or are you trying to create a file which contains only those commands which occur exactly once? That is, you want to get rid of all occurrences of commands which occur multiple times.
    Its like using the difference between bash_sort and bash_uniqe as a kindof
    scaling factor and the diff between .bash_history and bash_sort.
    so that I maybe run a diff script on the the diff between .bash_history and bash_sort, and by that are able to recreate a .bash_history with only unique lines.
    Once you have bash_sort, why not just do
    uniq bash_sort
    to get a list without any repeats? This will work if you want to keep one copy of commands which appear multiple times but, obviously, if you want to eliminate all copies of such commands, it won't do what you want.
    - cfr

  • Using APEX to create a navigation application using Oracle Maps/Google Maps

    Hi Guys,
    Does anyone know if there are any tutorials out there which would show me the basis to create a navigation application with Oracle Maps/Google Maps in APEX?
    I have found tutorials that show me how to get the map onto APEX and to view it but I cant find anything else that would give me a more in-depth tutorial
    Thanks in advance for your help
    -Mark

    Hi,
    I hope that this link might help
    http://www.oracle.com/technetwork/developer-tools/apex/integration-086636.html#GOOGLE
    Br,Jari

Maybe you are looking for

  • Settlement profile does not exist

    Hi Gurus I am getting an error while creating a Sales order "Settlement profile does not exist" . Error description is "The system has found a settlement rule that is assigned to settlement profile ZSOR. However, this settlement profile does not exis

  • Can I embed Artwork in iTunes files on my G4 Flat Panel?

    Can I embed the artwork from a CD album in each file in iTunes so that they can be visible on my new Sonos sound system?  I have a iMac G4 Flatpanel with OS X 10.5.8.

  • User exit activation and deactivation in production server

    If I activate project of corresponding user exit and after transporting the request to Production , then for deactivating the project will a request is generated or should i login to Production for deactivating the project. Thanks

  • Conversion for One Orders

    Hi,     I am doing a Mass Conversion Program for One Orders in CRM. I am creating Service Orders based on incoming .CSV File. Which Function Module is better for Upload of Mass data Performance wise. 'CRMXIF_ORDER_SAVE'  Function Module or 'BAPI_BUSP

  • How to use templatebinding from DataTemplate

    I have the following code: <Style TargetType="local:LabelledList"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="local:LabelledList"> <ListView DataContext="{TemplateBinding ListSource}" ItemsSource="{Binding}"> <ListView.I