CMSDK 90420 without an Application Server??

Hello,
as we don't use an Application Server now, it would just be needed for the CMSDK. Unfortunatelly, this costs are not possible as we already have to license some new databases.
So, my questions are:
1.) Would the Java Edition of the Application Server be enough for the CMSDK?
2.) Is it possible to use the CMSDK without using a Application Server? Which server could you recommend? And how much more complicated would a deployment and configuration be?
Many thanks in advance.
regards
Bart

OK. I found part of the answer.
Concerning the error: "javax.xml.stream.FactoryConfigurationError: Provider com.bea.xml.stream.MXParserFactory not found" The solution is to put the sjsxp.jar file (although it does not contain the missing class) on the classpath.
However, I am still concerned about the workaround with respect to the web.xml file. Why is that needed and what are the effects of regressing from version 2.5 to 2.4?
Thanks again,
Gaetan

Similar Messages

  • Run Form in HTTPS or SSL mode without installing Application Server

    Hi all,
    I have installed Oracle Database 10g and Oracle Developer suite 10g in my PC (Window XP). Now I want to implement SSL or running forms in HTTPS mode instead HTTP and I don't want to install Application server.
    Any workaround is there to run Forms in HTTPS mode without installing Application server.
    Thanks,
    Omer

    Performance issue? How old is your hardware? I am running OAS 10.1.2.3 on a Server 2003 VM which basically consumes 512MB RAM and ludicrous amounts of CPU/IO.
    In any case: as said if you want to test SSL in a real life scenario then enabling SSL in OC4J is not what you want to do. In production the configuration is completely different, as there you would configure Apache to run your forms via SSL.
    What comes to my mind would be to install Apache 1.3 (this would be the version OAS 10.1.2 uses), configure mod_oc4j there and configure it with SSL. On the other hand this also isn't the configuration you have in production so this also is not exacly what you want.
    If you want to verify if your forms application will run via SSL then most certainly it will run without changing your sources. The only things you might have to change would be if you do HTTP Requests from the database to your application server via utl_http or from the client to the application server via java beans or via the java importer.
    But for tests I'd strongly recommend doing it via an application server installation, and not via developer suite.
    cheers

  • Discoverer viewer without oracle application server

    Hi,
    has anybody heard, how to use the discoverer viewer with
    another application server (than oracle).
    since j2ee is a standard there schould be a way.
    our administrators will not look after another
    application server, just to get some reports.
    so i have to get it running on a non-oracle-application server (or worst case: choose another reporting tool)
    thanks,
    Udo

    Discoverer is available and ships as a component of Oracle Application Server. Oracle Application Server via Oracle HTTP Server provides a proxy capability to support other web servers such as Netscape iPlanet and Microsoft IIS. The proxy capability will enable client applications to directly route requests to their native web server and these then get routed to Oracle Application Server and the Oracle HTTP Server. For detailed information on support for these web servers please refer to Oracle Application Server documentation.
    Regards
    Discoverer Technical Team

  • Soa suite without oracle application server

    Hi everybody,
    I'd like to know if we can use the oracle soa suite with an application server other than Oracle Application server, for example tomcat.....
    Thanks

    Hi,
    Oracle SOA Suite 11gR1 is not cerified to use against any app servers other than Weblogic server. So you won't be able to find the relavent documentation as well. Other app servers may be supported in Patchset 2.
    Oracle SOA Suite 10g, runs on OC4J, can be used with multiple app servers. Some of the supported servers are Weblogic, Websphere & JBoss.

  • RMI LoadBalancing and failover without an application server.

    Hi All,
    I have just one RMI object doing mathematical
    calculations.I want to provide
    1. Load Balancing and
    2. Failover
    for this rmi object.Few Application
    servers(like weblogic) provide a wrapper over sun's
    rmi to produce replica aware rmi stubs but they force
    to use vendor specific (like weblogic rmi-registry)
    rmi-registry, which runs within the app server.
    My problem is :
    I dont want to run the whole app server to just run
    one rmi object ?
    Is there a way using which I can provide load balancing to my single rmi object ?
    Thanks in advance for the help !!
    Regards
    Rais

    To provide load balancing the best way that I know of would be to create a front server that handles distribution of work between several back servers. This would be how they do it in app servert load balancing to distribute the load amonst several app servers like BEA Weblogic, Microsoft IIS and others. So create a "dummy" from RMI server that:
    1. Queries the servers that it knows about and finds out how how many request it can handle and how many request it is currently handling (they would keep track internally).
    2. Use an algorithm to determine which server to send the request to
    3. Pass the request through.
    What a request is would probably be best designed as an interface like IRequest so regardless of the addition of IRequest i the system the RMI back end servers are sure to be able to process it. How ever ther will always be a maximum number of request that can be handled that can only be changed by adding more resources (RMI server machines).
    RMI request ---> RMIServer ---> RMIServer 1 on machine 1
    ---> RMIServer 2 on machine 2
    ---> RMIServer 2 on machine 2
    You would most likely want to have a base interface that defines a Server in your system like IServer because the front RMI server from above is really nothing more that a regular instance of your server implementation except configured to be a load balancer.
    Possible configuration file for the servers(server.conf):
    Config for the front load balancing server would look like this:
    loadBalancer=1 #Tells the server to use a LoadBalancerRequestHandlerImpl from startup
    balanceServers=http://machine1:port/server1,http://machine2:port/server2,http://machine3:port/server3
    All Other servers like this
    loadBalancer=0 #Tells the server to use a regualar RequestHandlerImpl from startup
    balanceServers=
    The about RequestHandlerImpl,LoadBalancerRequestHandlerImpl are just some ficticious implementation of you Business Process stuff like login,add user in User database app. etc.
    FAILOVER
    By failover I assume that you are refering to if an app fails then who handles it's request that it currently has. Well you can do this qite simple by making the back end servers (request servers) knowledgable about the fron server(s)(load balancers). Then when ever (assuming a nice server) will check it's config for who it's load balancer(s) are and hand over the sessions.
    Well since this is RMI and assumig that you are not doing login stuff the above is not practical. The load balance servers(s) would may be in a back groud thread(low priority) try to comm with it's servers from the balanceServers property (from the earlier config file, now in memory in some data structure) and if comm failes with a particular server then remove it from the list. THen it will no longer be eligible to recieve request.
    I ama bit long winded in my explaination but I hope this helps.
    I hope that

  • Authentication and authorization capability in weblogic application server

    Hi,
    Need input from architecture point of view -
    Requirement is typical - have to build a web center portal application with authentication and authorization capability.
    I can think of three architecture options:
    1. weblogic server (where webcenter portal application will be deployed) with oracle IDM (or any other full blown IDM suite)...
    2. weblogic server with Active Directory (or any other LDAP directory), and a LDAP authenticator is configured in weblogic...
    3. only weblogic server (users created in weblogic admin console)...
    Obviously 1st one is costliest option (product cost, infrastructure cost, maintenance cost) and most flexible. However I am discarding it purely because of cost.
    Confused between 2nd and 3rd.
    2nd option - separate user store, user can be added/deleted without touching application server, cost wise - 1 extra server and 1 LDAP directory product (or open source LDAP server)...
    3rd option - application server becomes very 'heavy' with all users information, you need to access server to add/delete users, probably cheapest option money wise... However it might affect application performance if users grow large...
    Please let me know if I should consider more parameters/points before deciding. Is there any important thing I am missing? Your input appreciated.
    Thanks.

    Hi,
    You are right your first requirement make more costly and complex environment.
    I would recommend to go with Second option instead of the third one.
    In cause in future if you want to use different server also you will have option to use external AD.
    Well now you will think why I recommend you second option instead of the third option.
    external LDAP is more secure than internal one.
    If you have any further query let me know.
    Regards,
    Kal

  • Does BC4J needs an Application Server?

    Is it possible to use BC4J without an Application Server?

    Gabriel:
    If your client is HTML browser, you need an App Server (servlet container).
    If your client is not HTML, e.g., JClient, you can run in the local mode. In that case, you don't need App Server.
    Thanks.
    Sung

  • How to handle file on application server without coading?

    HI all,
    can anybody tell me How to handle file on application server without coading? Is there any solution?
    Thanks in advance.

    > can anybody tell me How to handle file on application server without coading? Is there any solution?
    what is that you want to handle. what you do if you don't code ...

  • How to display a file from Application server without downloading it to local drive

    I want to dispaly a file from Application server without downloading it to my local system.
    i tried the below method but it didn't work.
         CALL METHOD CL_GUI_FRONTEND_SERVICES=>EXECUTE
          EXPORTING
            APPLICATION            = L_FILE
            DEFAULT_DIRECTORY      = L_DIR

    Hi,
    Use open dataset to read file from application server.
    try like this sample code:
    data : p_file like ibipparms-path.
    data : rec(350) type c.
    data:  g_delimiter(1) type c value ','.
    maintain the file path in p_file. then
    open dataset p_file for input in text mode encoding default.
       IF SY-SUBRC = 0.
    do n times.
    READ dataset p_file into rec.
    split rec at g_delimiter into your internal table fields like it-id it-name it-age.
    append it.
    clear it.
    enddo.
    close dataset p_file.
    Now you have the data in internal table it.

  • Can we Run 10g Forms & Reports without Application Server

    Currently We are using form 5 and reports 3.5
    we are willing to upgrade .
    we are told that we can upgrade only to 10g developer suit
    and for that Application Server is must
    Our requirement is for LAN based application only
    Do we have to go-in for application Server
    DOes the 10g forms and 10g reports have Form server /report server which can help us to run application using Browser but without IAS
    CK

    Chaand,
    for production environments you must run Forms and Reports through Oracle Application Server as there no longer is a client-server runtime. For development puposes tehre is a HTTP server in Oracle Developer Suite that is used to run both servers.
    Frank

  • OCS (CMSDK) and Oracle Application Server 10.1.3

    Hi,
    Is CMSDK or OCS (Oracle Content Services) part of Oracle Application Server 10g 10.1.3?
    Regards,
    Jigar

    Its recommended that you should use same versions of OAS and Oracle BAM.
    For integration between OAS components and BAM you can check BAM tech notes (http://www.oracle.com/technology/products/integration/bam/10.1.3/htdocs/1013_support.html#technotes)
    Hoping it will help you.

  • Deploy 9i Forms without Application Server ?

    I wonder, whether I could deploy a Forms 9i Application without the use of the Application Server. Can anybody tell me, whether it is necessary to purchase any Oracle 9i Application Server licences, just because I want to deploy a simple Forms 9i application ?
    - Markus

    I am developing forms 9i and reports 9i applications WITHOUT APPLICATION SERVER. I HAVE ONLY DEVELOPER SUITE 9i.
    I have installed Dev suite 9i on middle tier. Forms services and Reports services are installed with Dev suite 9i.
    I develop applications on my desktop and Install them on client machines where no Dev suite or AS installed.
    Please mention what is the trouble you are having and I might serve you, if you are having the same problem that I HAD.
    Prasad.

  • Can apex work without the oracle applications server? How?

    My question is just what the title says.
    Can apex work without the Oracle applications server?
    I've heard it needs a web server to work but not necessarly the oracle applications server.
    Is it true?
    With ONLY apache installed can apex work on top of it?
    Thanks
    Don't forget to assign points to those who help you! (Mark the thread Helpful/Correct)
    My Homepage
    Best Regards
    Edited by: Igor Carrasco on May 29, 2009 2:59 PM
    Edited by: Igor Carrasco on May 29, 2009 2:59 PM

    Hello,
    Take a look at the Installation Guide which covers all the different options you have (as there are a few variations) -
    http://download.oracle.com/docs/cd/E14373_01/install.32/e13366/toc.htm
    but yes, in short you can have a configuration where there is no external webserver which uses the embedded PL/SQL gateway.
    Hope this helps,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Load flat files in batch without storing files on application server

    Hi SDN-ers
    We would like to load flatfiles into BW in batch but .... and this is the tricky part, without storing the file on the application server. We are able to call remote function modules from outside the system so maybe we can attach the file as an internal table with a remote function call and post it in PSA. Anyone ever tried this ?
    Thanks,
    Hans

    Hi,
       I would suggest to upload the data in flat file in a Database table in BW and then
       create a generic extractor on top of it to load the data into Cube or ODS . In this
       way you will have a copy of the data in files.
    Regards,
    Prakash

  • Servler without application server

    Hello,
    Can I use a Servlet without application server and only with web server?
    I`m working in UNIX and Netscape web server.

    Yes - you only need a servlet engine to work with your webserver - you don't need a full-blown app server. Try Tomcat:
    http://jakarta.apache.org/
    Which already has its own "built in" servlet support (and it's free!!)

Maybe you are looking for

  • New to iMovie, create live video and audio?

    Hello, I am trying to create a video of a live musical performance to post on youtube and have figured out how to use the isight to get a video but can I use the biult in mics to record live audio with the video?

  • How to get rid of the java update virus?

    Everytime i go on a web page something pops up saying to install Java Runtime Environment in order to web content and it gives me the option to click more info (to go to the page to download the Java Runtime Environment) OR ok. Before i clicked ok un

  • Mac Pro and multiple monitors

    I have a new Mac Pro (Late 2013) even though I bought it new in 2015. I have three monitors I'm trying to run on it. 2 are older Apple Cinema HD Displays. Display Type: LCD Resolution: 1680 x 1050 Pixel Depth: 32-Bit Color (ARGB8888) 1 is a Wacom 21U

  • Not a compatible version of Photoshop...can not open my psd files...

    After "save as" a psd file, I am unable to open it.  "Could not complete your request because the file is not compatible with this version of Photoshop."..  "There was a problem reading the layer data.  Read the composite data instead ?"  It is no pr

  • Spry Slideshow works in Firefox/Safari but not in Explorer

    I'm still unable to get my slideshow to work. It works fine in Safari and Firefox, but nothing shows up in Explorer. Does anyone have any ideas or maybe another reputable source for a different slideshow widget? www.epaaudio.com