On Fri, 31 Dec 2004 11:11:15 +0100, Pavel Ševcík wrote: ... In the mean time I downloaded JRE and tried to change your code. I found out, that you used deprecated function String decodeStr = URLDecoder.decode(str) ; which have to be used in following way: String decodeStr = URLDecoder.decode(str,kodovani) ; where String kodovani = "UTF-8"; This solves problems with non-US ASCII characters. *********************** Regarding the network mappings (S:\ etc), this is little trick: we have all data stored on one PC. On this PC we have directory C:\DATA and subdirectories C:\DATA\DATA S & C:\DATA\DATA X. As you wrote GDS will not scan network drives. BUT if you use on this "DATA PC" following Windows commands: subst s: "C:\Data\Data S" subst x: "C:\Data\Data X" ... you will obtain local non network disks S: & X: which GDS will scan. Next step is to share these directories through the LAN and map it on all computers as network drives S: & X:. In GDS preferences I switched off scanning on all drives except those S: & X: The result is, that when I received remote result from GDS through your proxy, the links are correct and functional. The only problem is, how to open them. Therefore I again changed your code, especially the function "sendResource", which now don't send resource but HTML page with direct link to file. Feature is, that you open file directly on "server" and all possible changes are stored in it! Now I am playing with ActiveX to determine Word, Excel and PowerPoint documents. It is opening them in appropriate application, not in IE or another browser. *********************** Regarding the problem with opening files: this note was mentioned before I tested your PROXY. It happens to me, when I was running GDS through NAT not your PROXY. Your proxy is working correctly in this way! It is great peace of code, thanks for it! I learned a lot on it. I am not sure, if you will be interested into my changes, but for your review I am sending my code to you. Have a great & successful new year 2005 ! Pavel, Czech Republic, Europe Remark: In code I am sending you is also changed procedure Flush, which change output of GDS. But here I found unresolved problem with HTML page encoding and our character-set Windows-1250. Take it only as a TIP. It is remarked out from the functional source code. May be it could be an option in future PROXY version.