Creating a offline version of an existing Web application

Hi,
I'm working on converting a small portion of an existing web application into offline version (using Webtogo platform and Oracle Lite 9i) . The Web application is developed using active server pages and Oracle 9i is used as backend. The offline version will be developed using Java Servlets and JSP's.
To give a small background, the existing system is used by the salesman to capture lead and contact informations. This system also provides the salesman with their customer details and sales history.
I would need some more details on DB triggers and stored procedure.
1. How to create DB triggers in Oracle Lite 9i.
2. My application has many triggers associated with a table. Do i need to created all of them in my offline version?
I don't need these in my offline version. But, if i don't include all the triggers, i get error while publishing an application.
Pls post you reponse.
regards,
Deepak

jeffsese:
I have used the "duplicate the whole project" route with one variation, to moderate success. I use DollyXs to create the CS4 project and then copy the source files, one by one, to the new project/directory. After creating the project and before I move the source, I compile/link the project just to make sure I have everything pointing at the right place.
I know that some will scoff at my duplication of the codebase and sometimes I agreed with them, but we had one individual who tried to use the same codebase for all versions of InDesign, and whereas it took one of us a couple of days to make a simple change to all six different projects (Mac and Win) it took him three weeks to a month.
In the end you will have to decide for yourself.
R,
John

Similar Messages

  • Creating an NEW version of an existing web site

    I thought i was being smart, so i selected my existing fully operational web site in iWeb and then changed the Site Name and Published it to a local folder (different to the original site).
    This is OK I can make changes to this new site, BUT how do i get back to the original operational site? which I intend to upgrade for a while before the new site is uploaded to the www
    I cannot find anyway to open an existing site.??
    Tha
    John

    Unfortunately, iWeb cannot open published sites. If you are going to be working on multiple versions of a website I would suggest splitting your domain file you can end up with something like this:
    Though, only one site can be open in iWeb at a time

  • Standard process for creating a new version of an existing report

    Hi All,
    We are using Siebel 8.1 with BI Publisher.
    Does any one know the standard process for creating a new version of an existing report - ie if 'BIP Report XXX' is created and works correctly from the siebel view but then an enhancement is developed, how is the enhancement deployed so that the new version completely replaces the old?
    One suggestion was:
    You can upload a new version of an existing report. You have to navigate to Administration - BIP > Report Template Registration... search for the report you need to replace (I would say that the new rtf file need to have the same name). Now you have to go to the "Template" column where there is the reference to the report file already uploaded but you don't have to click on the link that is displayed you have to click near the link in order to place the cursor on the field then you will be able to see the Multi Value Grup icon .. you click on it and you will be able to upload a new file.
    We have tested this process today, however it is not effective in replacing the old version of the report.
    After carrying out this process (including related steps from bookshelf - ie "click upload files"), we can generate the report from the relevant siebel view and the previous version of the report is still generated.
    Is there a standard process for replacing an existing report that is effective?
    Thanks.

    Hi ,
    This currently seems like a bug , we have encountered this too.
    work around is you have to delete the rtf files from server Siebel\client\temp\XMLP directory and upload them again so that they are not cached any more.
    same on dedicated client you may have to delete relavant files form siebel\client\temp\xmlp directory and upload again.
    Thanks,
    Vamsi

  • Portal Integration of an existing Web Application

    Dear all,
    we are preparing for the pbnw certification. Our way is to deploy our existing web application on the J2EE engine and make it accessible via the portal, i.e. where are taking the certification scenarios J2EE-DEP and BP-EP.
    Up to now, my idea is to integrate the web surface of our application into the portal as far as this is possible without too much effort. Alternatively it would be possible to access our application via an URL-iView however to my feeling this is not a real integration. Did I get things right assuming that would meet the requirements for pbnw certification?
    I read that it is necessary to follow the portal's look and feel by applying SAP's CSS. Does anyone know where to obtain these? And what is the easiest way to replace the currently used stylesheets by them?
    Millions of questions...
    Thanks a lot!
    Regards,
    Angela Grüner.

    Dear Angela
    Please have a look at the following Weblog link which gives a detailed description of the method to create a URL iView using Application Integrator:
    /people/markus.pfeffer/blog/2005/12/14/integrating-your-web-front-ends-into-the-sap-enterprise-portal-using-the-application-integrator
    If you adopt this method to create the URL iView, then it meets the requirement for EP-BP Certification.
    The blog also includes an example of HTML code with applied SAP CSS. Please go through this section to implement EP look and feel.
    Hope this helps!
    Regards
    Atima

  • Can I run existing web application on portal 4.0?

    Hi,
    I have existing web application running on tomcat server. Can I move it to portal
    server ? If yes, what do I need to do?
    Thanks in advance,
    Meghana

    You sure can. WLP4 requires WLS6.x (check the download site for correct
    version). You can deploy your web app using the WLS console.
    Subbu
    Meghana wrote:
    Hi,
    I have existing web application running on tomcat server. Can I move it to portal
    server ? If yes, what do I need to do?
    Thanks in advance,
    Meghana

  • How to create different log files for each of web applications deployed in OC4J

    Hi All,
    I am using OC4J(from Oracle) v1.0.2.2 and Windows2000. Now I want to know
    1. how to create different log files for each of my deployed web applications ?
    2. what are the advantages in running multiple instances of oc4j and in what case we should run
    multiple instances of OC4J ?
    3. how to run OC4J as Windows2000 Service rather than Windows2000 Application ?
    Thanks and Regards,
    Kumar.

    Hi Avi,
    First of all I have given a first reading to log4j and I think there will some more easy way of logging debugging messages than log4j (If you could provide me a detailed explanation of a servlet,jsp,java bean that uses log4j and how to use log4j then it will be very helpful for me). The other easy ways (if I am not using log4j) to my problem i.e creating different log files for each of web applications deployed in oc4j are
    I have created multiple instances of OC4J that are configured to run on different ports and so on each instance I have deployed a single web application . And I started the 2 oc4j instances by transferring thier error/log messages to a file. And the other way is ..
    I have download from jakarta site a package called servhelper . This servhelper is a thread that is started in a startup servlet and stopped in the destroy method of that startup servlet. So this thread will automatically capture all the system.out.println's and will print those to a file. I believe that this thread program is synchronized. So in this method I need not run multiple instances of OC4J instead each deployed web application on single instance of oc4j uses the same thread program (ofcourse a copy of thread program is put in each of the deployed web applications directories) to log messages on to different log files.
    Can you comment on my above 2 approached to logging debugging messages and a compartive explanation to LOG4J and how to use LOG4J using a simple servlet, simple jsp is appreciated ...
    Thanks and Regards,
    Ravi.

  • How to create and save a file in flex web application ?

    Hi,
          I want to create and save a file form flex web application. Is it possible ?
    I have done some googling and found that its only possible through file referece, which needs some serverside implementation be called.
    Is it not possible with file reference to create and save file directly ?
    Can any one suggest how to over come this.
    Thanks in advance.

    Alex,
    code written with the Flex Builder 3 libraries will certainly run in Flash Player 10. However, what you need is not so much the capabilities of FP10 but the library functionalities of the Flex 4 package. And I think that Flex 4 code will only run in FP10 and not 9 (but haven't tested this as at work we have not yet been permitted to upgrade, so there is not a lot of point going for Flex 4!).
    Richard

  • How to import javafx into a existing web application??

    how to import javafx into a existing web application in netbeans 6.5??

    how to import javafx into a existing web application in netbeans 6.5??

  • How to create reports from my existing web application on Java/J2EE with Oracle Client 10g as the backend?? Help sought for

    Our company has developed an  Web Application and we are also looking out for the development of reports using Business Objects Exterprise XI Release 2 and for this purporse I do require some help from the forum who can literally show me how to get on and working on creating the reports.

    Thats why I thought I should make the following chain in the keystore, possibly in this order.
    1. My private key (simply generated in the server)
    2. Import Root certificates from NS
    3. Import Trusted certificate issued by NS
    Then when I sign with my private key surely an association will be formed to the trusted authority certificate. The problem I'm having is when I first made my private key I used openSSL as it was only intended for HTTPS. Now I need to create a keystore so I can use jarsigner to sign the jar file, and I can't see how to create a keystore using my existing private key. Surely if I created a new key and self sign, then import the trusted certificate the association will fail, as the private key will not be the same 1 that I used to make the CSR when applying for the trusted certificate.

  • SharePoint 2010 - Create new site collection in existing web application with different existing content DB

    I have a SharePoint 2010 root level site collection SC1 in web application WEBAPP1. I want to create copy of that site collection in same web application WEBAPP1. Apart from Import/Export, Restore/Backup options, will following approach work? If yes , how?
    I took backup of content database of web application.
    Restored database with different name
    Mounted Content database to this WEBAPP1 by assigning new ID to DB
    Created new site collection by using this newly mounted DB
    Site collection gets created successfully but content does not appear.
    Please guide if i can achieve desired functionality by using this approach.
    If this helped you resolve your issue, please mark it Answered

    It is because the Site GUID is identical, and each GUID can only be present on the farm once. You can use Backup-SPSite/Restore-SPSite (which is full-fidelity, unlike Export-SPWeb/Import-SPWeb), which will generate a new GUID for the restore Site Collection,
    even in the same Web App.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Using APEX as SSO redirect for existing web application

    Hi,
    I have an existing PHP based Web Application hosted on an Apache server. I want to protect these web pages by authenticating users via Oracle SSO.
    I tested this by creating a simple APEX web page with redirect <Meta> tag to route traffic to my application upon successful SSO login. This works fine if request comes directly to APEX page....
    So my question is how do I protect php pages from being directly accessed and still be able to get sso user login information (like username) coming from APEX page?
    Do I still need to set up mod_sso.so in osso.conf for my Apache Server or should I just register my php web application as partner application with SSO server without going through APEX?
    Any advice on this is greatly appreciate.
    Thanks,
    james

    Tony,
    Sorry for taking so long to respond as I got side tracked with other tasks.
    Thank you so much for the link. The provided link is very helpful.
    One difference in my situation is that I am using a generic Apache installation (version 2.2.11) and not Oracle Apache Server from OAS.
    So I copied mod_osso.so from OAS 10.1.3.1.0 installation to my generic Apache location. As I tried to startup Apache instance I got following error while loading mod_osso.so.
    ... Cannot load /apache-2.2.11/modules/mod_osso.so into server: /apache-2.2.11/modules/mod_osso.so: undefined symbol: ap_configtestonly
    I did some search and found that other folks are reporting success of using mod_osso.so on generic Apache (without saying which version of Apache). I wonder if mod_osso.so can only work with older version of Apache?
    Do you have insights on this by any chance?
    Thanks again,
    James

  • [Best Practices] Which versioning strategy for the web applications?

    Hi all,
    An important question when starting to develop a web application is how to correctly make the releases follow-up?
    That involves to adopt a versioning strategy to definitely fix the version numbers which will be associated to each release.
    The versioning strategy i have imagined is based on four different numbers with format like v.X.X.X.X:
       - The first one represents the version number of the database structure.
       - The second number is linked to the different finalized releases of the data model layer.
       - The third number concerns the different releases of the interfaces
       - And finally, the last number is the Subversion (or other code control system) last save.This strategy involves:
       - The subversion number is systematically reported
       - Changes on the database will affect both the data model layer and the interfaces; also, among the three first numbers only the first one will have to change.
       - Changes made on the data model level automatically involve a new interfaces release and will also be represented on the second number and not on the third.
       - Finally, bring some changes only on the interfaces level will affect the third and the fourth numbers only.My questions are:
       1) Is my choice correct?
       2) Maybe it already exists some versioning convention?
       3) What is your strategy?
       4) What is the strategy for the Jdeveloper versions?Best regards,
    Tif

    I would like people to be able to watch it in a flash player embedded on my site (and have it look good even if they click on a full screen button) or download to their iPod.
    Use the H.264 setting for iPod in Compressor. The h.264 file will play in a JW Flash Player and it's able to be downloaded for iPod viewing.

  • Creating Extranet and Intranet in a single web application?

    I'm confused ... again! Maybe you can help.
    Microsoft's best practices for setting up SharePoint 2013 is to utilize a single web application in a single web application pool.
    My Network Topology
    I am setting up my intranet AND extranet in a back-to-back perimeter network topology using Claims and Kerberos Constrained Delegation. I will have a dedicated AD instance on the DMZ which my clients will be added to. My corporate users will access the site
    via ADFS using their credentials on our internal network. There will be only a One Way Trust wherein the extranet AD will trust the corporate AD. We will be using Host named site collections and giving clients their own URL. They will basically be accessing
    a single list and perhaps a page that gives them some reports about tasks across a few sub-sites and the a status of a single workflow on the root site of their site collection.
    My SharePoint Topology
    I would like to follow MS' Best Practice as stated above but I'm not clear on a few things.
    1. Does it matter whether my extranet or intranet is on the Default Zone? I'm thinking that the intranet should be on the default since that is where Search crawls and that's the only place where search will be used in any way.
    Is it possible to have two sets of permissions on a single web application, one for internal and one for external, without extending the default zone to create the extranet and thereby creating a new IIS website (webapp) in the process?
    Thank you!
    Love them all...regardless. - Buddha

    Hi,
    Please refer below.
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/47081f77-fccb-4bc3-906b-76d187861f8c/intranet-and-extranet-web-applications-on-same-port?forum=sharepointadminlegacy
    http://blogs.technet.com/b/speschka/archive/2013/06/26/logical-architecture-guidance-for-sharepoint-2013-part-1.aspx
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/c0702003-8d53-46cf-ac09-49cbd270a43e/extranet-access-to-the-intranet-web-application-sharepoint-2010?forum=sharepointgeneralprevious
    Krishana Kumar http://www.mosstechnet-kk.com
    Please mark the replies and Proposed as answer if they help and solve your issue

  • How to create separate log files for each deployed web application in oc4j

    Hi All,
    I am using Windows2000, Oracle9iAS(OC4J). Say I have deployed 3 web applications onto this oc4j server. Then how to create 3 different log files so that I can see the log messages(System.out.println's) of each of these web appliations in a different log file.
    Thanks and Regards,
    Ravi.

    Where do the messages printed via ServletContext.log() go? Is this configurable separately by web application? If so, you could at least replace your System.out.println() with sc.log() statements. For exceptions, you could trap them and log them since the log() method takes a throwable as well as a String.
    John H.

  • Creating Sales Order in SAP from a web application database

    Hello All,
    I am trying to create a sales order from a web based package .Means a web based package is running in the system and the user will enter the sales order data in the web application and it gets saved in that database.
    Now i want to retrieve the data from that database and post sales order in SAP using batch processing .
    Can someone help me out how to do this ????
    Please provide some sample codes .
    Thanks,
    Amit

    Hi Amit,
    Using Ado.net you can retrive the data from database
    Refer This.....
    Link: [url] SAP B1 Web Application asp.net DI Server DI API
    Link: [url]   Method of using ADO.Net connect to SAP Company DB
    Thanks
    Shafi

Maybe you are looking for

  • Can you use AirPrint to print to hard wired printer via your WiFi network?

    Recently I bought an Officejet 6700 Premium e-All-in-One to serve all my PCs in the house and to use the AirPrint functionality for all the iPhones & iPads. The printer is located in the basement office where there is poor wireless reception, and the

  • LWAP migration of AIR-1131AG-A failed bad mzip file

    Hello Experts, I would like to connect a Cisco LWAP 1131AG-A-K9 with a WLC4402 running on 4.1.171.0 Unfortunately, the software downloaded from the WLC is not correctly unpacked on the AP. I can see an error on the console stating "bad mzip file". We

  • Won't load interactive pdf

    I've tried deleting the app, and downloading again, and it works, sorta, for the first few tries, but then it gets stuck in the loading screen when I try to open another interactive pdf.

  • My macbook pro screen cracked

    my macbook pro's screen cracked.  Does anyone know how much this may cost to replace or if it may in fact be covered under warranty.  I baught this macbook in July 2011.  Please let me know if Apple will take care of it or if there is a 3rd party who

  • How to group: groups within group

    Hi. I am resubmitting this question with some changes. Is it possible to group some values and then use those values to group by another group value? For exp: Top level group is Month,i-e Jan, Feb, March etc Next level group is Status,e.g OPEN, CLOSE