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

    Sending User Info From Application to Business Logic

    Hi All, As most developers do i want to seperate the Application design / Presentation from the business logic. I have an application which i'm starting from scratch and i would like some advice... I have 3 different projects, the EXE where its most forms , and 2 dlls, one takes care of the...
  2. FOR111

    Cursor Retrieving only 1 Row of data

    Hi Guys, I'm writing a simple stored procedure, having a cursor within. I have this problem..it seems that the cursor is only retrieving 1 row (the first one ) and keeps on using it for the rest of the process! is there any reason. below find the process in a nutshell...cheers CREATE...
  3. FOR111

    Creating Enums with multiple params!?

    Hi All, I don;t know if this is possible; but i would like to ask if the following Enumeration is possible using c#; public class enum MyEnum { SUCCESSFUL_REQUEST((short) 000, "Successful request"); } or something similar where SUCCESSFUL_REQUEST is the text with which one can view the...
  4. FOR111

    Create Exe and appropriate folders!?

    Hi All, This may sound as a silly question..but it seems i can;t figure out the appropriate way of doing it. So i have built a small system..and it needs a particular folder with its contents to work. How can i, whilst debugging or creating a release, copy these folders together with the...
  5. FOR111

    Content Length / Type of Posted form

    Hi All, I need some insight on this... Is it possible to know the content length and type of a submitted post form. Meaning that if a.php has a form..submits and b.php is put into action..can i, from b.php, read the content length of the submitted post form in a.php? If so how is it best done...
  6. FOR111

    HTTP Post Request! How

    Hi All, I'm trying to find a solution to this problem. Mainly i need to send an httprequest whilst running a php script and receive a response so i can parse it and work with that! The data sent has to be in POST format. I cannot use any third party solution since, everything has to be created...
  7. FOR111

    SSLHandshake Error!

    Hi All, I'm trying to connect to a webservice and using a post command retrieving a string with the results. This worked fine until the WebService was changed to a HTTPS. then i started having problems when connection was being achieved and giving me a SSLHandShake error: My current code...
  8. FOR111

    Relative path not working in tomcat

    Hi All, I have a servlet application,part of which calls a file from my resources folder through a relative path; ie: resources/myfile.txt . When i compile and test it through junit all works well. The problem arises when i deploy in tomcat. The path it tries to read is...
  9. FOR111

    Servlet to handle XML Requests and Responses!

    HI All, I have a problem...i have to design a servlet which handles xml requests and responses. The requests are received via http, they are parsed and a function should handle the request (ie Add User etc) then a response should be created (xml) and sent via the same http request. Is there...
  10. FOR111

    Closing Browser from Applet!

    Hi all, I need some help with this issue i have been having for quite a while. I have an application running as an applet and run on a browser. The applet has a button which is an Exit button. This button should close the applet and consequently close the browser it is running it. The browser...
  11. FOR111

    Get Iframe's HTML?!

    Hi all, I need some help if you don;t mind..i'm trying to retrieve the Iframe's HTML? how can i do that? I started off using the following but got blocked thereafter: var myHTML = document.getElementById('myIframe').document; thanks Nick
  12. FOR111

    Applet to read iframe content! pls help!

    Hi All, I have an applet loaded within an html page, and within this page i have several (x5) iframes which the applet sends urls for them to load. Now when the iframe loads it can give a success or an error message..this i have to know the result by reading the html! Can anyone give an...
  13. FOR111

    Java Applet Hangs momentarily!

    Hi All, I'm in this very awkward situation...I'm loading my applet on IE 6 ... and once it is loaded and i click on the applet the Browser hangs for about ...30sec min .. but the background process still continue to work! Mozilla Firefox works great..so i was assuming that IE had some sort of...
  14. FOR111

    Applet exit() closes the parent window too!

    Hi All, I need to figure out how i can close one window containing the applet. This is becuase if i have a window which opens a seperate pop-up window containing the applet and from the applet i click exit..the pop-up closes and so does the parent window! Unfortunelty this also happens in...
  15. FOR111

    Changing JFileChooser Motif

    Hi All, I have a JFileChooser and would like to change the motif to Windows like! is this possible or? if so any help would be much appreciated! Regards Nick
  16. FOR111

    Url Encoding error!

    Hi, I'm trying to send a request via http having one of the parameters encoded using URLEncoder with characterset UTF-8. The encoding works and when i see the system output on the java console the string is encoded! The funny thing is that on one pc it works as it should and on the other the...
  17. FOR111

    Wrapping xml node in another node!

    Hi All, I have an xml document received from a webservice as a string. I then have a method which makes string to an xml dom document. The structure is as follows: <?xml version="1.0" encoding="utf-8" ?> <Download ...> <element1>XXX</element1> <element2>YYY</element2> </Download>...
  18. FOR111

    Retreiving Form (POST) Values!

    Hi All, I have a page which submits data through a form using the method 'post', once the user submits it redirects to another page. The new page should read the data (from the form tag) and display the information. The latter function seems abit daunting..can anyone give me a helping hand on...
  19. FOR111

    Jar File library not finding path!

    Hi All, I have an applet project in Eclipse which uses several libraries (both as Jar, which i just got to know that this shouldn't happen, and packages). The applet works great until recently i wanted to add another Jar library (org.jdesktop.jdic.browser.WebBrowser). This i added to the build...
  20. FOR111

    Fixing a browser issue!

    Hi All I have a small issue which u might help me solve. I've built an applet which requests files from a file server. Upon download a request for a file certificate is done (per file download!)..this is done by opening up a new window and set the url for the certificate...once this is...

Part and Inventory Search

Back
Top