File opening from jsp

Hello,
I have a file in the server's hard disk.
A I have jsp with the link to the file.
I'd like to file be opend with the standard windows application after clicking on the link.
How could I realize this? What kind of file link I need?
Thanks,
Ljosika

You must put link to some "context" of your web server not to server hard disk.
eg. if you're using Tomcat you can create directory "downloads" under "ROOT" directory in webapps directory and then you can put files there and use.
DOwnload file
If your application is under Tomcat/webapps/myapp then use
DOwnload file
and so on...

Similar Messages

  • Office files opened from network drive appear to be blank for Mac Users

    Hi all,
    We've got five macs in our office running 10.9 with Office 2011, and we have a file server running 10.8 which stores all of our documents.
    More often than not, when one of the macs opens a DOC or DOCX from the file server, the file opens up blank.
    There aren't invisible fonts, doing a Select All and changing to black doesn't help.
    The files appear to be fine when opened in Finder, or with LibreOffice (which my colleagues don't want to use!)
    The files open correctly when the files are moved to the local hard drive and opened from there.
    The files also open fine via the network on a Windows 8.1 PC with Office 2007.
    Has anyone else had this problem, and got a workaround? I've been looking at this for a while but not found anything as of yet.
    Appreciate any assistance you can give. :)
    Kind Regards,
    Yolo Swaggins

    Hi,
    Please have a look at this KB articel (http://support.microsoft.com/kb/2434675) and try the steps listed in it:
    Change the font in the Office for Mac file
    Disable the fonts in the Fonts folder
    Check for bad fonts
    Create a new Mac user profile
    Also, this is the forum to discuss questions and feedback for Microsoft Office on Windows, we are lacking of skills and testing environment for Office for Mac. Better to post your question to the forum of Office for Mac:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011?tab=Threads
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Thanks,
    Ethan Hua CHN
    TechNet Community Support

  • Accessing file shares from JSP

    Hi,
    I need to be able to access file shares from a JSP page. Here's the JSP code:
    <%@ page language="java" %>
    <%@ page import="java.io.*" %>
    <%@ page errorPage="errorPage.jsp" %>
    <%
    String fileSystemPath = "\\\\130.26.1.199\\MeetingManager30\\test.txt";
    File f = new File(fileSystemPath);
    f.createNewFile();
    %>The above code resides in a server with IP 130.9.68.6 and is deployed onto the Tomcat on the server.
    When I tried to run the above code, I got this error
    java.io.IOException: Access is denied at java.io.WinNTFileSystem.createFileExclusively(Native Method) at java.io.File.createNewFile(File.java:827) at org.apache.jsp.test_jsp._jspService
    (test_jsp.java:55) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.jasper.servlet.JspServletWrapper.service
    (JspServletWrapper.java:210) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247) at
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke
    (StandardWrapperValve.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke
    (StandardContextValve.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422) at
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
    eNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171) at
    org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke
    (StandardEngineValve.java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199) at
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:833) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processCon
    nection(Http11Protocol.java:711) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run
    (ThreadPool.java:687) at java.lang.Thread.run(Thread.java:536) Seems like I'm having a system level security setting problem here.
    I know it's a security issue, because I've encountered the equivalent problem in ASP/IIS, and I had to give a domain user rights to both the IIS Virtual Directory, and the file share to be able to access.
    Any ideas how to set up Tomcat to be able to access the file share successfully?
    Thanks in advance!

    Hello Veer,
    From what you have posted it looks like while logging your error another problem occurred. Did you get any output from your System.out calls? If not can you try adding a few in order to home in the problem area.
    Hussein Badakhchani
    www.orbism.com

  • CS4 InDesign Slow with files opened from shared drive

    We have an issue that I can't seem to figure out...
    I have six different people using Word files and InDesign files that are being opened from a server. When going from Word into InDesign (or vise verse) it takes a few seconds for the cursor to become active; however if the user is copying text from Word to any other Adobe product (Illustrator, Photoshop, Quark) no lag at all. They are also all getting a PDF creation failed when trying to save to the server (error is attatched).
    It's  not a specific file because all six people have the same issue, and  they're all working on separate projects.
    It's not machine specific since (again) all six Macs have the issue.
    Obviously it's an InDesign issue, but what, and why all of a sudden?
    Any  help would GREATLY be appreciated.

    My first guess would be that the client OS version could be apart of it - small changes to the SMB client in 10.6 could explain it. I'd also be interested in looking at the firewall issue. It may well be a combination of both.
    I think said earlier that working locally was not a problem, so you've already done the first logical test. Next, I'd think about trying the following, the order of which I'd base on their level of difficulty:
    Temporarily put one of the problematic client machines inside the firewall (or the server outside of it, though I assume that would be harder/impossible)
    Either upgrade one the of the problematic machines to 10.6.2, or create a Snow Leopard boot system with InDesign installed (on an external drive?) from which you can boot the machine
    I'm sure getting rid of the firewall is not a long term solution, but it would be good to know for future reference whether the firewall is involved. Would upgrading to Snow Leopard be in the cards if it does seem to fix it?

  • Files Opened from Windows Explorer Resize Illustrator Window

    Windows 7 Enterprise, SP1
    Illustrator CS6 16.0.3, 64bit
    Over the past weeks, opening any Illustrator file (.ai or .eps) from Windows Explorer resizes the main illustrator window. The window "restores down" from my maximized view that I always run. This does not happen when I use the File > Open command from AI. Using File > Open, the AI window remains maximized and my artwork file opens in a tab (my preference).
    It's really just a nuisance, but it's wearing thin now. More frustrating, this behavior only started a few weeks ago (been running CS6 for a few months.)
    I found a post describing similar behavior from the CS3/2008 era... The fix is a workaround. Lots of complaints about this historically... with plenty of comments like "I hope they finally fix this is CS4."
    http://forums.adobe.com/message/1265916#1265916
    How may I fix this behavior without writing a batch file and making Registry edits (per 2008 post)?

    This definitely isn't a fix, but is the best work-around I've been able to come up with.
    I'm also on Win 7 Enterprise 64-bit using Illustrator 16.0.3 64-bit.
    Although Windows/Adobe (I don't know whose fault it is) doesn't maintain the maximized state, it does (for me) seem to remember the last restored down size and window position, so here's what I did:
    Restore down the main Illustrator window.
    Move the window so that the top left corner is positioned in the top left corner of the screen/desktop.
    Resize the window from the bottom-right corner down to the bottom right corner of the screen/desktop.
    At this point, it should appear maximized (or very nearly so), even though it actually isn't.
    Now (for me at least) when I double-click an AI file from Windows Explorer, the Illustrator window drops out of maximized state to this same nearly maximized state (although technically not maximized).
    Hope this works for others.

  • Very Slow "File Open" from any application

    One of my users has a ThinkPad t61 running Windows XP Professional and when ever using the "File Open" function from ANY application it takes for ever to move from folder to folder. This occurs regardless of whether it is a local file or a file on the network. And is independent of the application that is being used. Anyone have any ideas? We did a "clean" install of the notebook and that did not make any difference, it still took aver a minute and during this time the dialogue box would show the "Not Responding" message and then eventually you could access the file(s) you wre try to ge to.

    I've seen a similar situation where it takes a long time to initialize the folder browser window when opening files. This was caused by a mapped network drive that couldn't be contacted. Unmapping the drive fixed the problem. This was in XP but Vista has more or less the same crappy networking browsing code.

  • Files opened from book disappear, open OK from VC

    I have a book project with about 20 files, as from today trying to open a file from the book and the file pops up for a split second and then disappears, if I open the files straight from Version Cue they open and I can work with them fine.
    Deleted the book and recreated it, adding the files back in was OK, but they still just pop up and disappear when I try and open them from the book?

    Bump

  • How to highlight searched words in pdf file opens from web??

    Hello fellows
    I need to create a web page that holds couple controls include "search" button .When client clicks on the button the programm will search pdf file, open it in client reader with highlight on searched words ..
    Is that any posibility to do it using javascript on a client or c# ,vb.net on the server ??
    I'm very novice in PDF developing so any ideas or conclusions would be very usefull!

    Thank you for answer
    But maybe you have any idea how I can do it??
    This is very important feature for our project.
    Some additional information : our project will hosted in SharePoint 2007
    When I use adobe Ifilter for moss and set in querystring #search="searchword"  I get highlights, but only in a browser.
    But if a reader was configured to open client application this feature wasn't work.
    Any suggestion ???

  • Why wont my psd files open from Bridge into Photoshop

    When I try to double click on a psd file is Bridge, it opens in some other image viewer... not Photoshop.  Under File>Open With, there are a number of
    possibilities, but none of them are PS.  There's Fire Fox, and Microsoft Mail and Painter X but not Photoshop.  I can open Raw files but not Psd's or
    jepgs... What could possibly be wrong.  I cannot find a preferance I've marked incorrectly. 

    First, I have never made any changes to this area in Preferences.  When I saw the suggestion to check file associations in Bridge Pref., I looked  through the file asssociations and mostly I found listed  'none beside most types,' but beside Psd, Tiff, and Jpegs it said, "Explorer Settings."  Why in the heck would that be there?  I clicked on that and noticed I could direct a search through my computer for something else, so I when straight for Adobe and on to Photoshop Cs5, and clicked OK.  After that, I could open the psd's  in Photoshop and under File>Open With, PScs5 was listed now as the defautl... YEA!... But when I tried the same with jpegs, it didn't work.  I put in PHcs5, but they are opening in Camera Raw.  Now while I could want that option, I don't want that as a default.  I'm totally perplexed as to how this could be happening. I've been using Bridge since it was first introduced into PS, and I've never had a problem like this.   I hope someone who is more educated in this area will please shed some light on this for me. 
    I'm in an advanced Digital Imaging class, and I asked my all knowing teacher and she was confused as well.
    Thanks.  7SUS

  • Filename on file download from jsp

     

    This may help:
              ----- Original Message -----
              From: "Erik Lindquist" <[email protected]>
              Newsgroups: weblogic.developer.interest.jsp
              Sent: Wednesday, June 28, 2000 6:20 PM
              Subject: How to dynamically display images in JSPs
              > This took a little while to figure out so I thought I'd share. After
              > doing some research I was led to the following approach on how to load
              > images from an Oracle database into a JSP:
              >
              > The "main" JSP:
              >
              > <HTML>
              > <head>
              > <title>Image Test</title>
              > </head>
              > <body>
              > <center>
              > hello
              > <P>
              > <img border=0 src="getImage.jsp?filename=2cents.GIF">
              > <P>
              > <img border=0 src="getImage.jsp?filename=dollar.gif">
              > <P>
              > world
              > </body>
              > </HTML>
              >
              >
              > And this is the image getter:
              >
              > <% try {
              > response.setContentType("image/gif");
              > String filename = (String) request.getParameter("filename");
              > java.sql.Connection conn =
              > java.sql.DriverManager.getConnection("jdbc:weblogic:pool:orapool"); //
              > connect to db
              > java.sql.Statement stmt = conn.createStatement();
              > String sql = "select image from testimage where filename = '" +
              > filename + "'";
              > java.sql.ResultSet rs = stmt.executeQuery(sql);
              > if (rs.next()) {
              > byte [] image = rs.getBytes(1);
              > java.io.OutputStream os = response.getOutputStream();
              > os.write(image);
              > os.flush();
              > os.close();
              > }
              > conn.close();
              > }
              > catch (Exception x) { System.out.println(x); }
              > %>
              >
              >
              > The thing to note is that there are no <%@ page import="..." %> or <%@
              > page contentType="..." %> tags - just the single scriptlet. It
              > seems that for every "<%@" the weblogic compiler sees it puts
              > out.print("\r\n"); statements in the generated java source.(???) I
              > don't know much about how browsers work but I think that once it sees
              > flat ascii come at it it treats everything that follows as text/plain
              > which is incorrect for the binary stream that's being sent. Another
              > work around was to set out = null; but that's kind of ugly and might
              > produce server errors. The real fix is to write a bean to handle images
              > which I'll work on next (does anybody have any hints on how to do
              > that?)
              Cameron Purdy
              [email protected]
              http://www.tangosol.com
              WebLogic Consulting Available
              "Ramesh" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi,
              >
              > Even I could download the files with this technique, I couldn't open the
              file downloaded. It seems the file is getting currepted during tranfer.. Can
              u help me in this regard please?
              >
              > Thank u
              > Ramesh
              >
              > [email protected] (Anders B. Jensen) wrote:
              > >In an Web-application written in Java Server Pages it should be possible
              > >for the user to download data from the web-server. The data will never
              > >exist as a file on the web-server, only in the PrintWriter object, out.
              > >To force the Internet Explorer (IE) to show the download dialog window
              > >the Contenttype of the HTTP-header have been set to "html/transfer". The
              > >question is:
              > >
              > >Is it possible to set the filename appearing in the download dialog
              > >appearing on the client?
              > >
              > >
              > >Below is a listing of the source-code:
              > >
              > ><%@ page extends="com.beasys.portal.admin.PortalJspBase"%>
              > ><jsp:useBean id="download" scope="session" class="dk.lec.DownloadData" />
              > >
              > ><%
              > > String tmpstr;
              > > response.setContentType("html/transfer");
              > > out.clear();
              > > tmpstr=download.getStrbuffer().toString();
              > > out.println(tmpstr.trim());
              > >%>
              > >
              > >
              > >Anders B. Jensen
              > >Consultant, Research & Development
              > >LEC AS
              > >
              > >Remove the SPAMLESS to mail me.
              >
              

  • Garbage characters in excel file opened by jsp

              I am storing an excel file as blob in database. While retrieving
              from database when I open in the jsp page , it shows a lot of garbage characters
              and all formatting is lost. I am using content type "application/vnd.ms-excel".
              I am also setting correct mime type in web.xml as application/excel. It is weblogic
              6.1 sp2 with oracle 8.1.6. the pdf and word docs are working well. Please help
              soon.
              Thanks
              

    Download the Open G Toolkit from www.openg.org. There is a VI called Quit Application.vi that works great. I have used it with the very stupid Brooks 0154 SmartDDE Controller program to reset the application.
    Be sure to save the document and close the DDE communication first.
    Michael
    www.abcdefirm.com
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector

  • Why am I getting "Can't write file"? from jsp

    I have the following code:
    public String OpenRAF(String fileName) {
    try {
    file = new File("http://www.domain/filename.prn");
    } catch (java.lang.NullPointerException npe) {
    writeError(npe);
    } catch (java.lang.IllegalArgumentException iae) {
    writeError(iae);
    if (!file.isFile()) {
    retn = "Not a file:" + file.getAbsoluteFile();
    if (!file.canRead()) {
    retn = "Can't read file:" + file.getAbsoluteFile();
    if (!file.canWrite()) {
    retn = "Can't write file:" + file.getAbsoluteFile();
    try {
    raf = new java.io.RandomAccessFile(file, "rw");
    } catch (java.io.FileNotFoundException fnfe) {
    rtn = false;
    Why am I getting the "Can't write file http://www.domain/filename" from this jsp?
    I would like to open this file read,write and update it with the RandomAccessFile api, but I can't seem to get write permissions. I have granted 777 permissions on the file.
    Is this a Tomcat file permission issue or something?
    Thanks.

    Thanks,
    But I want to read,write to a file in the application Server. How do I get the path correct?
    I want to use something like java.io.RandomAccessFile("somepath", "rw");
    I should be able to access the filesystem somehow? The only way I could find the file was using the URL. Whenever I used a relative or absolute path, I could not access the file.
    How do I know what the filesystem path is on an application server (Tomcat 4.1) from a Jsp 1.4?
    Thanks again

  • CR2 files open from one camera, but not the other in CS2

    Running Mac with CS2. My camera raw files shot with my lovely Canon 5D open and can be viewed in bridge and in photoshop, but NOT the camera raw from my brand new Canon powershot G9. They are both producing CR2 files. I can see the images in the bridge browser window, but when I double click to open I get a dialogue box that says, "Could not complete your request because Photoshop does not recognize this type of file." I have the 3.7 plug in installed. Please, some god or goddess of photoshop out there, show me the error of my ways!

    Walt,
    I will answer your questions to the best of my ability. But hopefully others who are better at this than I am will offer their help as well. So, here goes.
    1. Everyone has their preferred method of using Bridge. In the Photoshop preferences I have not checked the box to have bridge start automatically. Although I use Bridge most of the time, there are occasions when I don't want to use it. So I prefer to start my Photoshop session by starting Bridge first, and then double-click on an image in Bridge to have it opened in Photoshop. In the Bridge preferences, I have checked the "Double-Click Edits Camera Raw Settings in Bridge", and I like working that way.
    2. I have seen several people comment about having this problem. And occasionally it will develop after you have been using Bridge/Photoshop for a while. The only thing I can suggest is for you to hold down the Ctrl key while you start Bridge. A dialogue will appear that will allow you to reset your preferences. There are three options and you should choose all three. I know, you haven't had it installed very long, but this "could" be the problem. One guy I talked with said that he had to do it several times before it fixed the problem.
    3. You indicated that you downloaded Camera Raw 4(5). What does that mean? Did you download version 4.5, which is the latest version? And, did you follow the installation instructions that were on the download page? The new plug-in must be put in the exact directory specified, replacing the old version that is already there. The old version cannot be put in a sub folder. You might as well get rid of it. You don't need it anymore. And, again, it has to go into the specific folder designated in the instructions. After you have done that, in Photoshop goto Help/About Plug-ins and click on Camera Raw. It should only be listed once, and when you click on it you should get a dialogue that will tell you what version you have installed.
    4. After I installed CS3, when I inserted a card into my card reader I was presented with the normal Windows options. One of the options I was given was to download using Bridge. I chose that option and indicated to always use that option. I haven't had any problems with it since. But if that option isn't there, you can open Bridge and click on the File menu. There is an option to download images from your camera. It has worked well for me.

  • Reading RTF file content from JSP which stored in database as image format

    <%@page import="java.sql.*" %>
    <%@page import="java.net.*" %>
    <%@page import="java.io.*" %>
    <%@page import="java.*" %>
    <%@page import="javax.swing.*" %>
    <%@page import="javax.swing.text.*" %>
    <%@page import="javax.swing.text.rtf.*" %>
    <%
         Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
    Connection con=DriverManager.getConnection("jdbc:sqlserver://local:1433;databaseName=database;user=sa");
         Statement st=con.createStatement();
         ResultSet rs=st.executeQuery("select Document from docrev where UniqeId ='199207' ");//("select data from rtfdata");227317
         rs.next();
         byte bt[]=rs.getBytes(1);
         InputStream fi = new ByteArrayInputStream( bt );
         RTFEditorKit rtf = new RTFEditorKit();
         JEditorPane editor = new JEditorPane();
         editor.setEditorKit( rtf );
         rtf.read( fi, editor.getDocument(), 0 );
         Document d=editor.getDocument();
         String str=d.getText(0,d.getLength());
         /*OutputStream fo=new FileOutputStream("temp3.rtf");
         fo.write(str.getBytes());*/
    %>
    <html>
    <body>
    <p><textarea name=myarea style="background:#FFCC99" cols=100 rows=50><%=str%></textarea>
    </body>
    </html>
    Edited by: Santhu538 on Oct 23, 2007 10:16 PM
    Edited by: Santhu538 on Oct 23, 2007 10:25 PM
    Edited by: Santhu538 on Oct 23, 2007 10:26 PM

    Please use code tags while posting code. See the code button above the text area?
    It's a good practise not to mix jdbc code in your jsp (mvc and all that you see)
    Finally you'll have to quickly decide on your front end - jsp or swing. It looks like the former, but then with the code you have posted, the server is apt to pop up some windows prompting the user who has logged on (to the server) to choose the files for the client :)
    ram.

  • Can't adjust curves in file opened from pdf

    I need to include several pages of pdfs in a book. The pdfs are scanned text documents, image only, with no security applied. When I open the pdf on my mac pro with photoshop cs6, I can make adjustments in the curves dialog, but when I close the dialog the adjustments disappear. The history pallette shows the action, but nothing happened. Also can make visible changes in a curves adjustment layer, but when I flatten the image the changes disappear. I've tried opening the pdf as grayscale, rgb, and cmyk; same result. I've also saved it in several different formats, then reopened it; same result. The file initially opens as a background layer with a locked symbol in the layers pallette. If I duplicate the layer and delete the background, the locked symbol disappears, but photoshop still won't accept changes made in the curves dialog. I tried it with cs4, and had a friend try the same things with on a pc; same result. Levels adjustment won't work, either. Can anyone tell me what's going on here?

    My earlier reply was from my work login, capbooks, so the username is different. Sorry for the confusion.
    After realizing why curves wouldn't work on this document, I figured out what led me astray in the first place: when I went to open the pdf page in photoshop, photoshop's import pdf dialog didn't give me the option of opening as a bitmap. The only mode choices are grayscale, rgb, cmyk, and lab.
    Thanks again.

Maybe you are looking for

  • Product allocation not working even after complete setup at sales order lvl

    Hi All, I have setup product allocation as detailed in forum earlier links, still I am not gettin sales order to use ATP with product allocation. I have tried with S140 and S700 with no success. Already went thru all the steps starting with OVZ* tcod

  • Showing hyperlink in adf

    Hi, Use jdev 11.1.1.3 I show a jspx page based on a VO which intern is based on a DB table. I have in the DB table column my_url with value as my link How can I simply display this DB column in ADF table as a link. When I drag and drop it as a output

  • Office outlook won't load following latest upgrade

    hi, just turned on my mac air, and find i cannot get my office outlook to load up

  • ActiveMQ-CPP client hangs when connect ActiveMQ-CPP client & OpenMQ broker

    I am trying to connect an ActiveMQ-CPP client with an Oracle OpenMQ broker via STOMP. Both manufacturers claim this will work, and I have been able to get an ActiveMQ-CPP client to connect to an ActiveMQ broker via STOMP, an OpenMQ client with an Ope

  • Upload file jsp code doesn't work? How can I debug

    Hi Everyone, I have the following jsp code that simply adds a new product to the backend database when 'Continue' button is pressed. if( "Continue".equals(fp.getParameter("Submit")) ) {      fp.setParameters(prodForm);      prodForm.setCreateBy(curre