We just acquired three new build slaves for Hudson, which are running Windows XP x64. We're having issues deploying to these that we haven't seen before (we have two other XP32 machines already slaved).
When we first reboot the server, or just after restarting the Server service, the node's log on hudson shows the following (domain nam...
I'm writing a PHP process that will run on a Unix machine that will need to monitor a remote SMB server and detect new files that are being uploaded to that box via FTP. It's unlikely I'll be able to
It will need to detect:
New files being created
File upload completing
Files being deleted
If it was an NFS share, I'd try using FAM ...
If I were to create a Windows shared folder, put a database file in that folder to be shared among multiple users of our client app, is that an NFS or SMB shared folder?
...
Hello all,
I want my HTML page to link to a directory in a Samba share (protocol SMB/CIFS Windows share).
In my HREF I wrote file://server/Share2/folder3
Most browsers handle it fine (mount the share and open a file manager on folder3) except Internet Explorer 7 and Internet Explorer 8, which says Permission denied without even asking ...
I'm reading a file and I either read a row of data (1600 sequential reads of 17 bytes) or a column of data (1600 reads of 17 bytes separated by 1600*17=27,200 bytes). The file is either on a local drive or a remote drive. I do the reads 10 times so I expect in each case to read in 272,000 bytes of data.
On the local drive, I see what ...
Is there an ant task (similar to ftp or scp tasks) that would allow me to copy a set of files to a windows (smb) share?
Edit: I had to create a task using jcifs for this. If anyone needs it, here is the code.
Depends on jcifs and apache ioutils.
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import ...
I came across a small hack, which claims it enables smb:// on windows.
The complaint was that things like <a href="\\computername\path\file.ext">text</a> weren't working.
While true that you can use file:///// in your url's, the user wanted to use smb:// so that it's cross-platform.
The hack goes as follows:
1) Create this Reg file, sav...
I need a .NET library to synchronise files from a server to a client (one way).
Requirements:
Should be a .NET library
Needs to be deployed via ClickOnce (that is, no instalation, no COM etc.)
Needs to support HTTP and/or FTP and/or SMB
Open Source, Free or Commercial
...
Hello.
I'm looking for some stand alone library to access SMB/CIFS shares.
I am not looking for mounting the shares, just browsing and accessing the files for reading.
Preferable something with a simple simple API similar to regular POSIX operations of opendir, scandir, read and etc.
Thanks in advance!
...
When we command "net use" on command prompt, the result has four columns.
Status Local Remote Network
OK Z: \\10.x.x.x\Public Microsoft Windows Network
X: \\10.y.y.y\Public My Network Redirector
The Microsoft Windows Network(SMB)'s Status has OK value, but we don't. It's just empty.
...
I have a similar question like the one asked here but I need it to work on OSX.
http://stackoverflow.com/questions/2625877/copy-files-to-nework-path-or-drive-using-python
So i want to save a file on a SMB network share. Can this be done?
Thanks!
...
I have an application that reads from a very large binary file. It never has to read the whole file, only small parts of it, which are spreaded accross the file. For example, in VB6 code:
ReDim Data(26) as Integer
Get #1, 2536, Data
ReDim Data(79) as Integer
Get #1, 13504, Data
ReDim Data(51) as Integer
Get #1, 39827, Data
Etc..
Fo...
Hello, I am having trouble getting apache to serve a file through the XSendFile when it is in a directory mounted with samba.
To give a little background: I have a Ruby on Rails app that is slowly replacing an ASP.NET application, and I have it running on a linux server running apache2 and passenger. The Windows machine that is running...
Does iOS (or iPhone OS) support file operations via SMB network shares?
If so, are there any documents about how to do this?
...
There was a smbmrx sample code using RDBSS in WDK Vista.
But since WDK 7600 has been released, the sample was removed. -Do you know why?
I'm finding a nice sample code to learn RDBSS.
Is there a good open source better than smbmrx sample?
...
I'm developing a network-redirector like SMB.
I want to test various file I/O to compare NTFS or SMB implementation.
What I want to test are,
CreateFile
Read, WriteFile
DeleteFile
RenameFile
Set, GetFileInformationByHandle
etc.
And it' would be better if it can measure each I/Os duration.
Is there a program I can use?
...
have to access some media files from Network storage to be accessible through SMB and Common Internet File System. PHP website is required to do file manipulation operations on remote storage block. You may suggest some alternate method or if you have any idea or may help on:
configuring SAMBA/SMB/CIFS
SMB/SAMBA/CIFS client configura...
Hi,
I am trying to do an equivalent to this:
smbmount //srv_files/f$/ /mnt/srv_files -o username=user,password=pass,rw
I am getting permission denied though, but if I do:
smbmount //srv_files/active/ /mnt/srv_files -o username=user,password=pass,rw
then it works just fine, just wondering if this type of mounting with smbmount is eve...
I want to set the volume name of my network redirector.
On 32bit Windows, it's okay. I made it.
But on 64bit Windows7, a process which runs as WOW64(eg, EXCEL.EXE) finds following registry path to represent the volume name when we open a file dialog. -I checked it by Process Monitor.
HKCU\Software\Microsoft\Windows\CurrentVersion\Ex...
Is there an open implementation of a SMB/CIFS server in Java? The only implementation I can find at all is Alfresco's but it isn't open source.
A related question: assuming there is no such implementation, I'm surprised there isn't a library providing even a subset of SMB e.g. for simple file transfer. My intuition is that it wouldn't b...