Deve/Test/Production Environments

My W2K laptop has Persoanl 9i and Forms (9.0.4). This is developemnt.
I would like to set up a test environment using Forms & Reports Services on a W2K server. Do I need the appserver or can I use OC4J as the "appserver" ? Also, can I load 10g Lite on the same server (as either OC4J or the appserver)?
For Production I assume I need the appserver and Forms & Reports Services. We will have no more than 50 users. Is that overkill or is OC4J ok? DB will be on a seperate server/box for production.
TIA for your help and input.
Ed.

Kevin,
The product does include export/import scripts for moving pages, content areas, and applications between instances. Search on "export" in the online help for the documentation. I will say that these utilities were a bit unstable in the EA release, and even in production they must be run from the command line (except for Application export). We have plans to make these utilities easier to use in a future release, and we're also looking at other ways to support propagation of content from development to production.
Regards,
Jerry

Similar Messages

  • Concept of Dev, Test, Prodn Environments

    Hi All,
    I am new to Oracle and my question may sound silly, please bear with me .....
    and have never worked before in a clients place
    I am trying to understand the concept of environments like dev, prodn etc.....
    A server has Oracle 10g installed in a server machine with LINUX OS. The DBA has created like 5 permanent tablespaces and 2 temporary tablespaces.
    He has also created 15 users who access the database with their own schema space and privileges. Each user creates database objects which belong to their own schema but can belong to any tablespace linked to the user.
    Say for example a user/schema is accessed by 5 ppl working on an application. They create tables and other database objects etc...which can be accessed by person loggin through that specific user/schema. They created an application and now want to test it.
    Technically they say push it to the test environment or even say prodn evrionment. I dont understand how does the concept of different environment fit into this picture and what does pushing mean?
    Is the the test environment another server running the oracle database or is it something else or a combination of things.
    Your help will be truly appreciated. Thank you

    Your question is not particularly an Oracle related question. If there is a "concepts" guide to follow, search for the software development life cycle (for absolute starters). Different sites have different environments, for example, sandpit, development, testing, acceptance testing, training, pre-production, production etc. Some sites run all environments on one server (not the best way) or each on seperate. Some mix development, testing etc in the same database instance and have production and training on a production server. They all loosely follow something like development->testing->production with some of the other environments in between. Best advice for you right now, don't screw up in production followed by don't screw up anywhere else otherwise you might have some angry developers, managers and your organisation paying them money to twiddle their thumbs while the project slips.

  • Best practice for maintaining URLs between Dev, Test, Production servers

    We sometimes send order confirmations which include links to other services in requestcenter.
    For example, we might use the link <href="http://#Site.URL#/myservices/navigate.do?query=orderform&sid=54>Also see these services</a>
    However, the service ID (sid=54) changes between our dev, test, and production environments.  Thus we need to manually go through notifications when we deploy between servers.
    Any best practices out there?

    Your best practice in this instance depends a bit on how much work you want to put into it at the front end and how tied to the idea of a direct link to a service you are.
    If your team uses a decent build sheet and migration checklist then updating the various URL’s can just be part of the process. This is cumbersome but it’s the least “technical” solution if you want to continue using direct links.
    A more technical solution would be to replace your direct links with links to a “broker page”. It’s relatively simple to create an asp page that can accept the name of the service as a parameter and then execute an SQL query against the DB to return the ServiceID, construct the appropriate link and pass the user through.
    A less precise, but typically viable, option would be to use links that take advantage of the built in search query functionality. Your link might display more results than just one service but you can typically tailor your search query to narrow it down. For example:
    If you have a service called Order New Laptop or Desktop and you want to provide a link that will get the user to that service you could use: http://#Site.URL#/RequestCenter/myservices/navigate.do?query=searchresult&&searchPattern=Order%20New%20Desktop%20or%20Laptop
    The above would open the site and present the same results as if the user searched for “Order New Desktop or Laptop” manually. It’s not as exact as providing a direct link but it’s quick to implement, requires no special technical expertise and would be “environment agnostic”.

  • How deploy PL/SQL Web Service through dev, test, production

    Please can you assist with this simple question from someone new to the Java world.
    I have created a set of web services from existing Stored Procedures in the development database. I now want to move these to the test database and later to UAT and finally to production. How do I change the data source to be used? A number of these will be on the same App Server but with different derivable names identifying the database to which they connect.
    With my BPEL process I was able to use Ant with a Deployment Plan to do search and replace for changed parameters but I cannot find the equivalent for these Web Services. Using 10.1.3.4.
    Any guidance appreciated.

    In JDeveloper the Application entered is created as a folder on my PC. I was surprised to find that this is then used to form part of the URL for the web service.
    This being a built in feature, lead us to the conclusion that we could use this to divide our web services between databases. The calling programs, all internal to the business, can derive the environment and establish the correct naming of the URL to link to the correct database.
    We have licences for 2 physical Servers. We have 4 environments - dev, test, uat and production. What would be the normal method to run multiple environments on the same Application Server. We want production on 1 server and the others on the other server.
    Are there guidelines for this situation.

  • Customize Portal application to access Dev/Test/Production SAP systems

    Hi All,
    We have requirment from client, to develop a custom portal application.
    1. When user login into Testing portal (eg., Development or Testing system or UAT system or Production system) and want to access the all (Dev / Tes / UAT / PRD) system SAP GUI with SSO concept from customize portal applciation once he select the dropdown list either Dev/Test/UAT/ PRD.
    Our code.....
    in layer-config.xml file, we have defined systems
    - <layer-config>
    - <system>
      <layer>Dev</layer>
      <internal>true</internal>
      </system>
    - <system>
      <layer>Test</layer>
      <internal>false</internal>
      </system>
    - <system>
      <layer>PRD</layer>
      <internal>false</internal>
      </system>
      </layer-config>
    In Java code
    public class Accesstoall extends AbstractPortalComponent {
         public void doContent(
              IPortalComponentRequest request,
              IPortalComponentResponse response) {
              response.write("Select the system");
              try {
                   LaunchpadConfigReader reader =
                        new LaunchpadConfigReader(
                             request.getPrivateResourcePath()
                                  + "/"
                                  + "layer-config.xml");
                   for (int i = 0; i < reader.getBackendSystemConfig().size(); i++) {
                        response.write("<br>"+
                             reader.getBackendSystemConfig().get(i).toString());
                        if (reader
                             .getm_backendSystemURLInternal()
                             .get(i)
                             .toString()
                             .equalsIgnoreCase("true")) {
                             response.write(
                                  "<a href='"
                                       + "http://vep"
                                       + reader.getBackendSystemConfig().get(i).toString()
                                       + "wd.eu.xerox.net:8219/irj/servlet/prt/portal/prtroot/com.sap.portal.appintegrator.sap.Transaction?System=SAP_BW&TCode=SE38&Gui=WinGUi"
                                       + "'>launch system</a>");
                        } else {
                             response.write(
                                  "<a href='"
                                       + "https://ep"
                                       + reader.getBackendSystemConfig().get(i).toString()
                                       + "ns3.eur.xerox.com/irj/servlet/prt/portal/prtroot/com.sap.portal.appintegrator.sap.Transaction?System=SAP_BW&TCode=SE38&Gui=WinGUi"
                                       + "'>launch system</a>");
    I want to call the XML value in JSP file as dropdown list and once dropdown selected, user needs to display link of SAP GUI system in table.
    Please can you advise which approach will be the best on external and internal portal.
    Appreciate on your feedback.
    Thanks,

    Hi Praveen,
    for internal portal, you can create 4 different system object in portal landscape for 4 different systems and then implement sso between portal to those system and use sap transaction iview
    for external portal, go with your way.
    Regards,
    Sen

  • Deployment from DEV to Production environment

    Hi,
    What are the best possible ways to deploy the visual web parts and Pages from development environment to Production environment.
    As I am very much new to Sharepoint, I would like to have the safest methods to do the deployment into production. Please also suggest the prerequisites.
    I have a solution with number of visual web parts in the development environment which is working fine. Need to move the Visual web parts to production (Existing site). So please suggest the safest methods.
    Thanks and Regards,
    Satish
    Sathiish Reddy

    Hi Satish,
    From your description, my understanding is that you want to deploy your solution from development environment to production environment with a safest method.
    These links below about moving content from environment to another environment could be helpful to you:
    SharePoint 2013 Dev/Test/Production environment - Moving content
    http://sharepoint.stackexchange.com/questions/78483/sharepoint-2013-dev-test-production-environment-moving-content
    How to deploy webpart on production (not debugging) server?
    http://sharepoint.stackexchange.com/questions/17779/how-to-deploy-webpart-on-production-not-debugging-server
    you could also have a look at this link below about SharePoint Content Deployment Wizard:
    How do you deploy your SharePoint solutions?
    http://stackoverflow.com/questions/9543/how-do-you-deploy-your-sharepoint-solutions
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Segregation of testing and the production environments- Oracle EBS implementation project

    I am currently auditing a oracle EBS implementation and I need to test the segregation of testing and the production environments, How can I approach that ?

    In Oracle EBS environments TEST and PRODUCTION are different systems altogether, you can say two entities which are identical in features/data but physically different. So you may have to test on below
    1.) DB level passwords (different in both instances) and are following the statndard corporate policies.
    2.) Unwanted application users are end-dated in TEST instances.
    3.) Data is masked appropriately in TEST instances.
    regards
    PRavin

  • Loof -i output showing webcache on prod EBS iSupplier (but not in dev/test)

    Hi,
    I inherited an Linux EBS install (12.0.6) with iSupplier on an external web server. The web server is front-ended by a reverse proxy. Using lsof -i to look at the ports I noticed a difference between my Test and Production environments.
    In production the lsof output contains a number of the following entries:
    httpd     7062     applp25     18u     IPv4     521062911     TCP     *:webcache     (LISTEN)
    httpd     7062     applp25     32u     IPv4     546736321     TCP     pwk-sv-wb10.foo.bar :webcache->pwk-ap-ap3.foo.bar:11940     (ESTABLISHED)
    applp25 is the applmgr account and pwk-ap-ap3 is the reverse proxy.
    In my test environment I do Not see anything related to webcache and when I do see communication back to the proxy it’s always been on the Web port
    e.g.
    httpd 13149 applt25 32u IPv4 547891775 TCP pwk-sv-wbt10.foo.bar:8040->pwk-ap-ap3.foo.bar:11963 (ESTABLISHED)
    I don’t do anything different starting/stopping processes in Prod, Test or Dev e.g. adstrtal.sh.
    While I understand that Oracle has Web caching technologies I don’t have any experience with them and am not quite sure when to begin looking. Obviously I plan on comparing the context files, etc., just hoping for some suggestions on where else to look and references I should look at.
    Thanks in Advance
    ken

    Solved....for some reason /etc/services as distributed in Redhat (others ?) has port 8080 associated with webcache

  • What is the best way to port complete applications from DEV - Test - PRD?

    Hi,
    One of my customers recently asked me, Supposing I do the complete integrations and modelling in SOA Suite on the DEV Environment. Then,
    What is the best way to port complete applications from DEV -> Test -> PROD ??
    Also, since the URLs in use in the DEV environment would be very different from other environments, what is the easiest way to maintain them, and to build in Access Control mechanisms ?
    Best Regards

    Hi AJ,
    Nice PDF !
    Though the PDF does give a basic idea as to how we can go about the deployments using ANT and EM in Test and Prod, it doesn't really give extensive details. For eg. ANT would obviously need huge ANT scripts to be written for migrations to multiple Test servers, etc.
    Similarly, when we talk about EM, does it mean each of the services has to be manually deployed on Production ?
    I am sure we would be looking more towards a fully automated solution. No ?
    Best Regards
    Nitin

  • How does your entity, or entities you have worked with, manage data for their dev/quality/cert environments?

    Background- We have development and certificiation environments for SAP changes. These environments are kept in sync by ensuring that we adhere to a progression for configuration changes- they always move thru the same dev, quality, ceritfication, production process with testing at each phase.
    As a business user, a challenge I encounter is having production type data available in the dev/qual/cert environments so that I can adequately test changes.  We refresh our environments periodically to a copy of production, including data.  After the refresh, no new data goes to these environments, only test data as entered by individual users and testers.  This means that tests performed soon after a refresh have a lot of relevent production data to use for testing, but as we move further thru the year, the data is less and less avialable and less relevant.
    Some of our changes are impacted by volume, but due to how we handle our environments, volume impacts are difficult to test or asess.
    How do you manage production-like data for your dev/qual/cert environments? Do you encounter this same issue or have you found a solution?
    Thank you!

    Thanks for your comments, it is clear you understand my plight.  The trouble is fully understanding what Apps and App Features are transferring data in the background any time you happen to turn WiFi to on (even if you have had it off most of the day or night).  Obviously things like Location Services can constantly be sending and receiving data from my iPhone without any action on my part.  Also if you have things like photo backup on the iCloud then each time you take a photo you are sending a copy out.  All App Updates if set to Automatic also can add up to quite a bit of Data.  Reading the News on AP or scrolling through FB News Feed is actually adding up to a lot of Data.  There could be other culprits that I am not even thinking of.  I don't want to turn Apps like Find My Phone off or turn iCloud off due to loosing the value of such a program entirely.  Again thanks for your quick response. 

  • ONE BI publisher for DEV and Production

    Hi,
    is there anyway I can setup ONE BI publisher for both the dev and production environment. the dev and production are in
    separate boxes? the reason I need to do this is that oracle charges licenses fees for the development as well.
    Thanks,
    Odeh

    Hi,
    Iis technically possible to have two different databases pointing at BI Publisher, but you want to make sure the users can access the correct reports. But what I would say is that it isn't a particular good way to have your environments setup. The point of having a dev and a prod environment is to ensure that things are tested and proof of concept can be carried out without affecting the live systems. I would suggest that the separate licenses is worth the cost from my own personal experience, otherwise you risk having a live environment that is quite unstable.
    Suzanne

  • Solution Manager Install on Windows/MSSQL-Dev/QA/Production R/3 on AIX-UNIX

    Hello,
    We are about to install Solution Manager Install on Windows/MSSQL.  Our current R/3 4.7 Enterprise environments (Dev/QA/Production) are installed on AIX-UNIX servers running Oracle 9i. 
    Is installing Solution Manager on a windows environment compatible with our R/3 servers in relationship to our transportation management system existing in a UNIX environment?  i.e. can Solution Manager on windows control transports across our UNIX landscape?
    If so, could someone point me in the direction of documentation/notes on this?
    Thanks,
    Laurie

    You will have to load the Unicode kernel and here is the link to OSS where you can get get the download of SOLMAN for AS/400
    https://websmp110.sap-ag.de/solutionmanager , then choose this one:   ZIP 51033506_7 NW 7.0 SR3 UC-Kernel 7.00 OS/400  Info  550479 24.04.2008 .
    The install manuals are out there as well.

  • Coldfusion 11 SSL Certs applied - The APR based Apache Tomcat library which allows optimal performance in production environments,

    Coldfusion 11
    Windows Server 2012 R2
    Both the Coldfusion admin and additonal site work fine on HTTP.
    As soon as I attempt to enable SSL websockets and install SSL certs, the Coldfusion 11 Application service will not start. I followed the steps below....
    Coldfusion 11 - Web Sockets via SSL
    The Coldfusion-error.log shows
    Jan 26, 2015 3:21:23 PM org.apache.catalina.core.AprLifecycleListener init
    INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path
    Server was a cloned VM of the test server with developer copy of CF11, but license has been purchased and applied. SSL certs have been imported successfully, paths are correct in CF Admin to the cert file etc.
    Do I need to install another version of Coldfusion to get around this issue or is there a download update I need to apply?
    If i reconfig the \cfusion\runtime\conf\server.xml to comment out the SSL sections it works fine.
    Any assistance welcome - I can't allow this site to made publicly available with using SSL.
    SM

    @Scott, first are you running update 3? If so, let’s clarify at the outside that, as that bug report (you point to) does indicate in the notes below it, there is a fix for a problem where this feature broke in that release.  And as it notes, you can email [email protected] to request the fix (referring to that bug), or you can wait for it to be released publicly as part of a larger set of fixes.
    If you are NOT on update 3, or you may apply the fix and find things still don’t work, I would wonder about a few things, from what you’ve described.
    First, you say that the CF service won’t start, and you offer some lines from the ColdFusion-error log. Just to be clear, those particular error messages are common and nothing to worry about. They definitely do NOT reflect any reason CF doesn’t start. But are you confirming that that time (in the log lines) is in fact the time that you had started CF, when it would not start? I’d suspect not.
    Look instead in the coldfusin-out.log. What does THAT log show at the time you try to start CF and it won’t start? You may find something else there. (And since you refer to editing the server.xml file, you may the log complains that because of an error in the XML it can’t “parse” the file. It’s worth checking.
    You say also that you have confirmed that “paths are correct in CF Admin to the cert file”. What path are you referring to? There’s no page in the CF admin that points to the CACERTS file in which the certs are stored. Do you perhaps mean on the “system info” or “settings summary” page? Even so there’s still no line in there which refers to the “cert file”.
    Instead—and this could be a part of your problem—the cert file is simply found WITHIN the directory where CF’s pointed to to find its JVM. Wherever THAT is, is where you need to put any certificates. So take a look at the CF Admin, either in the ”java and jvm” page (and the value of its “Java Virtual Machine Path”), or in the “settings summary” or “system information” pages and their value for “Java Home”. Is that something like \coldfusion11\jre? Or something like \Java\jdk1.7.0_71\jre? Whichever it is, THAT’s where you need to put the certs, within there (in its \lib\security folder).
    Finally, when you say that if you “comment out the SSL sections  it works fine”, do you mean that a) CF comes up and b) some example code calling your socket works, as long as you don’t use SSL?
    To be clear, no, you don’t need any other version of CF11 to get websockets to work. But if you are on update 3, that may be the simple problem. Let us know how it goes for you with this info.
    /charlie

  • Can we have two R/3 Source Systems(Dev & Test) in BW Development....?

    Hi All,
    Till now we have only BW Development box..
    Our Landscape for R/3 side is R/3 Development, Testing and Production.....
    Already we have connected R/3 Development with BW Development... It is working fine as now... We have finished our task at Development...
    My doubt is <i><b>Can we Configure R/3 Testing to BW Development</b></i>....eventhough R/3 Development is already configured with BW Dev....
    <b>Can we have two R/3 Source Systems(Dev & Test) in BW Development....?</b>
    Please help me out in this issue....
    Your help will be appriciated...
    Regards,
    Kiran Telkar

    Hi Kiran,
    You can create second source system which will point to SAP R/3 Quality .
    If you have transported all datasource activation requests to QA environment then all datasources are available in R3QA as well.
    After creating source system , replicate datasources.
    Only thing you need to do is to replicate efforts of assigning source system (R3QA)-> creating transfer rule -> Create info package and load data.
    Hope that helps.
    Regards
    Mr Kapadia
    Assigning points is the way to say thanks in SDN.

  • Webservice client : different wsdl file for test/production environment

    In an ADF application, I need call a web service in model project
    In my company, we have 2 environments : test and production.
    This webservice is deploye in test server and production server.
    So there are 2 different wsdl file for test/production.
    I want to make my ADF Application portable cross the 2 environments.
    An environment variable can indicate in which environment the ADF application run.
    According to this variable, application choose which wsdl/endpoint to call.
    If I use "web service Data control" wizard, how can I achieve this?
    If I use "webservice proxy" wizard, how can I achieve this?
    Thanks!!!!!!

    Hi,
    I have a model project with ws proxy client and on this proxy I added an adf ws connection called CustomerExperience
    then I can do this.
    // a test to try to overrule the adf ws connection from EM
    Context ctx = null;
    try {
    ctx = ADFContext.getCurrent().getConnectionsContext();
    WebServiceConnection wsc = (WebServiceConnection) ctx.lookup("CustomerExperience");
    CustomerExperience customerExperience = wsc.getJaxWSPort(CustomerExperience.class);
    } catch (NamingException e) {
    LOGGER.severe("got web service loading fault: "+ e.getMessage());
    throw new JboException( messages.getString("NOM-999"),
    "NOM-999",
    null );
    I exported this to an adf jar and added this to a webapp.
    On runtime the ws connection is not dectected by the webapp so need to copy this ws conn to the connections of the webapp. This works
    but can I change it from wlst instead of EM , is this possible?
    I don't see the WS connection in wlst (oracle common) adf_listURLConnection('CE_Portal')
    thanks

Maybe you are looking for