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. sapatos

    Web services jboss 4.2.2/eclipse/JaxWS

    Currently I'm more looking for a good tutorial on how to create webservices and their clients using jax-ws on jboss 4.2.2 in eclipse rather than looking for answers on errors I'm finding. If there are no good online tutorials out there then I'll probably come back with more specific questions...
  2. sapatos

    Web services jboss 4.2.2/eclipse/JaxWS

    What I'm looking for is a tutorial that shows how to create a webservice (i've found a few) but also how then to create the webservice client (of which I've found some). I've been unable to get them working together however. I'm using eclipse IDE, jboss 4.2.2 and jax-ws.
  3. sapatos

    Web services jboss 4.2.2/eclipse/JaxWS

    Hi, I have to migrate my data layer from eclipse-link to a webservice running on jBoss 4.2.2 using jax-ws. I'm using eclipse 3.4.1. I've come across a number of tutorials none of which I've been able to get working. Anyone know of anything good out there?
  4. sapatos

    solaris "stty: : Inappropriate ioctl for device" when reading file

    nope that script just identifies what environment its being called in and generates a config file name. no tty there
  5. sapatos

    solaris "stty: : Inappropriate ioctl for device" when reading file

    Thanks folks, worked a treat. unfortunately I don't have access to change the oracle setup files.
  6. sapatos

    solaris "stty: : Inappropriate ioctl for device" when reading file

    good point. I've just tried it again with a test file that merely write "hi" to test.out. I get the same error: stty: : Inappropriate ioctl for device stty: : Inappropriate ioctl for device stty: : Inappropriate ioctl for device but *3. the format of the file its reading is: JOB_CONTROL_ID...
  7. sapatos

    solaris "stty: : Inappropriate ioctl for device" when reading file

    I've seen this error before and have found a number of threads discussing it however I've not seen anything similar with a solution to my issue, not sure if anyone can help. I've a script that reads commands from a file. This is done in a while loop. Depending on certain fields read from the...
  8. sapatos

    Jpa select query does not pick up changes in table

    Hi, I've a standalone RCP application which provides some basic CRUD facility. One of these is where I have a parent object which is assigned a new child. When I run the app and do this I can see the underlying table being updated correctly. The app then refreshes the parent with the current...
  9. sapatos

    Referencing jsf list properties from backing beans

    Hi, I've bound a list to a database table. I have a jsf table bound to the same table and want to update the display of the data in the table depending on the option chosen in the list. I've found a cracking tutorial to help with this but in the session bean I've tried the following code...
  10. sapatos

    Swing Filechooser: inconsistent column ordering

    err thanks
  11. sapatos

    Swing Filechooser: inconsistent column ordering

    hi, I've a little swing app and part of this uses a basic filechooser. However I've noticed that when you try to order the files by size/name/modified date etc sometimes it works and sometimes not. Is this a common issue as I've started noticing it in other applications such as SqlDeveloper...
  12. sapatos

    Can't get variable regex to match??? This should be easy

    hi steve, thanks for that. I actually spotted that just after i hit send in the forum. typical ;(
  13. sapatos

    Can't get variable regex to match??? This should be easy

    Hi, I've got a loop that is searching an array for a match. When I hardcode the search pattern it works great but when I pass the search pattern in as a variable it doesn't find anything. Can someone advise? Code is: foreach my $search (@searchStrings) { print "string: $search\n"...
  14. sapatos

    Unable to copy List<gnrc> to another List<gnrc>???

    My apologies that was only pseudocode: private static final List<SpreadSheetRecord> DELTA = new ArrayList<SpreadSheetRecord>(); Its a List = ArrayList<> as above. Without loading the DELTA List with empty objects as in below: for (int i = 0; i < 2000; i++) {...
  15. sapatos

    Unable to copy List&lt;gnrc&gt; to another List&lt;gnrc&gt;???

    That was the first thing I tried, however the dest collection has to be at least as big as the source for it to work. I.e Collections.copy(Collection a{15 elements}, Collection b{14}); won't work as b doesn't have the capacity to hold a. I found the solution somewhere on the web which was to...
  16. sapatos

    Unable to copy List&lt;gnrc&gt; to another List&lt;gnrc&gt;???

    I have a utility class "Utility" that contains two lists: private static final List<SpreadSheetRecord> DISPLAY = new ArrayList<SpreadSheetRecord>(); private static final List<SpreadSheetRecord> PREVLIST = new ArrayList<SpreadSheetRecord>(); These have getter methods: public static...
  17. sapatos

    Redisplay Jtable data vie fireTableDataChanged()???

    Hi, I have a class BeanTableModel that provides a List of beans with fields for display in a jTable. I've gotten the initial list to display via netbeans using bind->elements and choosing the relevant list. However following completion of some processing I need to be able to choose to display...
  18. sapatos

    converting milliseconds back to time

    thanks franco, thats definitely one for the toolbox ;)
  19. sapatos

    converting milliseconds back to time

    My programme scans a series of files which contain the following time data: hr:mi:ss:milsec line 1=00:14:42:321 line 2=00:00:08:313 line 3=00:00:33:766 I have broken this down to milliseconds in order to calculate various avg/mode/std deviation etc. line 1=882321 line 2=8313 line...
  20. sapatos

    Read &amp;&amp; Modify a excel cell value in HSSF

    I read a comparison review of apache POI and this one and POI came out on top which was why I went for that option. How have you found this api? Any issues at all? Sapatos

Part and Inventory Search

Back
Top