Print previous jsp page generated content

Hi to all
Today i am trying to print a previous jsp page content in a next jsp page.
For this reason i am passing the pagecontext object from the first jsp page to second jsp.
My first jsp page coding is
===================
<%
out.print("hello");
session.setAttribute("pagedata",pageContext);
%>
Click
The coding in page.jsp is
===================
<%@ page import="java.io.*"%>
<%
PageContext p=(PageContext) session.getAttribute("pagedata");
JspWriter pageWriter = null;
HttpServletRequest respon = (HttpServletRequest)p.getRequest();
out.print(respon.getContentLength());
InputStream print=respon.getInputStream();
if(print.read()!=-1)
out.print(print.read());
%>
but page.jsp doesn't print anything
can i do this way
Please Help me.

Your code doesn't seem to be doing anything related to what you want to do. You are reading from the inputStream of the previous request and writing it to the current response. How is that supposed to work?? When you write to a response stream, the response is sent to the client and not stored in the request object or anywhere else. If you want to send the response of another page in a different page, you'll have to send all the response of the first page to a StringBuffer, send it as the response in the first request and store it in session scope. This is a way that I can think of for doing this...

Similar Messages

  • How to print a JSP page ?

    HI,
    I need to implement a printing functionality on a JSP page.
    So I have a JSP page and there wud be a button on top of it.There is one table containing around 20 columns. So I jusst want to print that table out and nothng else from page.
    So when user clicks on Print button , whcih will open a new window and show the contents to be printed.Once user click Print bbutton on this second newly opened window it shud print.
    Can any one provide pointer to any link or help to implement this?
    Thanks in advance..
    javaardentfan

    You can do it using javascript, see the following JSP code and follow it.
    put the code in DIV tags that you do not wat to see in the final print
    previewRpt() javascript method does all the work..
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%-- jsf:pagecode language="java" location="/JavaSource/pagecode/jsp/reports/OrderEditDetailsPopup.java" --%><%-- /jsf:pagecode --%>
    <%@taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@taglib uri="http://www.ibm.com/jsf/html_extended" prefix="hx"%>
    <HTML>
    <HEAD>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
         pageEncoding="ISO-8859-1"%>
    <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <META name="GENERATOR" content="IBM Software Development Platform">
    <META http-equiv="Content-Style-Type" content="text/css">
    <LINK href="../../theme/Master.css" rel="stylesheet" type="text/css">
    <LINK rel="stylesheet" href="../../theme/EOPS.css" type="text/css">
    <LINK REL="stylesheet" TYPE="text/css" HREF="../../theme/menus.css" />
    <TITLE>Option Order Edit Details</TITLE>
    <LINK rel="stylesheet" type="text/css" href="../../theme/stylesheet.css"
         title="Style">
    <script language="javascript">
    function previewRpt() {
         document.getElementById("buttonsArea").style.display="none";
         document.getElementById("buttonArea").style.display="none";
         if (document.all) {
              var OLECMDID = 7;
              /* OLECMDID values:
              * 6 - print * 7 - print preview * 1 - open window * 4 - Save As
              var PROMPT = 1; // 2 DONTPROMPTUSER
              var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
              document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
              WebBrowser1.ExecWB(OLECMDID, PROMPT);
              WebBrowser1.outerHTML = "";     
              window.PrintArea.innerHTML = "<div class='formlabel'>Please Click the X on the window to close!</div>"
              window.close();
         } else {
              window.print();
    </script>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    </HEAD>
    <f:view>
         <BODY onload="javascript:scrollTop=0"><hx:scriptCollector id="scriptCollector1">
              <div style="visibility:hidden">
                   <hx:commandExButton type="button" value="Close"
                   styleClass="custbutton1" id="button2">
              </hx:commandExButton>
              </div>
              <div id="buttonsArea">
                   <table cellpadding="0" cellspacing="0" border="0" width="100%">
                   <tr>
                   <td></td>
                   <td align="right">
                        <input type="image" src="../../images/printRest.gif" title="Print This report"
                                  onclick="previewRpt()"/>
                   </td>
                   </tr>
                   </table>
              </div>
              <TABLE width="100%">
                   <TR><TD align="center"> <h3>Order Edit Detail Report</h3></TD></TR>
                   <TR><TD align="center"> Order Id # <c:out value="${ORDER_HEADER_ID}"></c:out> Details</TD></TR>
              </TABLE>
         <BR>
              <TABLE class="grooved" border="1" cellpadding="0" cellspacing="0">
                   <TR><TD class="formlabel">Account</TD><TD><c:out value="${PART1.ACCOUNT}"> </c:out></TD></TR>
                   <TR><TD class="formlabel">Order Status</TD><TD><c:out value="${PART1.ORDER_STATUS}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Order Number</TD><TD><c:out value="${PART1.ORDER_NO}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Sales Rep #</TD><TD><c:out value="${PART1.SALES_REP_NO}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Order Date</TD><TD><c:out value="${PART1.ORDER_DATE}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">PO</TD><TD><c:out value="${PART1.PO}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">School or Institution Name</TD><TD><c:out value="${PART1.SCHOOL_NAME}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">District or Parent Institution Name</TD><TD><c:out value="${PART1.DISTRICT_NAME}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Account Name</TD><TD><c:out value="${PART1.ACCOUNT_NAME}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Attention</TD><TD><c:out value="${PART1.ATTENTION}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Miscellaneous</TD><TD><c:out value="${PART1.MISC}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Street Address</TD><TD><c:out value="${PART1.STREET}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">City</TD><TD><c:out value="${PART1.CITY}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">State</TD><TD><c:out value="${PART1.STATE}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Zip</TD><TD><c:out value="${PART1.ZIP}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Contact Phone</TD><TD><c:out value="${PART1.CONTACT_PH}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Contact Fax</TD><TD><c:out value="${PART1.CONTACT_FAX}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Pack By</TD><TD><c:out value="${PART1.PACK_BY}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Ship On Date</TD><TD><c:out value="${PART1.SHIP_ON_DATE}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Order Ship Via</TD><TD><c:out value="${PART1.ORDER_SHIP_VIA}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Customer Default Ship Via</TD><TD><c:out value="${PART1.CUSTOMER_DEFAULT_SHIP_VIA}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Warehouse</TD><TD><c:out value="${PART1.WAREHOUSE}"></c:out> </TD></TR>
              </TABLE>
              <BR>
              <c:if test="${PART2_FOUND eq 'YES'}">
              <h:form styleClass="form" id="form1"><h:dataTable border="1" cellpadding="2" cellspacing="0" columnClasses="columnClass1" headerClass="headerClass" footerClass="footerClass" rowClasses="rowClass1" styleClass="dataTable" id="table1" value="#{PART2}" var="rpt" rows="40">
                   <h:column id="column1">
                        <f:facet name="header">
                             <h:outputText id="text1" styleClass="outputText" value="Product Title"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text11" value="#{rpt.PRODUCT_TITLE}"></h:outputText>
                   </h:column>
                   <h:column id="column2">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Product Code" id="text2"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text12" value="#{rpt.PRODUCT_CODE}"></h:outputText>
                   </h:column>
                   <h:column id="column3">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Order QTY" id="text3"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text13" value="#{rpt.ORDER_QTY}"></h:outputText>
                   </h:column>
                   <h:column id="column4">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Customer Service QTY" id="text4"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text14" value="#{rpt.CUSTOMER_SERVICE_QTY}"></h:outputText>
                   </h:column>
                   <h:column id="column5">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Sales Admin QTY" id="text5"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text15" value="#{rpt.SALES_ADMIN_QTY}"></h:outputText>
                   </h:column>
                   <h:column id="column7">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Product Price" id="text7"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text17" value="#{rpt.PRODUCT_PRICE}"></h:outputText>
                   </h:column>
                   <h:column id="column8">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Extended Cost" id="text8"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text18" value="#{rpt.EXTENDED_COST}"></h:outputText>
                   </h:column>
                   <h:column id="column9">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Gratis" id="text9"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text19" value="#{rpt.GRATIS}"></h:outputText>
                   </h:column>
                   <h:column id="column10">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Series" id="text10"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text20" value="#{rpt.SERIES}"></h:outputText>
                   </h:column>
                        <f:facet name="footer">
                             <hx:panelBox styleClass="panelBox" id="box1">
                                       <hx:pagerDeluxe styleClass="pagerDeluxe" id="deluxe1" />
                                  </hx:panelBox>
                        </f:facet>
                   </h:dataTable></h:form>
              </c:if>
              <br>
              <div id="buttonArea">     
              <center><hx:commandExButton type="button" value="Close"
                   onclick="window.close();" styleClass="custbutton1" id="button1">
              </hx:commandExButton></center>
              </div>
              <BR>
         </hx:scriptCollector></BODY>
    </f:view>
    <HEAD>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    </HEAD>
    </HTML>

  • Recursive Print in JSP page

    I have a tree like structure in my java code and I want to print the output in my JSP page. Any idea how to perform recursive print in a JSP page.

    Couldnt U just use a while loop something like the following...
    <table>
    <%
    while(tree.next()){
    %>
    <tr>
    <td><%=tree.getString("output") %></td>
    <td><%=tree.getString("output2") %></td>
    </tr>
    <%
    } %>
    </table>
    or your version of that...
    Assuming U have Ur tree.next returning a false when it gets to the end.
    Hope I helped.
    - meMyselfAndI

  • Printing the JSP Page

    Hi All,
    I have a jsp page and want to print the page when user clicks the
    button it is similar to printing the web page from file menu which is on the IE browser.
    Thanks

    Use JavaScript in your JSP:
    <input type="button" value="Print" onClick="window.print()">

  • Printing a jsp page

    I am building an application in which there is option for printing that jsp by clicking
    print button.(I used MVC -2 architecture (jsp ,ejb,struts)).Please help me out.

    I am building an application in which there is option
    for printing that jsp by clicking
    print button.(I used MVC -2 architecture (jsp
    ,ejb,struts)).Please help me out.Printing the page is browser related stuff which has nothing to do with EJB or Struts. A simple way of doing it is using JavaScript for which a Google search gives several code samples.

  • Print in jsp page

    hi,
    I using jsp to develop webpage. From that i need to print a small size identity cards. while i design, it shows in corner of webpage and remain space are as whitespace.
    also i using print() in javascript to print.
    how to print a page with small size.?
    thanks in advance.,
    edi

    Couldnt U just use a while loop something like the following...
    <table>
    <%
    while(tree.next()){
    %>
    <tr>
    <td><%=tree.getString("output") %></td>
    <td><%=tree.getString("output2") %></td>
    </tr>
    <%
    } %>
    </table>
    or your version of that...
    Assuming U have Ur tree.next returning a false when it gets to the end.
    Hope I helped.
    - meMyselfAndI

  • Viewing printed jsp pages

    Working on an application that prints several jsp pages. I need to change the styling on the page but its hard to track the elements, and it sucks making changes and then reprinting(repeat). Is there a call I can make to print out the page. The actually page is a link element that gets printed somehow(not entirely sure). I tried something along the lines of getting the innerHtml to print to console from the actual page as well as system outs, and console.log. Nothing worked, any ideas would help
    Edited by: 805072 on Oct 25, 2010 2:37 PM

    aksarben wrote:
    That would depend on what browser you use. In MSIE (as I recall) you would call window.print().From what I've been told by my coworkers is that a PrintPage.jsp is created that has several links related to the different pages that end up getting printed(all of them in the end) the one I need to see would be this link
    <link rel="alternate" media="print" href="PrintCutsheet.jsp?designPageToPrint=<%= pNum %>&nocache=<%= System.currentTimeMillis() %>" type="text/html" class="PrintOrder" >The actual printed page is PrintCutsheet.jsp, neither PrintPage or PrintCutsheet ever actually sees screen time on the browser. Im not sure where the actual print is being called. So where would I call the window.print().
    Sorry for the lack of detail. If there is something I could give you that would help let me know and Ill see what I can come up with.

  • Capturing the output of a jsp page and save that output in a WORD .doc file

    Hi,
    This is Naveen. I got stuck up with a problem/doubt. URGENT ! URGENT !
    My doubt is how to capture the output of a jsp page(the content is dynamic generated) and save that output to a MS-Word doc file.
    I know that therez an option of using Servlets Filters, but this concept is supported by Servlet 2.3 spec. and not earlier. And we are working on previous spec. and our web-servers also supports the prev. version and not the 2.3 version.
    If incase, therez a third-party utility for free usage, suggestions are appreciated.
    Hope most of them came across this kind of functional requirement. If anyone of them succeeded in this, please express ur bitter experience if any, faced during the coding.
    Thanks in Advance for help.
    Naveen

    You can set the MIME content type as .doc and try to open the Page.
    res.setContentType("application/vnd.ms-excel"); to generate the Page output as Excel
    res.setContentType("application/vnd.ms-word"); to generate the Page output as MS Word doc
    Hope this helps..

  • JSP and servlets(displaying Data On JSP page)

    Hiii all
    i am new to JSP ...also to servets
    tell me hw to print my data on the JSP page,
    i can print my data on the server,that data i want to print on JSP page
    if u all have e.g's it will be very good
    Thanks in advance
    Take Care
    Rahul :)

    What do you mean "print data on a JSP?" If you simply mean display dynamic content, you should def read up both on sun's resources and other googled resources for JSP walkthroughs...

  • Download a page's content into Excel sheet

    Hi All,
    I generate a JSP Page with contents retrieved by querying the DB. The JSP Page displays say, 10 rows of records. I need to populate these rows of records into an excel sheet and download the excel sheet on click of an Icon or button.
    How do I achieve this? Please guide.
    Thanks.

    POI-HSSF is a Java API to access/create Excel format files. Below is a code snippet to write a table's column names to an excel sheet using this API.
    import org.apache.poi.hssf.util.*;
    import org.apache.poi.hssf.usermodel.*;
    File excelFile = null;
    // Open a temporary file to write to
    excelFile = File.createTempFile("excel", ".xls");
    FileOutputStream fos = new FileOutputStream(excelFile);
    BufferedOutputStream bos = new BufferedOutputStream(fos);
    // Create a Workbook with one work sheet
    HSSFWorkbook wb = new HSSFWorkbook();
    HSSFSheet sheet = wb.createSheet("WorkSheet1");
    HSSFCellStyle cs = wb.createCellStyle();
    HSSFFont f = wb.createFont();
    f.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    cs.setFont(f);
    Class.forName(" /*driver name goes here.....*/ ");
    Connection connection = DriverManager.getConnection(connectionURL );
    Statement statement = connection.createStatement();
    String query = "select * from table1";
    ResultSet resultSet = statement.executeQuery(query);
    ResultSetMetaData rsMetaData = resultSet.getMetaData();
    int colCount = rsMetaData.getColumnCount();
    HSSFRow titleRow = sheet.createRow((short) 0);
    HSSFCell titleCell = titleRow.createCell((short) 1);
    titleCell.setCellValue("TABLE DATA");
    titleCell.setCellStyle(cs);
    sheet.addMergedRegion(new Region(0,(short)1,0,(short)2));
    HSSFRow headerRow = sheet.createRow(2);
    HSSFCell headerCell[] = new HSSFCell[colCount-1];
    for( int i=0; i<colCount-1; i++ )
             headerCell[i] = headerRow.createCell((short) i, HSSFCell.CELL_TYPE_STRING);
             headerCell.setCellValue( rsMetaData.getColumnName(i+1) );
    headerCell[i].setCellStyle(cs);
    Iffat Tahsin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How Can I speed  up the results on my JSP page with the help of Caching.

    I am generating a dropdown listbox by merging an xml file with a style sheet(xsl).
    This list box comes up fine without any problems. Now, I am adding some advanced
    logic to the
    style sheet (xsl) to use the same xml file in a more efficient way. This time
    the generation
    of the list box is taking much longer (upto 25 seconds) although I get the results
    I want.
    Is there any way I could speedup this process by using weblogics caching. I know
    the process is slowing down
    due to the code in the stylesheet. Will caching resolve this issue?. I tried
    using
    <wl:cache> </wl:cache> on the jsp page generating this listbox but found no improvement.
    Any help will be very much appreciated.

    turn off your phone, unplug your router, leace it off for 30 seconds, and then power it back on and turn the iphone back on

  • How can I call a JSP Page in other Workspace?

    I have two workspaces:
    1. Workspace1: where is my application
    2. Workspace2: where is JSP files generated by BI Beans .
    How can I make reference in a JSP page in Workspace1 to a JSP page in workspace2? this is to include the JSP pages generated by BI Beans to my appliction.
    Thanks in advance.

              Thanks Deepak but I think you don´t understand me.
              I would like the include works like a normal include. I have a jsp in my application
              and , when the client requests this jsp, in the jsp should be added the result
              of the other jsp ejecution that belong to other application in the same domain.
              Is this possible?
              Thank you very much.
              Deepak Vohra <[email protected]> wrote:
              > A Jsp from a different application is included with a relative url to
              >th=
              >e Jsp.
              ><%@ include file=3D"relative url" %>
              >
              >A Jsp could be included with request parameter.
              > <jsp:include page=3D'<%=3D request.getParameter("incFile") %>' />
              >
              >javilla wrote:
              >
              >> Hi,
              >>
              >> I'd like know if it=B4s possible to include jsp or servlet from differe=
              >nt applications.
              >
              

  • SSRS 2008 R2 report prints empty spaces for html content till end of page

    Hi
    I need to display records containing long html content say each record of different size ranging from 5 lines to 3-5 pages.
    Issue observed is:
    When a record complete is printing say half the page and subsequent record is bigger then half a page, the subsequent record is printed on the next page rather than continue immediately after the previous record is completed.
    Is their any property or any other solution to resolve the issue. Print on next page is not set.
    Nikesh Shah

    Hi Nikesh,
    As per my understanding, I think the issue is caused by the blank space in the report body. In order to get rid of the blank space when print the report, please refer to the following steps:
    Click on Report > Report Properties > Layout tab
    Make a note of the values for Page width, Left margin, Right margin
    Close and go back to the design surface
    In the Properties window, select Body
    Click the + symbol to expand the Size node
    Make a note of the value for Width
    Please check the Page Break settings on all your report items and make sure the Body Width + Left margin + Right margin less than or equal to Page width, just like the equalities below:
    (Body Width + Left margin + Right margin) <= (Page width)
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Printing a web  page from the browser using JSP

    Hi sir,
    I want to know how to print a webpage that contains some
    report data where the web page contains a button as well when i click the button only the webpage contents(report data) should be send to the printer and should be printed.Here i should not use any javascript.By using pure java code in Jsp i need to do this.Pls.provide the code for this so that i will be grateful to u.Where it is very Urgent.I will be waiting for ur reply.
    Thanx,
    m.ananthu

    If you are reasonable sure that the user will be using a newer browser you could use the <LINK> tag to set an alternative print page. When the user clicks on the print button it calls a javascript funtion that does a window.print function call. The browser will then request the alternative print page and print this page instead of what is in teh browser.
    This will require two JSP pages but with proper use of includes you can reuse the code.
    Sorry I don't have any examples handy so you'll have to search the web but I know it works because I've done it for an intranet site.

  • How to implement content caching for jsp page ?

    Hello everyone,
    I am reading an article <Servlets and Jsp Best Practice>,at
    http://developer.java.sun.com/developer/technicalArticles/javaserverpages/servlets_jsp/#author, on one section it is saying :
    "Cache content: You should never dynamically regenerate content that doesn't
    change between requests. You can cache content on the client-side, proxy-
    side,or server-side. "
    Now I am working on a project. For every user, some of the content servlet generated will be the same for at least a week . I am thinking if I implement caching for these jsp pages, that would increase performace a lot.
    But I have no idea how to implement it either client-side or server-side, can someone give me a hint ?
    Thanks,
    Rachel

    You mean actually you are caching the response stream
    and the key to distinguish between different response
    streams are made of user's different request
    parameters. And the filter's function is to intercept
    the request to see if this request parameter's
    combination already exists in the Hashmap,then either
    use the cached response or forward to
    servlet.....really interesting...Do I get it right ?Yes that's it in a nutshell.
    >
    Then how do you build those response streams in
    advance ? You did it manually or have some mechanism
    to build it automatically ?
    The data gets cached the first time somebody visits the page.
    Find some examples on Filters, and take a look at the HttpServletResponseWrapper class. You need to cache response headers as well as the body. Another pitfall that you might run into is handling an If-modified-since header on the request. Don't cache the results of those requests.
    -Jonathan
    >
    Thanks again !
    Rachel

Maybe you are looking for

  • New to Java and need help with this program..please!

    I'd really appreciate any helpful comments about this program assignment that I have to turn in a week from Friday. I'm taking a class one night a week and completely new to Java. I'd ask my professor for help, but we can't call him during the week a

  • Assigning values to element part of a variable

    Hello, I have a BPEL process which has a variable declared thusly:     <variable name="myMessageVariable" element="ns1:MyMessage"/>The MyMessage type is declared by an XSD file which is used as part of a WSDL definition which an adapter then uses to

  • Cannot download iPhoto or iMovie to Mac mini Yosemite

    Trying to download this software and unlike 3rd party apps, instead of saying "install" the button says "accept". When I click "accept" I get the password form, enter the correct password, it loads for a second, closes the form and it goes back to th

  • How to un-mute regions

    Hi, Working in Logic Express v.7.2.3 - Everything in my song was playing fine - must have accidentally hit something which muted all regions in an Audio Track I had laid down - now all the regions in that track are greyed-back and act as if they are

  • No reaction on tapping the screen

    Not always but more frequently, there is no reaction on tapping the screen.