Can I change scope in my jsp file ??

Hi all,
I have html form, jsp for display, bean for Logic and I want the project result is doing sarch in html file,
bean handle the search in database, and display in jsp, since the database is big, the result is lot, so I want my search result be display 10 recode per page there for I had to use session in my display jsp file.but that bother my new search, if I don't reopen my browns I can't do the new search, like first I search chicken it has over 400 recods, then I jump back to my html file and want to search by duck , I still got the result chicken, if I change my scope to request then is easy to start a new search but can't do to next.
any ideal??

Hi,
The problem still at handle continue search and a new search. i add a again method in my jsp file and can handle new search and old session for few search then get error
IndexOutOfBoundsException: Index: 60, Size: 4
<html>
<head>
     <title>select List</title>
</head>
<body>
<basefont face="Arial">
<%@ page import = "num.NameBean" %>
<jsp:useBean id="ViruName" scope="session" class="num.NameBean"/>
<jsp:setProperty name="ViruName" property="*"/>
</jsp: useBean>
  <%
   if (ViruName.getString()==null){%>
    <center>
     Sorry, you nedd to enter something for search!
  <br>
<font size=-1>(Please hit the browser 'back' button to continue)</font><br>
</center>
<%}else{%>
<table align="center" width="600"border="1">
     <tr>
          <td width="20%"><b>FieldNumber</b></td>
          <td width><b>Name</b></td>
          <td width="30%"><b>HiTiter</b></td>
          <td width="30%"><b>SubType</b></td>
     </tr>
<%
     int rowCount = 0;
     int startRow = 0;
     if (ViruName.Mysearch()) {
          String start = (String) request.getParameter("start");
          if (start != null) {
               startRow = new Integer(start).intValue();
               ViruName.setStartRow(startRow);
          while (rowCount < 10 && ViruName.nextRow() > 0) {
               rowCount++;
%>
     <tr>
               <td width="10%"><jsp:getProperty name="ViruName" property="fieldNumber"/></td>
                <td width="30%"><jsp:getProperty name="ViruName" property="name"/></td>
          <td width="30%"><jsp:getProperty name="ViruName" property="hiTiter"/></td>
          <td width="30%"><jsp:getProperty name="ViruName" property="subType"/></td>
     </tr>
<%
          }//end while
     }//end if
%>
</table>
     <!-- Display the back and next links -->
               <a href="?start=<%= ViruName.getCurrentRow() %>">Next</a>
                        <% ViruName.again();%>
                 <a href ="test.html">new search</a>
<%
%>
</body>
</html>
package num;
import java.util.*;
import java.sql.*;
public class NameBean implements java.io.Serializable {
  /* Member Variables */
  private String fieldNumber;
  private String name;
  private String hiTiter;
  private String subType;
  private String string;
  private String text=null;
  /* ArrayLists to hold recordsets */
  private List fieldNumberList, nameList, hiTiterList, subTypeList;
  /* Helper Variables */
  private int currentRow;
  private int rowCount;
  private Connection db = null;
  /* Constructor */
  public NameBean() {
    /* Initialize bean properties */
    setFieldNumber("");
    setName("");
    setHiTiter("");
    setSubType("");
    /* Initialize arrayLists to hold recordsets */
    fieldNumberList = new ArrayList();
    nameList = new ArrayList();
    hiTiterList = new ArrayList();
    subTypeList = new ArrayList();
    /* Initialize helper variables */
    currentRow = 0;
    rowCount = 0;
    /* Get database connection */
    dbConnect();
  /* Get Database Connection */
  private void dbConnect() {
    if (db == null) {
      try {
        Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
        db = DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433;selectMethod=cursor","test","1234");
        db.setCatalog("HKData");          
      catch (Exception e) {
        System.out.println("Error Connecting to catalog DB: " + e.toString());
  /* Accessor Methods */
  public String getfieldNumber() {
    return fieldNumber;
/* one way to set data will get from database */
  public void setFieldNumber(String fieldNumber) {
     this.fieldNumber =fieldNumber;
  public String getName() {
    return name;
  public void setName(String _name) {
    name = _name;
  public String getHiTiter() {
    return hiTiter;
  public void setHiTiter(String _hiTiter) {
    hiTiter = _hiTiter;
   public String getSubType() {
    return subType;
  public void setSubType(String _subType) {
    subType = _subType;
public  String getString(){
    return string;
public void setString( String string ) {  
   this.string =string;    }
  /* Read-only attribute */
  public int getCurrentRow() {
    return currentRow;
  /* Populate Record List */
  public boolean Mysearch() {
    /* If prodIDList is empty, then execute the query to populate it */
    if (fieldNumberList.isEmpty()) {
      try {
                   Statement s = db.createStatement();
                  String Sql="select ViruName00.FieldNumber, Name, HiTiter, SubType, Storage";
                         Sql+=" from ViruName00, Storage00";
                         Sql+=" where ViruName00.NewNum=Storage00.NewNum and Name like'"+string+"%'";
                        Sql+=" Union";
                         Sql+=" select ViruName01.FieldNumber,Name, HiTiter,SubType, Storage";
                        Sql+=" from ViruName01, Storage01";
                         Sql+=" where ViruName01.NewNum=Storage01.NewNum and Name like'"+string+"%'";
                        Sql+=" Union";
                         Sql+=" select ViruName02.FieldNumber,Name, HiTiter, SubType,Storage";
                         Sql+=" from ViruName02, Storage02";
                         Sql+=" where ViruName02.NewNum=Storage02.NewNum and Name like'"+string+"%'";
                         Sql+=" Union";
                         Sql+=" select ViruName03.FieldNumber,Name, HiTiter, SubType, Storage";
                         Sql+=" from ViruName03, Storage03";
                         Sql+=" where ViruName03.NewNum=Storage03.NewNum and Name like' "+string+"%'";
           ResultSet rs = s.executeQuery (Sql);
        fieldNumberList.clear();
        nameList.clear();
        hiTiterList.clear();
        subTypeList.clear();
        rowCount = 0;
        while (rs.next()) {
          fieldNumberList.add(rs.getString("FieldNumber"));
          nameList.add(rs.getString("Name"));
          hiTiterList.add(rs.getString("HiTiter"));   
          subTypeList.add(rs.getString("SubType"));
          rowCount++;
      catch (Exception e) {
        System.out.println("Error populating productBean: " + e.toString());
        return false;
    /* Return status of operation (assume success if it made it this far) */
    return true;
  /* Reset current row */
  public void setStartRow(int start) {
    if (start < rowCount) {
      currentRow = start;
  /* Move to next row */
  public int nextRow() {
    if (currentRow == rowCount) {
      currentRow = 0; // Reset for next page request
      return 0; // return 0 to indicate end of recordset
    /* Populate bean properties with current row */
    setFieldNumber((String)fieldNumberList.get(currentRow));
    setName((String)nameList.get(currentRow));
    setHiTiter((String)hiTiterList.get(currentRow));
    setSubType((String)subTypeList.get(currentRow));   
    currentRow++;
    /* return currentRow*/
    return currentRow;
public void again(){
    fieldNumberList.clear();
        nameList.clear();
        hiTiterList.clear();
        subTypeList.clear();
}

Similar Messages

  • How can I change a Microsoft Word document file into a picture file?

    How can I change a Microsoft Word document file into a picture or jpeg file? I am wanting to make the image I created my background on my macbook pro.

    After I had the document image the way I wanted it, I saved it as a web page and went from there. Below are the steps starting after I did the "save as" option in Word:
    1) Select "Save As Web Page". I changed the location from documents to pictures when the window came up to save it as a web page.
    2) Go to "Finder" on you main screen, or if it's on your main toolbar at the bottom.
    3) Click on the "Pictures" tab and find the file you just re-saved as a web page. (I included "web page" or something similar in the new title so I could easily find the correct file I was looking for)
    4) Open the correct file and then "right click" on the actual image. (Use 2 fingers to do so on a Mac)
    5) Select 'Use Image As Desktop Picture", and voilà! The personally created image, or whatever it is that you wanted, is now your background.
    **One problem I encountered while doing this is that the image would show up like it was right-aligned in relation to the whole screen. The only way I could figure how to fix this was to go back to the very original document in Word, (the one before it was saved as a web page), and move everything over to the left.
    I hope this helps someone else who was as frustrated as I was with something that I thought would have been very simple to do! If you have any tips or suggestions of your own, please feel free to share. : )

  • How can i change the size of PDF files ?

    how can i change the size of PDF files? when i convert documents in the acrobat browser it seems the files become larger then normal pdf files, this is, i compare with other files that people send to me and i realise that they are smaller than my converted files, even if they have more pages.

    A lot depends on the form of the PDF. Is it graphics, a scan of a text file, pure text, or other? What version of Acrobat are you working with.
    You can do a save as to get a WORD file, but do not expect great results. The ability to get a decent WORD file depends on what the form of PDF you are working from. If it was created from WORD with tags and all, you might get good results. If not, you might get a lot of messed up results.
    Explain what you are starting with and your ultimate goal. Also check the audit of the file (should be under PDF Optimize) to see where the file information is concentrated (text, fonts, graphics, other).

  • HT201304 How can I change the account card on file to a different card?

    How can I change the account card on file to a different card?

    HT1918 iTunes Store: Changing account information
    Learn how to change your name, billing address, email address, and credit card information for your iTunes Store account.
    Note: If your previous payment method was not accepted, you can edit your payment type or credit card information by following the steps in this article.
    You can change all of your account information from the Apple Account Information page. To get to the Apple Account Information page, follow these instructions:
    Changing your account information using a computer:
    Open iTunes.
    Choose Store > Sign In.
    Enter your Apple ID and password, then click the Sign In button.
    Choose Store > View My Account.
    Enter your account password, and click the View Account button.
      To update your email address, follow these instructions: 
    From the Apple Account Information page, click the Edit button to the right of your Apple ID.
    Enter your new email address into the Email Address field.
    Click the Done button.
      To update your name, billing address, or payment information, follow these instructions: 
    From the Apple Account Information page, click the Edit Payment Information button.
    Edit the information that you would like to change.  Note: The payment methods that the iTunes Store accepts can be found in the payment type section. If you do not want a payment method on your account, select None in the payment type section.
      Click the Done button once you've updated all of your information.
    Changing your account information using an iOS device:
    Tap Settings on the Home screen.
    Tap iTunes & App Stores.
    Tap on your Apple ID. (If you are not signed in, enter your Apple ID and password, and tap Sign In.)
    Tap View Apple ID.
    Enter your Apple ID password.
      To update your email address, follow these instructions: 
    In the Edit section, tap the Apple ID field.
    Tap the Apple ID field.
    Enter the email address that you would like to be your Apple ID.
    Tap the Done button.
      To update your name, billing address, or payment information, follow these instructions: 
    In the Edit section, tap Payment Information.
    Update the information that you want to change.
    Tap the Done button when finished.
    Additional Information  Notes 
    If you use an AOL screen name to sign in to the iTunes Store, editing your information on the Apple Account Information page will not carry over to your AOL account. If you need to update your AOL account information, contact AOL.
    If your account information does not match your credit card, you may get a message stating "The credit card was declined."
    When you update your credit card number or billing address through the iTunes Store, any equivalent information you might use with iCloud, Apple Store online, iPhoto, or Aperture is also updated.
    The iTunes Store will place a minimal authorization hold on your credit card each time that you update your account information (equal to around 1 USD). The authorization hold is not a charge. The authorization hold is placed on your credit card to make sure that the information provided matches the information on file with your financial institution. The authorization hold will not be displayed in your iTunes Store purchase history.
      Important: Information about products not manufactured by Apple is provided for information purposes only and does not constitute Apple’s recommendation or endorsement. Please contact the vendor for additional information.
    Last Modified: Sep 24, 2012

  • Now that Apple no longer supports AppleWorks, how can I change a lot of AppleWorks files to Pages, without doing them one at at time?

    Now that Apple no longer supports AppleWorks, how can I change a lot of AppleWorks files to Pages, without doing them one at at time?

    Maybe these?
    https://discussions.apple.com/thread/3162022?start=0&tstart=0
    http://macscripter.net/viewtopic.php?id=19987
    But why if you're running 10.6 do you need to do this? AW works fine in 10.6 with Rosetta.
    (BTW,  you're in the older iMac PPC forum.)

  • I can't change shortcuts editing the shortcut file in preferences (mac) with After Effects CC. I Edi

    I can't change shortcuts editing the shortcut file in preferences (mac) with After Effects CC. I Edit the file, but when i open AE, it still the old same keys.
    How to have this working? And why until now, we don't have a GUI for shortcuts?
    I use the Apple Wireless Keyboard, and need to change the preview keys to a suitable ones, because this keyboard don't have the num pad.
    Until CS6, i was using ? and Shift+?, in the place of some kind of Zoom.
    But this time, i edit the file, in a sort of way i tried, and non of then change at all.
    WE NEED A GUI in AE Preferences to CHANGE THE SHORTCUTS!
    Thank You!

    The best way to add a +1 would be for everyone to file a feature request. Those are officially tracked by Adobe (unlike this user-to-user forum) and the more people that ask for something, the more likely it is to be implemented.

  • Can i change sqlplus and rman executible files rights in Oracle_home/bin

    can i change sqlplus and rman executible files rights in Oracle_home/bin for security reasons, like following
    chmod 750 sqlplus
    chmod 750 rman
    what will be the side effects of this

    Note: My advise in based on Oracle Recomended files permissions ratherr the mentioned 750 file permission
    To answer your question, I use examples like ensuring that oracle software owner (and related oinstall group) have discretory access to datafiles, controlfiles, redologs, hence using 640. Also that files like $ORACLE_HOME/bin/oracle (and related DBA group) are run by the software owner regardless of who executes it, hence using 6751. And others like trace files which contain sensitive hex dumps that you do not want others to see, hence using 640
    So by "various processes and access permissions", I meant relateding to batch and users.

  • Java class bean can not access to DB in JSP file

    Hi, I wrote a java class bean in order to access to MySql database ,and this bean is used in a JSP file,so that the bean can query from DB and then display the queried information on the JSP file,but it can not work correctly,the following is the source code and error message popup by the system,
    does anybody has experience in solving thus question,Please reply ,Thank you for your help.
    %@ page contentType="text/html;charset=UTF-8" language="java" %>
    <%@ page import = "java.sql.*" %>
    <jsp:useBean id="conn" scope="page" class="news.conn"/>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>1</title>
    <style>
    <!--
    A:link {
         COLOR: #993399
    .s {
         FONT-SIZE: 13px; LINE-HEIGHT: 170%; FONT-FAMILY: "utf-8"
    -->
    </style>
    </head>
    <body>
    <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
    <tr>
    <td width="100%">
    <img border="0" src="images/ruanjian.jpg" width="770" height="154"></td>
    </tr>
    <tr>
    <td width="100%">@</td>
    </tr>
    </table>
    <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2">
    <tr>
    <td width="13%">@</td>
    <td width="87%">
    <img border="0" src="images/mid-rdxw2.gif" width="101" height="18"><p>
    <%
              ResultSet rs,rsNest;
    String strSql=null;
    strSql = "select * from news where TYPE=1";     
              rs = conn.executeQuery(strSql);
              while (rs.next()){
    %>
    <span class="s"> <a href="newsContent.jsp?newsId=<%=rs.getInt(id")%">"><%=rs.getString("Title")%></a><br>
    <%
    %>
    <p>
    <img border="0" src="images/mid-hyxw2.gif" width="94" height="19"></p>
    <%
    strSql="select * from news where TYPE=2";     
              rs = conn.executeQuery(strSql);
              while (rs.next()){
    %>
    <span class="s"> <a href="newsContent.jsp?newsId=<%=rs.getInt("id")%>"><%=rs.getString("Title")%></a><br>
    <%
    %>
    <p>@</td>
    </tr>
    </table>
    <p align="center">Study Online</p>
    <p align="center">@</p>
    </body>
    </html>
    Error message:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Exception in JSP: /newsMain.jsp:47
    44: strSql = "select * from news where TYPE=1";     
    45:           rs = conn.executeQuery(strSql);
    46:           
    47:           while (rs.next()){
    48:
    49: %>
    50:
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:451)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    root cause
    java.lang.NullPointerException
         org.apache.jsp.newsMain_jsp._jspService(newsMain_jsp.java:98)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.27 l</a>

    nogoodatcoding wrote:
    Tolls wrote:
    Is that Jasper Exception telling us where the problem is in the jsp, though?
    If it is, then "rs" is null in the call rs.next()...which means conn.executeQuery() is returning null. Which means that whatever class conn is (news.conn?) has a problem maybe?That's possible. Though, it may just be the case that the 'conn' object itself is null! That line is the first place where it's being used and there are no checks that I can see...we'll have to wait for the OP to investigate and reply I guess.That's what I originally thought, then I noticed it was saying line 47, which is the rs.next() line. Assuming Jasper is correct in its choice of line, then it's the rs that's null. Which means the conn is doing strange things.
    Edit: Now that I think about it, going by the previous thread the OP posted, I'm wondering whether news.conn class is their attempt to move the JDBC stuff out of the JSP page, and it's grabbing the "real" connection (java.sql.Connection) and getting the result set and returning it...or getting something wrong and returning null.
    Edited by: Tolls on 11-Jun-2009 12:24

  • Can we change the Paths of Control Files.

    Can we change the Control File Paths.
    I want to move my control file from drive C:\ to Drive D:\
    How much is Risk Envolve?
    Is this better to recreate the Control File rather than to transfer from C:\ to D:\
    Which is the better option?

    Only Change this parameter ( CONTROL_FILES ) in the parameter file or in the spfile and shutdown/startup the instance.
    CONTROL_FILES
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96536/ch127.htm#REFRN10021
    Joel Pérez

  • How can i change the name of this file?

    In finder, the file under "desktop".

    Click on the file to highlite it, and hit the return key. Edit text/file name.
    You can not change the Places name: Desktop
    Message was edited by: leroydouglas

  • How can I change the default location of files?

    I have just changed the location of "My documents" in Windows to point to a separate drive (in fact "e:\mydocs"). Now Flex Builder 3 can't see my projects. If I import them it wants to copy them back to "c:\documents and settings\administrator\Flex Builder 3". So I have 2 questions - firstly is it possible to alter something so that it sees my projects in the right place automatically. Secondly how can I change the default location?
    Thanks

    sorry folks, just found the answer - File-Switch Workspace

  • Changes not showing in JSP files

    I am running tomcat and using JSP.
    I use winscp to log in and make changes to the pages.
    Those changes are not showing up unless I restart tomcat and delete the temporary files.
    I have talked to a bunch of people about this and nobody has any ideas, admitidly they are not tomcat experts.
    Is there anyone out there who can give me any advice?

    few questions.
    which version of tomcat are you using? are you uploading the individual files or a war?

  • How can I change data on my XLS files? I have tried to open them in Adobe reader but they can't be read!!!

    Hi. I have problems changing the data on my XLS files.I tried Adobe reader but it can't open the files.What should I do??

    XLS are Microsoft Excel spreadsheet files.  You can use Microsoft Excel to open them... or any number of compatible applications (OpenOffice, Numbers, etc).

  • Can't change permission on Time Capsule files and folders

    I am using my Time Capsule as a storage device that everyone on my network can access, and I also have a fairly small (~5000 songs) iTunes Library as well. This was all working fine, until I decided to try to get a second computer, beside my MacBook Pro (8,1) to connect to the iTunes Library. Suddenly strange things started happening, like the network dropping at seemingly completely random times, certain people being kicked of the network, etc. So then I thought "well maybe its because of the iTunes Library." So I did a 'Get Info' to the Library folder, named iTunes Library, and it showed this:
    This didn't seem too strange, except for the (unknown) name. I then learned (http://pondini.org/TM/E10.html) that this may actually be causing the problem, so I hit the minus button while hovering over it, only to see this:
    Now, as far as I can tell, this shouldn't be happening. So I tried it on many different computers (10.8.4, 10.6.8, 10.7.5, among others), and they all said this. Then, back on 10.8.4, I decided to try to add my name, even though it said that everyone can read and write, and it said this:
    Now I knew this was strange, since it has never, ever happened to me since OS 7. What was also strange, instead of showing the usual selection window, it asked me to type in my username, like so:
    This happened on every computer, and in every directory and every file (or at least the couple dozen I tried, including ones outside the Library folder that I had already changed permissions on before normally), so I knew something was definetly up. So of course, I turned to my friend, the Terminal. I tried doing sudo chmod 555, 755, 775, 777, and a+x, and none of them worked, again, on multiple different files and folders. Also, since I have connected the second conmputer to the Library, it seems as though the file iTunes Library.itl is no longer executable, because it looks like this:
    Also, no one but me can connect to it anymore, even though they can all see it. Any help would be greatly appreciated.
    EDIT: Sorry for the low-res images, Apple seems to have done something to them

    Verify volume failed with error Could not unmount disk (-10000)
    That could happen if there is another process that is presently accessing the volume.  I don't think it related to the volume having data corruption.  The fact that is it a "server" may be relevant.
    In the time that you have had this problem, has it been shut down and restarted? 
    You can also try restarting it with the Shift key held down.  That should do a Safe Mode startup, if an Xserve acts like a regular Mac.
    http://support.apple.com/kb/HT1564
    http://support.apple.com/kb/HT1455
    The Safe Boot will do some maintenance and tests during startup, and start up with only essential proceses running.  Try accessing that folder now.  If you can access it, you should probably save it off on another volume, such as an external drive, so that you have a current backup.
    Try running Repair Disk Permissions and Verify Disk again in Disk Utility.  Repair Disk Permissions will probably give you a lot of messages; they are usually just "informational" so don't be concerned.  However, if Verify Disk reports an error, that is a serious problem that needs to be addressed.
    Edit:  If the volume being tested is NOT the startup disk, then Repair Disk Permissions will be disabled.  It only applies when there is a system installed on that volume.

  • Can I change the default location for File, Open?

    When I click on File, Open in CS2 (it came with the computer) Pictures is always the Library that opens. Can this be changed? I have created a Library called Photography. That is where I download and store my photographs and where I work on them.

    As an alternative to futzing with Photoshop's File - Open dialog, you could try to change your workflow a bit and browse to your photo folders with Bridge or Explorer, then dragging photos to a Photoshop shortcut (icon on desktop).  You can, of course, set up Windows Explorer shortcuts to open to anywhere you want.
    Going one further, I suggest against using the Windows "Libraries" feature entirely - it's just an abstraction, and it's always been a bit buggy.  Just create folders on your hard drive to work from instead.  Everything works better done that way.
    -Noel

Maybe you are looking for

  • Cfadminapi

    Using cfadminapi, we have been able to automate the creation of sandboxes, and the creation of datasources so that our customers can do this themselves without the need for access to the cfadmin, or having to wait for support staff to do this for the

  • ITunes song dowload error via wifi

    I have an Iphone and Ipad both connected to a wap in my office. When I try and download via wifi from the apple store I get a download error. The song starts to download and stops. I can download to itunes via the wired connection to my pc over adsl

  • Cannot install JRE 6 on Solaris 10

    Hello, I would appreciate any help with the installation of JRE 6 on 32-bit x86 Solaris 10, which is actually a virtual OS under VMware ESX 3.5. "uname -a": SunOS <hostname> 5.10 Generic_120012-14 i86pc i386 i86pc First, I patched the OS with all req

  • Web Host can't get Flash Remoting to work

    Please help this non-technical client get my website up, please! I have had an application developed and my programmers have utilized FlashRemoting. I have seen the application working on one web host's testing server, but we had to move it because o

  • Is There A Way to Do This (Subtitles)?

    I have imported from iPhoto (160 photos) to iMovie to create a slide show DVD for GrandMa using iDVD - works perfect; music and all. Got a great 1st run on the DVD when it was burned. But, I'd like to modify and (if possible on a new DVD) add some su