Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jadeite100

  1. jadeite100

    Can weblogic client takes empty arrays being returned.

    Hi All: I am using weblogic 9.2 to generate the web service client code. Here is my build.xml file to build the java client code: Here is my client code to test the web service. I get the following error: java.rmi.RemoteException: Illegal Capacity: -1; nested exception is...
  2. jadeite100

    How to sort the result return from a web service.

    Hi: I have a web service that returns an arraylist of a class called Result. Here is the code for Result.java I am displaying result by doing a while loop in the jsp of th arraylist.
  3. jadeite100

    How to sort the result return from a web service.

    Hi All: I am using Weblogic 9.2, Web Services Client, and Struts. I have a java client in struts that calls a web services. The "ID" field contains a Java integer. The "First_Name" is a Java String. The "Effective_Date" field is a Java date field. The web service returns an arrayList. From...
  4. jadeite100

    How to passed an xsl parameter to a javascript function inside an xsl

    Hi: I am having problem passing an xsl param variable as a parameter to a javascript function inside an xsl styelsheet. Here is my xsl stylesheet. I am trying to pass a variable called numberOfRecordsFromDatabase to a javascript function called window.parent.shrinkIFrame(<xsl:value-of...
  5. jadeite100

    How to pass a server side value to an attribute of a custom jsp tag

    Hi: Thank you for your suggestions. I tried your suggestions and I get the following error: java.lang.NumberFormatException: For input string: "${ic.totalNumOfRecords}" at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1224) at java.lang.Double.valueOf(Double.java:447) at...
  6. jadeite100

    java.lang.reflect.InvocationTargetException

    Hi All: I am using Tomcat 5.5, Axis 1.4, and myEclipse 5.5. I am new to java web services and Axis. I am trying an example from the book "Beginning Java Web Services" by Henry Bequet. This is the Stock Quote example on Chapter 3 page 113. When I tried the following...
  7. jadeite100

    How to pass a server side value to an attribute of a custom jsp tag

    Hi All: I needed to passed an integer value from the following code: <%=ic.getTotalNumOfRecords()%> to an attribute of a custom tag <inquiry:tableClaimHistory numberOfRecords="5" dataAction="claimHistoryViewData.do" emptyKey="error.noData"/> The function getTotalNumOfRecords returns an int...
  8. jadeite100

    What is the difference between height, scrollHeight and style.height

    Hi: Can you please tell me what is the parent.document.getElementById('dataFrame').offsetHeight Thanks.
  9. jadeite100

    What is the difference between height, scrollHeight and style.height

    Hi: I have a IFrame called "dataFrame". Does anybody know the difference between document.getElementById('dataFrame').height and document.getElementById('dataFrame').Document.body.scrollHeight; and document.getElementById('dataFrame').style.height Yours, Frustrated
  10. jadeite100

    Can a jsp file in an IFrame calls a javascript function outside of the

    Hi: I am using IE 6 SP2. My resize attribute does not work <body onresize="test1();">. When I resize my window, the resize event doesnot get call. I have a jsp page with an iFrame called test1.jsp. The iFrame src points to a page called test2.jsp. It has a resize attribute that calls a...
  11. jadeite100

    javascript to capture event for restore down or maximize

    Hi: I am using IE 6 SP2. I needed to resize an iFrame when the window is resize. And the only way I know how is to called a javascript function when the resize event occur. I can capture the event when the window is resize on a simple html but when I used with an actual application, the resize...
  12. jadeite100

    How to capture the event when a popup window box is resize

    Hi: Sorry, I forgot how to put the html tags in a: I thought it was <QUOTE></QUOTE> but this doesn't seemed to work. Yours, Frustrated
  13. jadeite100

    How to capture the event when a popup window box is resize

    Hi: Thank for the answer. The above code works as advised by you. But unfortunately when I used with the full code when I resize the window the onresize event doesnot get triggered. I read on the web that the window object is sometimes not available when use with certain html. Is there another...
  14. jadeite100

    How to capture the event when a popup window box is resize

    Hi: I am using IE 6 SP2. I have the following javascript function that is call when the popup window is created. When I resize the popup window how can I triggered the javascript function called "shrinkIFrame". Basically, I needed to be notified that the window is being resize than I can...
  15. jadeite100

    IFrame Top Horizontal Scrollbar

    Hi All: I am using IE 6 SP2. IFrame is only support by IE. Here is the code: <body > <table> <tr> <td vertical-align: top; padding: 3px> <IFRAME SRC="http://www.google.ca" HEIGHT="150" WIDTH="200"> Sorry, your browser doesn't support inline frames. </IFRAME> </td> </tr> </table> </body> By...

Part and Inventory Search

Back
Top