Best way to host JSP in production??

EAR is ruled out in my case. If we want to change the JSPs in production on a regular basis, what would be a right choice?
          Thanks for any responses.

Rigilkumar,
If you don't want to install the LV runtime engine, that rules out the remote front panels.  However, you should still be able to build a web service to do what you want. This will be a bit more tedious because you'll have to build a thin client to have an interface with the web service. You can find an example of a thin client built in Adobe Flex here.
If you're looking at streaming video as well, I recommend you look over Streaming IMAQ Images Over a Network (or Internet)
Hope this helps,
Misha

Similar Messages

  • Best way to manage "free shipping" products

    Looking for suggestions on how best to manage shipping charges at a product/MM level. For certain customer and product combinations we offer free shipping. What is the best way to manage this in master data?
    thank you!

    Not in Master Data but in Pricing settings. All you have to do is having a price condition that define your fright price, lets say ZFR1. This Condition will have associated an Access Sequence (ZFR1) that will contain a table (lets say 987) with the Customer information (whether you want to do a distinction customer by customer or you want to set an indicator at the customer master record to group several records, lets say in the field Shipping Conditions, where you can set the value Z1 - Chargeable and the same for materials, look for a field you can use for this purpose). The table 987 will have such values (among others that you may need), then in T-Code VK11 you create the Condition Record that fulfill the parameters to determine a fright cost for the customer.
    Include the Condition type ZFR1 into the Pricing Procedure you are using for your sales orders and there you go, every time a Chargeable customer is placing a Sales Order  with a Chargeable Material the system will determine the condition ZFR1 with the amount you set in Transaction VK11... or, depending on the properties you maintain at the Condition Type you can let the user that is taking the sales order to place the Fright Price manually.
    Hope it helps Cheryl !
    Saludos!!

  • Best way to design jsp/template structure

    I am trying to create one page comprising of multiple pages without using frames.
    My thought was to create a template.jsp, which has the following includes:
    <jsp:include page="<%=header%>"></jsp:include>
    <jsp:include page="<%=menu%>"></jsp:include>
    <jsp:include page="<%=content%>"></jsp:include>
    <jsp:include page="<%=footer%>"></jsp:include>Here is an example of the question that arises...
    In the HTML code of the 'menu' included page, I have a link to some other page (ex. 'abc.jsp' )
    When clicking on this link, I would like to call the template.jsp with 'abc.jsp' being inserted where the 'content' tag is.
    So, what is the best way to do this without frames?
    Do I have every link call a controller servlet which stores the links in a request. Then the controller servlet calls the template.jsp with the link as a request parameter?
    Is there a built in function in JSP that does this w/o any extra code?
    Any other suggestions/practices that are more common or easier to implement?
    Also, Is there major overhead on including 4 pages each call? Or after it compiles with the included page, the overhead is negligable, until a new page is swapped in place of an existing included page?
    Thank you

    A thought:
    <%
    String content = request.getParameter("content");
    %>
    <jsp:include page="<%=header%>"></jsp:include>
    <jsp:include page="<%=menu%>"></jsp:include>
    <jsp:include page="<%=content%>"></jsp:include>
    <jsp:include page="<%=footer%>"></jsp:include>
    Once everything is compiled, the overhead is in executing the pages. If you pass in a page that hasn't been compiled yet, obviously that would have to be compiled. I haven't tried dynamic includes like that - does it work?

  • Best Way to Host Front Panel in Web Browser

    Hello  All 
               I am almost confused with all methodology that Labview have to host the Top Level front panel in Web browser. My requirement is to  Monitor and control the Front Panel from remote location using web browser, but without installing any LV Runtime engine in Client machine. Also I want to stream the Videos in same or different page. Which is the best way to do this?. Web-service or CGI 
    Thanks & Regards
    Rigilkumar 

    Rigilkumar,
    If you don't want to install the LV runtime engine, that rules out the remote front panels.  However, you should still be able to build a web service to do what you want. This will be a bit more tedious because you'll have to build a thin client to have an interface with the web service. You can find an example of a thin client built in Adobe Flex here.
    If you're looking at streaming video as well, I recommend you look over Streaming IMAQ Images Over a Network (or Internet)
    Hope this helps,
    Misha

  • Which is the best way Applets or JSP

    Hi I am trying to develop a application to
    run on the internet .It involves few master detail table in each form and 10 Different functions.The forms needs to have LOVs and other validations.Which will be the best way to go.Total tables involved would be around
    40 and coulumns in these tables would be (15 - 40).
    Any suggestions
    jagan
    null

    I'll give you my input/opinion based on my own experience. Others may have additional considerations to add, or may want to disagree with some of my points:
    Benefits of JSPs:
    1. This is an evolving technology that a lot of people are now using. It is very powerful, and the performance is pretty good.
    2. It is much easier to deploy than an applet.
    3. It will continue to improve and be easier to work with, especially with our upcoming 3.2 release.
    4. Does not require a lot of Java experience.
    Drawbacks of JSPs:
    1. No GUI editor for laying out the user interface. You are using HTML code in a text editor, which is trickier to see how the UI will look as you go. Again, this will continue to improve over time, and our 3.2 release will make it a little easier to deal with the HTML and Java code.
    Benefits of Applets:
    1. There is a UI editor for designing the layout, but layout in Java can be tricky.
    Drawbacks of Applets:
    1. Deployment can be very error prone.
    2. Subject to security restrictions such as the database you connect to and the webserver the applet runs from must be on the same machine. You can work around this, but it complicates matters.
    3. Clients need to have the Java Plug-in installed with their browser.
    4. Performance is not great, especially for a lot of data going back and forth.
    5. Requires that the applet code is downloaded to the client, temporarily at least, at runtime. The more code you have in your applet, the longer it takes to download when the client invokes it.
    Bottom line is that Applets are fine for small tasks, and are preferable for 'intranet' use versus 'internet' use (outside).

  • Which is the best way of deploying JSP (mod_ose or OSE) ?

    I need to deploy some jsps that are using servlet api 2.2 and i would like to know which is the best way of deploying these jsps?
    Thanks
    RJC

    Speaking of JServ Vs OSE, I have some related questions on it. I would appreciate if someone can answer:
    1.For a stateful servlet (assuming that we are using Oracle JVM), Will it not call the init() method of the servlet each time for a client (because each client will have his own Oracle JVM)? If so, isn't that expensive because it needs to initialize the servlet again?
    Again, for the same servlet, Will it not have a servlet context for each and every client? Isn't that expensive? ( A servlet context by definition maintains state information for all instances of a web application within any single JVM)
    2. If we have an application that has some portion of it which is stateless and some portion of it which is stateful, how do we make a choice JDK JVM vs Oracle JVM?
    Can we (for the same application) use both the JDK JVM as well as Oracle JVM? If so, how does the JDK JVM talk with Oracle JVM?
    3. Since Oracle JVM is useful for stateful applications only, does it mean that we cannot use it for Stateless session beans? (In an application we might have stateless session beans, stateful session beans as well as entity beans) Should we be using JDK JVM or Oracle JVM?
    4. For Servlets too, we might have stateless servlets and stateful servlets within the same application. If so, can we use JDK JVM for stateless servlets and Oracle JVM for stateful servlets? If so, how does the JDK JVM talk with Oracle JVM?

  • What is the best way to host an interactive PDF in a website?

    I am making an interactive fashion magazine with DPS and I need it to be put into a website, but haven't found a simple solution yet. I am not very well versed with HTML, so something without too much of that would be good.
    What type of website would be best (wordpress, wix etc.) and how do I do it please!?

    e777y, Those are incompatible formats. While you might get the content and some of the interactivity there is no way to duplicate the DPS format in PDF. If you have a Pro or Enterprise account you can look at the DPS web viewer.
    Trung.vu, please start a new thread...you are NOT having the same issue.

  • What are the best ways to recycle used Apple products?

    I currently have a iPhone 4 (32 GB, Black) and a Macbook Pro (Mid-2009, 2.53 GHz, 250 GB storage, 4 GB memory) that I don't use anymore. I'm looking into recycling them or selling them but I'm not sure about:
    a) What the products are worth - the iPhone looks brand new and the Macbook Pro is in fair condition but needs a battery replacement
    b) Which recycling programs to go with - Apple's PowerON program has shady reviews and I'm not sure whether to trust sites like 'gazelle'
    If anyone has any advice on recycling or selling their Apple products, let me know. Thanks!

    jess_ek,
    To get an idea of what the products are worth, take a look at recent winning bids on online auction sites for identical items to yours in similar condition.
    If you prefer to recycle rather than to sell, you could donate them to iFixit, which will make maximum use of their parts to help keep other iPhones and MacBook Pros running. If you’d prefer to sell them, you could offer them as individual lots on online auction sites, or advertise them for sale on online classified ad sites.

  • What is the best way to run AirPort Extreme and Airport Time Capsule together?

    I have cable DSL, and I was running an AirPort Extreme. DH was sold a time capsule, so I just daisy-chained off the airport. We had an issue with limited reach, so I tried to reconfigure. Now I have no wifi at all. Tried everything I can think of. What is the best way to handle these two products, or should one be left out? Any suggestions would be great.

    Decide which one you would like to serve as your router, and configure the other one as a bridge. If they are both the most recent models of each neither one is particularly advantageous over the other.
    Connect them to each other with an Ethernet cable if you want to create a "roaming network", or not, if you want to create a "wirelessly extended" network. A roaming network is the better of those two choices.
    "Hard reset" the one connected to the modem and use AirPort Utility to configure it. Verify everything works to your satisfaction, then "hard reset" the other and configure it.
    To "hard reset" an AirPort Base Station: make sure it's powered up, then press and hold its tiny reset button and keep it depressed for five to ten seconds, long enough for its LED to flash amber rapidly. Release the reset button. Then, the LED will glow amber steadily for about a minute. Then, it will flash amber, slowly, about once every second or two, waiting for you to configure it with AirPort Utility.

  • What is the best way to mimic the data from production to other server?

    Hi,
    here we user streams and advanced replication to send the data for 90% of tables from production to another production database server. if one goes down can use another one. is there any other best option rather using the streams and replication? we are having lot of problems with streams these days they keep break and get calls.
    I heard about data guard but dont know what is use of it? please advice the best way to replicate the data.
    Thanks a lot.....

    RAC, Data Guard. The first one is active-active, that is, you have two or more nodes accessing the same database on shared storage and you get both HA and load balancing. The second is active-passive (unless you're on 11.2 with Active Standby or Snapshot Standby), that is one database is primary and the other is standby, which you normally cannot query or modify, but to which you can quickly switch in case primary fails. There's also Logical Standby - it's based on Streams and generally looks like what you seem to be using now (sort of.) But it definitely has issues. You can also take a look at GoldenGate or SharePlex.

  • What is the best way of integrate a jsp aplication created in jdev 3.2.3 with portal

    Hi,
    I've a jsp aplication made in jdeveloper 3.2.3 and i need to integrate this application into portal. What is the best way of doing this?
    thanks in advanced
    ricardo

    Hi,
    I've a jsp aplication made in jdeveloper 3.2.3 and i need to integrate this application into portal. What is the best way of doing this?
    thanks in advanced
    ricardo

  • What is the best way of deploying a jsp and bc4j aplication

    Hi
    I would like to know what is the best way of deploying a jsp and
    bc4j aplication in ias 9i.
    thanks in advanced
    rjc

    In the page I simply referenced the facescontext directly... no need for a custom servlet.
    public void createcookie() {
    FacesContext fc = FacesContext.getCurrentInstance();
    HttpServletResponse resp = (HttpServletResponse)fc.getExternalContext().getResponse();
    Cookie userCookie = new Cookie("cookiename", "cookievalue");
    userCookie.setMaxAge(-1);
    userCookie.setMaxAge(3600);
    resp.addCookie(userCookie);
    return null;
    public String readcookie() {
    FacesContext fc = FacesContext.getCurrentInstance();
    ExternalContext ec = fc.getExternalContext();
    Map cookiemap = ec.getRequestCookieMap();
    if (cookiemap != null) {
    Cookie cookie = (Cookie) cookiemap.get("cookievalue");
    return cookievalue;
    For reference I could not get getCookies() method of HttpServletRequest to work.. it would only return JSESSIONID.

  • [vmware] Best way to share files between host and client

    Good afternoon!
    I have successfully installed VMware server on my machine and set up a virtual machine, powering Windows XP for study issues (emulation via wine does not do the trick for me). The virtual machine runs fast and stable but does not meet my requirements unless I have two issues faced:
    First:
    How to access a USB pendrive monunted by the host system properly within the client?
    Second:
    What is the best way to share file system space between host and client? Should I set up a Samba share which is accessible for both host and client or is it save to grant my VM access to my physical hard disc as a whole (using it as a partition)?
    Thanks for answers in advance, I have still quite a lot to learn, when it comes to VMs.
    Regards,
    ~cg

    Do not setup your VMware to be able to access your physical disk as a whole. This would have you mounting the filesystem twice, corrupting it in the process.
    You /can/ setup VMware with Sharing Folders that lets you share your filesystem (either / or just /home or something else) and that is what I would recommend.
    As for accessing the pen drive from both operating systems at once, I'd say use the same Sharing Folders method. I always share /mnt so that I can access my cdrom/USB/etc from the vmware OS.
    The sharing folders is basically the same as a samba share, but uses vmware's own method (HGFS). Samba is more secure (if you are worried about your VMware OS breaking from it's shell and attacking your real filesystem, which is unlikely). You need the vmware tools installed to make use of it.

  • Acrobat Standard XI, but can only find the CD for windows.  I have a mac (I have access to an external CD drive and I have the product keys for windows).  What is the best way for me to install it?

    Hi, I purchased Acrobat Standard XI, but can only find the CD for windows.  I have a mac (I have access to an external CD drive and I have the product keys for windows).  I have never installed it anywhere else.  What is the best way for me to install it?

    Hi lintonm86921521,
    I can understand your concern & will guide you through this.
    I am so sorry to inform you that Acrobat XI Standard is not available on Mac, you can only use it on your Windows computer.
    You can also refer to the system requirements at : System requirements | Acrobat family of products—older versions (XI, X, 9)
    In case if you have any further query please let us know, we will be happy to help you.
    Regards,
    Aadesh

  • The best way to implement business logic to a .JSP ?

    Hi experts,
    I want to implement some business logic to a .JSP file wich is in my modified
    <b>com.xxxNew.portal.usermanagement.admin.pa</b>r file!
    For examle creating different roles for useres by registration dependently what they inseret in the registration.jsp!
    What is the best way to do this? I have tried out to create a stateless session bean for this. Is this the right way?
    Can someone give me information how can I access this bean from my JSP (.par file) and how can I upload it to the portal?

    Hi,
    Here is the document about Calling J2EE Applications from Portal Applications:
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddf20bb211d72e10000000a1553f6/frameset.htm
    So in your JSP do the lookup of your EJB.
    I do not think using EJB at this level is really good, as you do not deal with DB, security and transactions in your code.
    http://www.jguru.com/faq/view.jsp?EID=126400
    Why not just use a portal component like JSPDynpage for this purpose?
    Greetings,
    Praveen Gudapati

Maybe you are looking for