Downloading from Appserver to Client m/c

Hi
I'm working on Forms/report integration, All the reports are generated on AppServer, (Client do not want to preview, but want those reports on client m/c as it is), I tried doing it using Webutil file tranfer, our DBA not able to configure Webutil, Now what is the other way to Get file from Appsever to client (java beans (or) anything helpful but Pl point me source files that will be great help doing to me.
I went thru Oracle forms demo,Upload utility , I can not open the demo in my browser also I need to download to client m/c not upload to appserver.
Many thanks in advance
Murthy

Thanks for the reply.
Problem with Webutil is still going, We opened tar, Oracle guys web conferenced two times(Selvakumar ramlingam) and went thru all the forsmweb.cfg/webutil.env files and found that our DBA not followed installation procedure and told DBA to do few steps that are missed by DBA(signing of jar files etc), We are having web conferncing again on Wednesday to fix the problem.
In btw DBA updated higher mgmt that Webutil has bugs and can not be done to escape his mistakes in case of any problems that is another story.
My manager want me to explore another option if Webutil installation do not go thru smoothly (Probably wednesday will be last try).
--Scenario==Appserver 10gAS
At present I'm able to run reports (integrated all 45 reports) and able to generate report output onto APpserver in PDF format but the client needs them to be saved as it is on the client M/C(this is existing functionality in 6i Client server,They want to keep same functionality in web/server) Now if webutil option goes out(in case if it is not solved) what is the other way for me to transfer files from Appserver(Download) to client M/C.
I will be greatful if you give me solution to my problem.
Thanks in advacne
Murthy

Similar Messages

  • File Download from server to client

    Please review the following code. I am attempting to download a file , whether PDF, DOC, TXT, etc.., from the server to client(in this case a DOC file). The f.exist() method returns true so the file exists but the f.length() returns 1. The file is considerably larger than 1 byte. The download occurs but the file contains 1 byte of code.
    Also, please review all the code and suggest any code changes needed to complete the download. I am new to Java programming so be kind.
    File f = new File(filePath + fileName);
    System.out.println("file " + f);
    System.out.println(f.exists());
    System.out.println("file length " + f.length());
    FileInputStream fis = new FileInputStream(f);
    BufferedInputStream bis = new BufferedInputStream(fis);
    response.setContentLength(fis.available());
    System.out.println("bytes " + fis.available());
    response.setContentType("application/msword");
    response.setHeader("Content-disposition","attachment; filename=" + fileName );
    BufferedOutputStream bos = new BufferedOutputStream(response.getOutputStream());
    byte[] buff = new byte[1024];
    int bytesRead;
    // Simple read/write loop.
    while(-1 != (bytesRead = bis.read(buff, 0, buff.length)))
    bos.write(buff, 0, bytesRead);
    bos.flush();
    bos.close();
    bis.close();
    response.flushBuffer();
    fis.close();
    } catch(Exception e){
    System.out.print("\n svtFileDownload.processRequestFileDownload Exception=" + e);

    the following is a nippet from a servlet I wrote that does what you want and I've had no problems with it, even with large file 200+ megs.
                String filename = bundle.getFileLocation();
                response.setContentType("application/stream");
                response.setHeader("Content-Disposition","attachment; filename="+filename+";");
                ServletOutputStream out = response.getOutputStream();
                BufferedInputStream fif= new BufferedInputStream(new FileInputStream(FILE_LOCATION+filename));
                int data;
                while((data = fif.read())!=-1)
                    out.write(data);
                fif.close();
                out.close();

  • PDF file downloading from server to client

    Hello,
    I am a newbie to Oralce UCM. Writing a component to merge some PDF files and allow user to save/open it on client side.
    The file downloaded is of 0 bytes and when opened it says -
    Adobe Reader could not open the the file because it is either not a suppported file type or because the file is damaged(It was sent as an email attachment and was not correctly decoded)
    this.m_binder.m_contentType = "application/pdf";
    this.m_binder.m_clientEncoding = "utf-8";
    DataStreamWrapper dataStreamWrapper = this.createNewDownloadStream();
    dataStreamWrapper.m_clientFileName = "MergedPDF";
    dataStreamWrapper.m_inStream = mergedPDF.getDocumentInputStream();
    dataStreamWrapper.m_inStreamActive = true;
    dataStreamWrapper.m_dataType = "application/pdf";
    try {
    this.m_httpImplementor.sendStreamResponse(this.m_binder, dataStreamWrapper);
    } catch (ServiceException e) {
    e.printStackTrace();
    Some clue would really help :)
    Thanks,
    Fauzia

    Hi Jiri,
    I have created and HCSP page where data is being populated dynamically. User may select some of the files from this page through checkbox. Page also has a download button which when clicked will merge all the selected documents and let the user open/save it.
    Information like Native URL, docName is passed on to the content server when the component is called (download button-click).
    Merging the PDFs, I have used a custom utility which takes url as a parameter and returns back the inputstream of merged PDF.
    And last, I have used DataStreamWrapper to send this inputstream back to the client as an attachment which can be read by IE.
    Also, I thought at first to use HTTPHeader where parameters like content-disposition, content-type can be set. But UCM already provides a better way to achieve this i.e. through DataStreamWrapper.
    public class MergePDF extends Service {
         public List<PdfDocumentSource> createPdfDocumentSourceList(
                   String... urlStrings) throws MalformedURLException {
              List<PdfDocumentSource> sourceList = new ArrayList<PdfDocumentSource>(
                        urlStrings.length);
              for (String url : urlStrings) {
                   URL urlDoc = new URL(url);
                   PdfDocumentSource pdfSource = new UrlPdfDocumentSource(urlDoc);
                   try {
                        System.out.println("URL in create method - "+urlDoc);
                        System.out.println("PDFSource input stream - "+pdfSource.getDocumentInputStream().available());
                   } catch (IOException e) {
                        e.printStackTrace();
                   sourceList.add(pdfSource);
              return sourceList;
         public void mergeAll() throws DataException, ServiceException {
              Properties property = this.m_binder.getLocalData();
              String urlStrings = "";
              List<PdfDocumentSource> sourceList;
              PdfDocumentSource mergedPDF = null;
              urlStrings = property.getProperty("webURL");
              String[] urls = urlStrings.split(";");
              try {
                   sourceList = createPdfDocumentSourceList(urls);
                   PdfMerge merge = new PdfMerge(sourceList, true);
                   try {
                        mergedPDF = merge.createMergedPdf();
                        transferToClient(mergedPDF);
                   } catch (PdfProcessingException e) {
                        e.printStackTrace();
              } catch (MalformedURLException e) {
                   e.printStackTrace();
              System.out.println("hello123");
              System.out.println("URLS - "+urlStrings);
         public void transferToClient(PdfDocumentSource mergedPDF){
              this.m_binder.m_contentType = "application/pdf";
              this.m_binder.m_clientEncoding = "utf-8";
              DataStreamWrapper dataStreamWrapper = this.createNewDownloadStream();
              dataStreamWrapper.m_clientFileName = "MergedPDF.pdf";
              dataStreamWrapper.m_inStream = mergedPDF.getDocumentInputStream();
              //dataStreamWrapper.m_inStreamActive = true;
              dataStreamWrapper.m_dataType = "application/pdf";
              try {
                   this.m_httpImplementor.sendStreamResponse(this.m_binder, dataStreamWrapper);
              } catch (ServiceException e) {
                   e.printStackTrace();
              * StringBuffer sb = this.createHttpResponseHeader();
              sb.append("Content-Type: application/pdf");
              sb.append("Content-Disposition: attachment; filename=fname.ext");
              //m_headerStr
              this.m_headerStr = sb.toString();
    }

  • Problem in downloading a file from AS to client through form using webutil

    I am running oracle 10g sever & devloper 10g in the same machine. Almost every thing is working properly from a client PC in the network except the following aspect :-
    From client pc, through form, I have created one export(dmp file) which is being saved in the AS. Now I want this file to be downloaded from AS to this client PC.
    I have tried webutil_file.copy_file(server_filename,client_copy_name) which is not working. the error trace file says "Unable to open source file in server" & "Unable to read WebUtil configuration file".
    I have also tried webutil_file_transfer.AS_to_Client_with_progress
    which results in unsuccessful from server to client.
    I modified the webutil.cfg file as :=
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.accessControl=FALSE
    transfer.appsrv.workAreaRoot=D:\temp
    transfer.appsrv.read.1=D:\temp
    transfer.appsrv.write.1=D:\temp
    Please help me out from this situation

    hi
    Welcome to OTN.
    try to use.
    Client_host()sarah

  • How to download a file from server to client m/c

    hi
    my requirement is,
    a form is displayed to user with a download button and
    onclick of download ,user will see a box with options open,save,cancel.
    if user clicks on open /save ,how to get the info about download is complete on client side because i need to set a flag in database ,
    as Downloaded once the download is complete on client side
    my problem is ,in the action of form the path given is of servlet class
    having code of
    setheader and setcontenttype as attachment but on click of download button it is opening the servlet instead of the required file,
    means it is opening the page specified in action of form ,
    what can be done abt it??/

    Please post your code using code tags (click on CODE above the text area, when posting)
    response.setContentType("application/octet-stream");Why octet-stream? Set the correct mime-type.
    String disHeader = "Attachment; Filename=\"filename\"";The filename should just be the file's name. Not the complete path to the file! This will tell anyone where the file is located on the server. It's also inconvenient because by default,the browser will suggest it as the name for the download.
    Your way of writing to the output stream is just plain wrong. See this snippet (picked from [http://balusc.blogspot.com/2007/07/fileservlet.html])
            BufferedInputStream input = null;
            BufferedOutputStream output = null;
            try {
                // Open streams.
                input = new BufferedInputStream(new FileInputStream(file), DEFAULT_BUFFER_SIZE);
                output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE);
                // Write file contents to response.
                byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
                int length;
                while ((length = input.read(buffer)) > 0) {
                    output.write(buffer, 0, length);
                // Finalize task.
                output.flush();
            } finally {
                // Gently close streams.
                close(output);
                close(input);
            }

  • TP4 / ADF Rich client demo just downloaded from otn / 41 compiling errors !

    I just downloaded ADF Riche client demo and installed it jdev tp4.
    Rebuild causes 41 compilation errors and the application is not runnable.
    Is it a way to solve this ?
    Some of the errors:
    Error: cannot read: C:\JDeveloper\myWork\adf-richclient-demo\adf-richclient-demo\public_html\WEB-INF\classes\.jsps\_components\_inputComboboxListOfValues_jspx.java
    Error: cannot read: C:\JDeveloper\myWork\adf-richclient-demo\adf-richclient-demo\public_html\WEB-INF\classes\.jsps\_components\_queryToggle_jspx.java
    Error(57): "rows" is not a valid attribute name.
    Error(57): "maxColumns" is not a valid attribute name.

    Forget about it ... downloading again and reinstalling it without any errors ... may be i downloaded from an older link or do some bad copy ... sorry disturbing you !

  • Exceptions at the time of downloading jars from server to client PC-Help !!

    Always getting some exceptions in my log file at the time of downloading the jar files from server to my client PC. Actually our appln contains different functionalities and one of the functionality is this stanalone appln. When i click on some links into my appln request will go to the server and then download some jars into client PC. After that it works as a stanalone appln.
    i am attaching my stack trace along with this query. Plse reply ----
    2006-04-06 05:48:58 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:48:59 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:48:59 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:00 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:00 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:00 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:02 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:02 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:04 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:04 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:05 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFil

    cross posting idiot well, im sorry for that..I posted it here now cause it concerns more bout servlet..

  • Is it possible to control what updates a client will install, but have them be downloaded from Microsoft?

    We have many smaller sites that are connected to our MPLS network on low bandwidth links such as 2 - 4 Mbps. There is not enough infrastructure there to support a DP site server.  Is there a way to tell the client what Windows Updates to install, but
    have that client download from Microsoft rather than a DP? 
    Part of the problem is that the DP for those clients will have the files, so most of the options I see on the specify download settings of this deployment page of the wizard, do not seem to work for me.  I see where I can tell the client to use Microsoft
    Updates if the updates are not found on distribution point. But they will be found because they will be there for clients that use it with higher bandwidth. 
    Is branch cache ( or allow clients to share content I guess ) my only option?
    Thanks

    Ok, keep in mind that this stuff is not tested, not documented, and not supported:
    Under "SELECT * FROM SMS_SCI_Component WHERE ComponentName = ' SMS_WSUS_CONFIGURATION_MANAGER ' AND SiteCode = 'CEN'"
    Property is:
    HostBinariesOnMicrosoftUpdate
    Undocumented, untested, but normally untested stuff works well for ConfigMgr! Flag is propbably translated to this WSUS feature:
    https://msdn.microsoft.com/en-us/library/microsoft.updateservices.administration.iupdateserverconfiguration.hostbinariesonmicrosoftupdate(v=vs.85).aspx
    So try setting it to 1 and have a go?
    //Andreas
    http://2pintsoftware.com
    PS. After talking to Jason it's likely that this will not help you... so dont get your hopes up. :-/

  • E-mail client corrupt for OS 10.8.3 downloaded from apple site

    corrupt email app. Neet to reinstall. 10.8.3 No CD,downloaded from apple

    Your download or install was corrupted. Before you do ANYTHING backup your computer. Repeat before you do ANYTHING  back up your computer. Then boot into the Restore partition and then reinstall OS X.

  • Location for appserv-deployment-client.jar

    Hi All,
    I need small help from this forum. I was search two .jar files using Google. I didn't find this file location. If anybody have this following jar files or this two files location on web. Please send the .jar files to my personal id. [email protected] or share this web location, I'll download ...
    1) appserv-deployment-client.jar
    2) appserv-launch.jar
    Thank You,
    Pattanaik

    I think I have found the solution:
    Yes, POSSIBLE. Lets say we want to have "prog.jar" and "prog_lib.jar"
    To do that:
    1. First deploy "prog.jar" by excluding all libraries.
    2. Then, deploy "prog_lib.jar" by excluding all classes but including libraries only.
    Add the "prog_lib.jar" file into your classpath.
    It should work.
    Any other comments?

  • How to call a text FTP proxy service from a Java client ?

    Greetings,
    I've configured a text FTP proxy service which downloads files from a FTP server. It pols a directory on the FTP server and, as soon as a file respecting a given pattern apears it is downloaded. I tested the service in the test console and by putting some test files onto the FTP server. Now, I need to be able to test it from a Java client. How may I do that ? I need to write a Java client to connect to the OSB and to tell to it to use the FTP proxy in order to download a given file, from a given location and to put it in a given location on the client machine. Many thanks in advance for any help. A sample would be great !
    Kind regards,
    Nicolas

    Ok, I understand. The crucial question here is "what is a caller that you refer to?"
    Don't get me wrong, but the problem here is that you probably don't understand, what OSB is good for. OSB is an event-driven system. The event in your case is a new message in remote FTP server. You have to define what should happen when that event is fired. And that's all. You don't have to involve other client (or caller) for this case.
    You should define your FTP proxy to retrieve all relevant files from FTP server and then you should route them based on their name/content/encoding/whatever to different consumers. You can also have many proxies if you want - one for each name. It's up to you. But you don't have any "callers" in either case.

  • Icloud photo library won't work unless connected to wifi.  If I am trying to attach a pic to a message or email, I get the error "photo can't be downloaded from iphoto library, please try later." If I connect to wifi it works just fine.

    If I am trying to attach a pic to a message or email, I get the error "photo can't be downloaded from icloud photo library, please try later." If I connect to wifi it works just fine.  If it's truly "storing" a low res version on my phone it shouldn't have to download anything.  I can understand the uploading of pics to library only being done over wifi, but there are plenty of times I'm going to want to send a pic when I'm not going to be near a network.  It does work occasionally, but the norm is that I get the error.

    Hi Ed,
    There is issue with Windows 7 when you send the email. It gives the message you specified.
    But you can always use Adobe Email client to send your images. In this workflow also you would get the error message but you can ignore it and continue to send the mail.
    Thanks,
    Sourabh

  • Download from jsp----

    hi friends!
    i am using a jsp for a download of a video file.The download step should be like,
    clicking the right mouse button on the link and select,'save target as' to save the file into the computer hard disk.
    Here is the place where i have been wall-blocked to proceed further.That is i have to track the user that he clicked and downloaded the specific file.The user i mean is a memeber who logs in and reaches upto the download page.
    This tracking is necessary in order that the total file size downloaded for the 24 hours duration does not exceed 1.2GB.If it exceeds when the user clicks one clip he will be served with the message to relog in after 24 hours for further downloads
    I am really stuck as how to implement this in the site.I am coming in the second round to the forum,seeking advise/solution to this task.Now i have to launch the site in a weeks time.
    Help me please.The implementation of this tracking process is crucial to satisfy the client.
    thanks and regards
    sat

    hi leo_pruna
    If your referring to right clicking that can be done anywhere regardless of what country you are in. What you need to do is create a servlet that controls the downloads. If a user right clicks and saves target as and doesn't have rights to download the video then the servlet should forward to an html (JSP) page. At that point if they just saved target as then they should only get the HTML representation and not the video.
    Thanks a lot.I really did not understand what u are telling me to do in the above paragraph.
    According to my cient demand , the video download is allowed for members only.
    To achieve this, i have done the implementation as follows:
    After the user logs in,
    When he wants to download a movie he will go to the downloadjsp, where the movie is split into many parts and each part has download link displayed .
    When he clicks one of the links, he will be allowed to download through download servlet and the download servlet will ensure his limit and acts accordingly.
    The above operation is performed through a left click of mouse button on the download link of download jsp.
    but in japan for the video download sites, the download is allowed only by rt clicking and selecting save targer as option.This is as per the law of the country.
    what i planned to do now in order that the rt click download opration to be effective is, just let the user to download from the download jsp itself, without going to the download servlet.(this effectively renders me the download without user tracking)
    I did not got idea as how to incorporate the servlet way of downloading by rt clicking on the link .that is the reason i have planned to do so.
    And now that u have suggested me some solution which will also enable me to track the users through the rt click action with download servlet.The above highlighted part(***) from your reply i can not follow.pl pardon me for saying that.
    If u explain to me again the same , i will be able to implement.
    will u take pains to explain again
    thanks and regards
    sat

  • Some Email cannot be downloaded from server

    After 5 years, I have recently(over the last two weeks) cannot download some of the emails I receive to my POP account. It's weird. I boot my computer up I see my emails with attachments, photos, etc. and Then when I revisit some of the emails they show this message: THE MESSAGE FROM (EMAIL ADDRESS) CONCERNING "MESSAGE" HAS NOT BEEN DOWNLOADED FROM THE SERVER. YOU NEED TO TAKE THIS ACCOUNT ONLINE IN ORDER TO DOWNLOAD IT. Sometimes all messages default to this and sometimes only a few.
    Does anyone know what this is and how to correct it?
    Thanks,
    Frank Zamacona
    Powerbook G4   Mac OS X (10.3.9)   titanium
    Powerbook G4   Mac OS X (10.3.9)   titanium

    Hello Frank.
    These messages have been downloaded from the server.
    The error message is incorrect which does not indicate what the actual error and problem is.
    This error message indicates an "overstuffed" mailbox issue which means the mailbox has approached or exceeded the recommended mailbox size limit or the mailbox has some corruption.
    All email clients have limits and the recommended mailbox size limit with Jaguar and Panther Mail is 1 GB and for Tiger Mail, 2 GB.
    An "overstuffed" mailbox issue can occur at any mailbox size but is more likely to occur depending on the number and size of message attachments contained in a mailbox and especially when a Jaguar or Panther mailbox approaches or exceeds 1 GB in size.
    This has all but been eliminated with Tiger Mail which uses a different mailbox filing format and structure than is used with previous Mail.app versions.
    In addition, since an account's Inbox mailbox is usually the most active mailbox and more prone to corruption over time, it is not a good idea to use an account's Inbox mailbox as the final storage location for all received messages not deleted that you need or want to save. This is what user created "On My Mac" location mailboxes can and should be used for.
    With the Mail.app quit and using the Finder go to Home > Library > Mail > this POP account named folder (named by the user name and incoming mail server for the account) > INBOX.mbox.
    Move the INBOX.mbox to the Desktop.
    Launch Mail and a new INBOX.mbox will be created automatically by Mail within the account named folder.
    This will allow the Mail.app to function properly again and not risk losing any new messages downloaded/received by this account while working on the old INBOX.mbox moved to the Desktop to try to recover the existing messages.
    Control-click on the old INBOX.mbox moved to the Desktop and at the menu window that appears, select Show Package Contents.
    List the package content file names and size of each.

  • JNLP and jar files are being download from server again.

    I have a swing application deployed with Java Web Start on a server.
    On my client I install the application using JWS JRE 1.6.
    The issue is that without any change in the jars or JNLP the jars are being downloaded from the server again and again
    This is not consistant - it happens only sometimes.
    One important thing to mention: The server is inside a load-balancer cluster (AKAMAI), so the IP address of the actual server may change between different accesses.
    in the log, I can see the error:
    "Cache entry not found"
    and then the jar is being downloaded again.
    sometimes only one or two jars were downloaded again, sometimes the whole package with the JNLP file were dowloaded again.
    Can you suggest what can be the reason for this behavior?
    Thank you,
    Ran

    That does seem slow, but there are many factors that could be involved. More information would be helpful:
    - Are the source and destination filesystems ZFS or UFS? (or some other FS)
    - What does iostat show you?
    - What does vmstat show you?
    - What type of HBAs connect you to the SAN? ('fcinfo hba-port')
    - Anything in /var/adm/messages?

Maybe you are looking for