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 SkipVought 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: *

  1. Ascalonian

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

    I actually figured this out. I couldn't approach it the way I did. I had to add in some new annotations, along with a restructure of the folders. I needed to add in ObjectFactory, package-info and some other things to get it going. With that said, I think it was more of a JBoss issue than anything.
  2. 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...
  3. Ascalonian

    web services client

    Is there a reason you went with JAX-RPC instead of JAX-WS? If you have a choice (especially if you're using Java 5.0 or greater), I would recommend switching to JAX-WS. You would also then gain two great tools as well: wsgen and wsimport
  4. Ascalonian

    web services client

    I would recommend using SoapUI for testing your web service
  5. Ascalonian

    How do I server pages using https?

    Nothing says thank you like a star ;)
  6. Ascalonian

    Select * with group by

    Gotcha. Well, with all the research I tried with this, everything is saying that you need to specify the columns specifically, if you want to do a group by. So I am interested in seeing if someone can actually find a solution, haha.
  7. Ascalonian

    Select * with group by

    If you are grouping by all columns, I do not see any difference for using a filter. SELECT * FROM Test_Table WHERE DateAdded >= [2012-04-03]
  8. Ascalonian

    Else statement not picking up.

    Just as a side not, please use the [code] TGML tags when posting code. It makes it much easier to read :-)
  9. Ascalonian

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

    This is how I am calling the **wsgen**. I am executing this command from the **WebServices** root folder: wsgen -keep -cp target/classes/ -s src/main/java -d target/classes/ com.mine.WebServiceImpl
  10. 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...
  11. Ascalonian

    mailto syntax

    Could you also please post the code you are using in the body of the HTML for your mailto?
  12. Ascalonian

    mailto syntax

    Try using charset="utf-8
  13. Ascalonian

    project management software

    It really depends on what you mean by affordable? You can get free or cheap software, but it doesn't mean it will do everything you want it to. If you can provide what you want the software to do exactly, I think that would help with finding you the best fit software.
  14. Ascalonian

    OR operator in tcsh

    Is there a way to put multiple OR statements on a line? For example, I have this line: if [ $choice1 -eq "1" -o $choice2 -eq "1" -o $choice2 -eq "2" ]; then ... fi It tells me there are too many arguments in that statement. I greatly appreciate any help.
  15. Ascalonian

    OR operator in tcsh

    That was exactly it... I didn't have a space after the [ and before the ]. Man. Thanks for the help!
  16. 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...
  17. Ascalonian

    Combine Effects

    Check out JQuery UI Transitions for what you want to do.
  18. Ascalonian

    Why doesn't focus() method work

    Can you provide all the code for us to review?
  19. Ascalonian

    Setting foreground color for HSSFCellStyle is always coming out black

    I got this to work. I had to set the foreground color to make the background color work (??). So I changed: cellStyle.setFillBackgroundColor(HSSFColor.GREY_25_PERCENT.index); to: cellStyle.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index); and it worked!
  20. Ascalonian

    Eclipse Java Project

    Make sure your classpaths are setup properly for that project

Part and Inventory Search

Back
Top