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

    Class cast exception

    Hi I have two Java Projects ProjectA, ProjectB ProjectA has a refrence to ProjectB and can call the Java classes from ProjectB. Now , I hava created in A, a Dupplicate of a Java class which exists in B and try to Cast the originally Object(exist in B) as follow but I get a class cast...
  2. Jefhandle

    Code to delete file on Windows and Unix safely

    Hi I have a JAVA SE Code which delete a file on the file system under windows. I need to get the path and file name separately. Therefore do something like this and I get them: String path = C:\\a\\b\\file.xml String newPath= path.substring(lastIndexOf("\\")); String...
  3. Jefhandle

    ho to retrive value from this xml message

    Hi, In a client code I become a soap message from a server. There are Informations which should be retrieved like ID, IsTemplate, description etc. Here is a sample of the soap body message: <SOAP-ENV:Body> ............... <ts:response>...
  4. Jefhandle

    parsing this soap message

    Hi, In a client code I become a soap message from a server. There are Informations which should be retrieved like ID, IsTemplate, description etc. Is there a way to do that in Java and not work with string Tokenizer etc? Here is a sample of the soap body message: <SOAP-ENV:Body>...
  5. Jefhandle

    how to create a web application with visual studio

    Hi, how can i create a web application with visual studio 2005 professional? In the standard edition i created it with file--> new project--> asp.net web application but in vs studio professional i have not this option?? thanks
  6. Jefhandle

    access from .net to the lotus notes

    Hello i'm going to access from a csharp file a lotus notes data base (a nsf file) and read the documents there. Is there a way in .NET to access a lotus notes data bases? thanks
  7. Jefhandle

    sniff one PC from another in wlan

    Hi, i have connect two pcs , A and B to my wlan network. How could I sniff the conection of my second pc B from the from the first pc A?What do I need ? thanks
  8. Jefhandle

    how to activate nat loopback in PIX 501

    I can access the web server, ftp server a.s.o from WAN but not from the LAN and i think this is because of not loopback. is there a way to activate nat loopback in cisco PIX 501 to access web servers in owe LAN? Regards
  9. Jefhandle

    Can not access web server via PIX 501

    Hello I configured my router to access a web server from outside: global (outside) 1 interface nat (inside) 1 0.0.0.0 0.0.0.0 0 0 access-list inbound permit icmp any any access-list inbound permit tcp any any eq www access-group inbound in interface outside static (inside,outside) tcp interface...
  10. Jefhandle

    Portforwarding with cisco PIX 501

    Portforwarding with cisco PIX 501 Hello I am newbe and try to configure my router to access a web server from internet. I reset the PIX 501 router to the factory default configuration and used this command (from http://www.linuxhomenetworking.com/cisco-hn/dsl-pix.htm ) to make the www service...
  11. Jefhandle

    pc cant ping remote host, cisco router does it

    Hello, i have a cisco PIX 501 router. I alllow ICMP from inside to outside and from outside to inside. Nevetheless i can not ping from my pc to any remote host! for example ping www.google.com supply no answer! C:\XMS>ping www.google.com Ping www.l.google.com [72.14.221.99] with 32 Bytes...
  12. Jefhandle

    router lets only access www.google.com

    Hi I use a DSL Modem for the connection to the internet and ihave noproblem . When I now connect the Modem to a cisco ipx router I cann only access to the www.google.com!!!!!!!!!!!! I cant access any internet sites else!!!! I will be appreciated for your help
  13. Jefhandle

    create image from byte

    I read an image in an array, imgAray[]. Now I will instead to make an image object from a file (System.Drawing.Image.FromFile(Filename) ) make it from this array. Something like : System.Drawing.Image.From???(imgArray) I see the image object has a Method: System.Drawing.Image.FromStream If this...
  14. Jefhandle

    how call another asp file

    I have this button in my defualt.aspx <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/App_Themes/img/xsx.gif" /> I will after clicking the Button call another asp file which show a picture. How should i do it ? Thanks
  15. Jefhandle

    call java methods

    i have a java class myclass.java which has two methods, getNmae and setName.I will use this class in a c sharp project.How could i call this methods from my csharp classes? thanks
  16. Jefhandle

    how define demension dynamically

    I have on a Default.aspx this tag: ................... <img src=MyAspx style="height:250px" /> Now i will to make the height of the image dynamically: <img src= MyAspx style=myParameter /> PS:myParameter is a Parameter, which i retrieve it from database 1-How do this?Where should be...
  17. Jefhandle

    How define demension of picture dynamically

    I have on a Default.aspx this tag: ................... <img src="myImage.jpg" style="height:250px" /> ....................... Now i will to make the height of the image dynamically: <img src="myImage.jpg" style=myParameter /> PS:myParameter is a Parameter, which i retrieve it from database 1-How...
  18. Jefhandle

    how to write an image in a htnl table

    I have an image, which i write it to client with Response.BinaryWrtie(img). I will to display the image in a html table or some other server controll(Grid, .....). 1-How could i do it? Thanks
  19. Jefhandle

    response binary data

    I send after submit on the html button a request to a servlet: <form method="post" action="http://xyx.com/servlet/MyServlet?myArray" > the serlcet MyServlet should send back to client an array which has byte type(is a byte array: myArray[2048]). How should the response be look like to get...
  20. Jefhandle

    select before saving

    Hello, I read a binary file from the server and save it directly on my hard disk. Now I would like to have the possibility before to save it, to select: “save “ or “cancel “ (e.g. opening the save dialog windows) how could i do it ?? thanks

Part and Inventory Search

Back
Top