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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Ascalonian
  • Content: Threads
  • Order by date
  1. Ascalonian

    JAX-WS: Using NodeList so that Excel Web Services Toolkit can use web

    I am running into a couple of issues where an Excel spreadsheet is suppose to call a Java web service I have created in JAX-WS and get back the results. However, there is some issue with not sending, nor receiving, back a NodeList. I am not sure how I need to change my web service to handle...
  2. Ascalonian

    JAX-WS: Using argument in method from another class annotation

    I am creating a web service for work. I am breaking it down into 3 separate Maven projects: SOA (stores the request and response objects used in web methods) Services (this stores the classes that actually do the processing of the data) [li]WebServices (This stores the endpoint interface and...
  3. Ascalonian

    OR operator in tcsh

    I am so lost trying to use the OR operator in my script. I have tried everything and can't seem to get it to work. I am using Cygwin on windows, and my default shell is tcsh (echo $0). I have tried the following... #!/bin/sh echo "Enter: 1,2 or 3" read choice if [$choice -eq "1" -o $choice...
  4. Ascalonian

    Setting foreground color for HSSFCellStyle is always coming out black

    I am using POI to create an Excel spreadsheet in Java. I have the following code used for creating a header row: HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet sheet = wb.createSheet("Report"); // some more code HSSFRow row = sheet.createRow(0); HSSFCell cell = row.createCell(cellNumber)...
  5. Ascalonian

    Calculating elapsed time

    I am trying to calculate the time it took for my validation method to start and stop. I wrote some code that I thought should have worked, but the output seems way off. My code and output is below. long startTime = System.currentTimeMillis(); ... long endTime = System.currentTimeMillis()...
  6. Ascalonian

    How do I bring an Oracle BLOB into SQL Server?

    If this is the wrong forum, please let me know. I have two databases: Oracle 10G and SQL Server 2000. Inside the Oracle database, I have several MS Word documents stored as BLOBs. What I need to do is extract the files from Oracle and place them into SQL Server. I am curious as to how I do...
  7. Ascalonian

    How do I bring an Oracle BLOB into SQL Server?

    If this is the wrong forum, please let me know. I have two databases: Oracle 10G and SQL Server 2000. Inside the Oracle database, I have several MS Word documents stored as BLOBs. What I need to do is extract the files from Oracle and place them into SQL Server. I am curious as to how I do...
  8. Ascalonian

    Bash Shell: Auto Source

    I have added some aliases to my .bashrc file. However, I don't want to keep signing into the server and do "source ~/.bashrc" everytime. I have tried adding that code to .bash_profile and .bash_login but it still will not source the file. What am I doing wrong? I appreciate any help.
  9. Ascalonian

    NText issue

    I have two tables (table_one, table_two). These are mirror tables, so they contain the same columns. I am trying to work with two columns: key_code and proposal_text. Both tables have the same values in key_code but table_two has all NULLs in proposal_text. So I am tasked with moving the...
  10. Ascalonian

    JTextArea append issue

    I am sure several of you have had this issue: I have a JTextArea in one of my swing apps. At a given point, I am pumping a lot of text to the JTextArea via the append() method. The issue I see is that it doesn't display right away. Rather, it hangs and won't display until the very end. I would...
  11. Ascalonian

    Managing Global IT Teams

    The company I work for has several divisions world wide. Each division has its own IT department. What this means is that a lot of divisions have their own set of applications they use. Our new company goal is to create a common technology footprint for the whole company to use. For example...
  12. Ascalonian

    Using Spring with a JAR File

    Using Eclipse, I setup a Java Project that uses the Spring framework. It runs successfully in Eclipse. I need to create a JAR file of all the class files so I can move them to a server. However, when I run the jar file using: java -jar someName.jar org.com.companyName.TestThis It complains...
  13. Ascalonian

    ETags and Expire Headers

    I was wondering how I can remove ETags (Entity Tags) from being sent through Tomcat... And how I can change the Expires Header to be further out. I know I can do it in Apache, but can't figure it out for Tomcat. Any help is appreciated!
  14. Ascalonian

    Inner Select Need Parameters

    I have a SQL statement structured similar to: SELECT oh.header_id, ol.line_id, ol.line_number FROM order_headers oh, order_lines ol WHERE oh.header_id IN (SELECT x.header_id FROM some_table x WHERE ordered_date =...
  15. Ascalonian

    Group By Question

    I have a result set coming back like: header_id line_number value --------- ----------- ------ 294 1 A 294 2 A 232 1 A 232 2 B 215 1 A 216 3 B...
  16. Ascalonian

    CSS for input type = button in Internet Explorer

    I am trying to apply some CSS to a button in a form. I am able to do: input[type="button"]{...} However, that does not work in IE (surprise, surprise). Is there another way to apply a CSS to a button without having to add the class or style attribute?
  17. Ascalonian

    Column Aliasing

    I was just curious if there is a difference between: SELECT column_a AS some_column FROM DUAL; or SELECT column_a some_column FROM DUAL; Is there any advantage to using the AS keyword?
  18. Ascalonian

    CSS: Visibility and Display

    OK, here is an odd question: Is there a point to using both visibility AND display together? For example: var someDiv = document.getElementById("someDiv"); someDiv.visibility="hidden"; someDiv.display="none"; I understand the difference between the two but I am looking at someone else's code...
  19. Ascalonian

    Oracle Text: Using CONTAINS

    I am trying to use Oracle's Text searching but running into an issue. Say I have a table that has a CUSTOMER_NAME column in it. Now say I have several values in here, all starting with "Bank Of" and some name. For a good example, let me use "Bank Of America". Now, if I do the following, I...
  20. Ascalonian

    CSS Class Overwrite

    Say I have a <TD> element defined as: <td class="leftAlign rightAlign" id="testTD"> Align Me! </td> In leftAlign, I have it align the text to the left. The opposite in the right. When I do this, the text is always left aligned. I would think rightAlign would overwrite this...

Part and Inventory Search

Back
Top