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 TouchToneTommy 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: RogerFGay
  • Content: Threads
  • Order by date
  1. RogerFGay

    SOAPMessage through ObjectInputStream

    Anybody know what the problem is with SOAPMessage? I can pass Document, String, and custom objects with out.writeObject(), in.readObject, just fine. If a SOAPMessage is an XML document, it seems like it should be just as successful as a Document. But I get serialization and eof errors when...
  2. RogerFGay

    dynamic casting

    It seems so obvious. I send various types of objects through an object stream. When they get to the other side, they are read as Object obj = in.readObject() : type Object. I can easily get the name of the original class type via obj.getClass().getName() Now what I want is a very simple way of...
  3. RogerFGay

    Need help to uninstall SQL Server

    I added SQL Server (Express Edition) as an option to some other things that I really needed. Somehow, MS automatic updates got stuck trying to update it; and I got stuck with constant harassment about performing the update ... as well as problems shutting my computer down. Since I'm not really...
  4. RogerFGay

    Image Event Handler on Prototype

    I want to use the same (onload) event handler for all images in a page. I've been adding the event handler to every image object that I create. loop: ... aImgObj[i].onload = myEventHandler; It seems like I should be able to add it to the image object prototype instead. But I haven't figured...
  5. RogerFGay

    Robust Image Preloads - on the fly

    OK, so I know the basic way to preload images: images[i] = new Image(); images[i].src = "image_file_name"; But I'm trying to automate use of images by constructing a table with images on the fly; then dumping that into a div. No problem with the dhtml (javascript) constructing tables with...
  6. RogerFGay

    SQL Server Automatic Update

    I've installed SQL Server Express Edition on my machine and Microsoft has been trying to update with: Microsoft SQL Server 2005 Express Edition Service Pack 2 (KB 921896) Their auto-update system is constantly harassing me. It's a critical update it says. Then the update fails. Anybody seen...
  7. RogerFGay

    Why Post PostScript?

    I just want to clear up what has been a mystery to me for quite some time. I've found a lot of reports, especially academic / technical reports, posted to the WWW in PostScript. I finally downloaded Ghostscript to see if I could view them. Can anyone make a good guess as to why people would...

Part and Inventory Search

Back
Top