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

  1. FOR111

    Sending User Info From Application to Business Logic

    I was thinking about DTO, and as you said they are strongly typed therefore no concern from that part. The thing that kept me back was that i would need a good number of DTOs for the application. but i guess that is the standard. Thanks once again for your insight.. Regards Nick
  2. 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...
  3. 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...
  4. 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...
  5. FOR111

    Create Exe and appropriate folders!?

    Hi gplusplus..thanks for the advice...much appreciated! That should work great for the deployment part..i was mainly concerned on the debugging part..when i hit F5 .. i would like that my external files are copied to the DEBUG folder too! Thanks Nick
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. FOR111

    Relative path not working in tomcat

    That's what i did...and still it doesn't read from there! my deployment is something like: WAS > WEB-INF > classes > resources > com !! Strange.. Thanks anyways nick
  11. 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...
  12. FOR111

    Servlet to handle XML Requests and Responses!

    Thanks sedj...thats already a big start thanks! What i was after was how i could test, and parse the xml then the equivelent xml will do a certain function for itself! Thanks again Nick
  13. 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...
  14. FOR111

    Closing Browser from Applet!

    Hi sedj you're quite right about manipulating browsers but hey requirements are requirements and one has to abide by them. It wasn't my design..i'm just a middle man developer trying to fix this application. Well i thank you for your thoughts Nick
  15. 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...
  16. FOR111

    Get Iframe's HTML?!

    hi tsuji... .src will give me only the url link...i need the actual html code!? Thanks for your reply Nick
  17. 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
  18. FOR111

    Applet to read iframe content! pls help!

    HI Dian thanks .. but i don;t think that javascript is the way you...though i would leave it as a last resort just in case i won;t find any other solution (which most probably i won;t :> ) Thanks again Nick
  19. 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...
  20. FOR111

    Java Applet Hangs momentarily!

    hmm.. i had to play around abit to get "rid" of that activex ... but then i tested it without that and it still freaks out! any other hinch would be appreciated! Thnaks Nick

Part and Inventory Search

Back
Top