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 strongm 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: stemy
  • Order by date
  1. stemy

    HttpURLConnection timeout problem

    thanks idarke, I suppose your guess was close enough. I simply added an entry to my HOSTS file: 127.0.0.1 computername and it worked like a charm. Now that I think of it, I once told ZoneAlarm to lock my HOSTS file (as a defence against some viruses), and maybe that entry would've been added...
  2. stemy

    Converting String to Int

    By the way. if you do need int and not integer, you can just do: [code] Integer i = Integer.parseInt(%string_name); int a = i.intValue; [code]
  3. stemy

    HttpURLConnection timeout problem

    Hi I have a weird problem with HttpURLConnection. I'm running a servlet on a tomcat server. When I access it from a web browser through http://localhost:8080/servlername or http://computername:8080/servletname it works fine. the weird thing happens when I access it through an external client I...
  4. stemy

    download file with http

    upload.
  5. stemy

    download file with http

    I tried to look it up but I got nothing. what exactly should I put on the server? should it be a jsp file? a class file? what code should I run on the sever?
  6. stemy

    download file with http

    I appologize. I need to do both.
  7. stemy

    download file with http

    I need, from within an application that doesn't have to do with a browser, to specify a file and URL, and to upload that file. I whould also appriciate help with those binary files. thanks a lot.
  8. stemy

    download file with http

    plus, I can't seen to make it work with binary files.
  9. stemy

    download file with http

    thanx. but now, how do I upload a file ?
  10. stemy

    download file with http

    Hi I need to write a small client application in java that uses http in order to downlaod a file from the internet. I suppose I should use [code]URLConnection.getInputStream[code] and send that stream as a constructor parameter for another cusom input stream, only I don't know which one to use...
  11. stemy

    Changing Forms with a button

    [code] Private Sub Button1_Click(.....) Handles Button1.Click dim objForm2 as new Form2() objForm2.Show() End Sub [code] you can also use [code] objForm2.ShowDialog [code] if you want form2 to be displayed as a modal dialog window.
  12. stemy

    Strange BindingManagerBase problem

    Hi I have a problem with BindingManagerBase, and the strange thing is that it doesn't hapen all the time, so maybe someone knows what could trigger such a thing. I'm iterating through the items of a BindingManagerBase object and searching for a specific item [code] bmb.Position = 0 while...
  13. stemy

    write xml to a file

    Found It ! http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/xslt/2_write.html
  14. stemy

    write xml to a file

    hi I'm working with org.w3c.dom APIs to manipulate XML document. What's the easiest way to write the Document into an output stream (a file for instance) ? Thanx.
  15. stemy

    remote event handling

    I have a strange problem with remote event handling. I have a remote server class that has a public event, and a client that handles that event remotly, and everything worked fine so far. The problen is, I wanted to have different kinds of clients so I created a base client class, that did all...
  16. stemy

    implement register & notify with Remoting

    hi I'm trying to implement a register/notify machanism with remoting. I have a Remote object on a server (Registered and all that stuff), and I want clients to call its register method to register an event and get notifications whenever that event happens. I thought of declaring a public event...
  17. stemy

    ADO.NEt DataRow question

    thanx guys. been a great help !
  18. stemy

    ADO.NEt DataRow question

    Actually, I'm using GetChildRows. Here's some code: [code] Dim row as DataRow Dim rows() as DataRow ... ... rows = row.GetChildRows() [code] I want GetChildRows to also return rows that are marked deleted. The reason, is that I want to know if I need to update the child table in the datasource.
  19. stemy

    ADO.NEt DataRow question

    I tried using all the RowStateVersions but non of them showed me deleted rows :(
  20. stemy

    ADO.NEt DataRow question

    Hi I'm using the method DataRow.GetParentRows, and I noticed it does not return rows that are marked with DataRowState.Deleted. Is there a way to make it return them ? Is there maybe another method I could use ? Thanx

Part and Inventory Search

Back
Top