dfs

How to replicate wwwroot over multiple IIS web servers with NLB without NAS?

We're adding a second server with Windows NLB for a bit of redundancy (ie the power goes on one of the servers - I know its not the best solution). How can we keep the data identical between the servers? Dont want to use a SAN or NAS as thats just something else to go wrong. Customers can upload images with the web app so changes could ...

Set DFS Link Permission with C#

Hi I have to set permissions on a DFS Link with C#. (For adding a DFS Link I used the method NetDfsAdd from the NetApi32.dll. ) After a while searching I found the MSDN Article[0] about NetDfsSetInfo and it describes that I can use this function to set the permissions. But I am a bit confused about DFS_INFO_107 Structure[1] and SECURIT...

Difference between Breadth First Search, and Iterative deepening

I understand BFS, and DFS, but for the life of me cannot figure out the difference between iterative deepening and BFS. Apparently Iterative deepening has the same memory usage as DFS, but I am unable to see how this is possible, as it just keeps expanding like BFS. If anyone can clarify that would be awesome. tree to work on if require...

DFS in Perl (or Java or C++ ...)

I have done some in 3D computer graphics but am somewhat new to graph theory. In particular I have been looking at and trying to solve my problem using a depth first search (DFS) as described in Mastering Algors w/ Perl (Jarkko Hietaniemi). So far I have not been able to get it :-( but I am pretty-sure a DFS is what I want. It does not...

Is there any distributed file system which runs on Windows except Hadoop?

I'm desperate to find any DFS which supports Windows. The only such DFS is Hadoop HDFS but it's very hard to deploy it other big number of Windows machines because it requires Cygwin + SSH. Almost all DFS systems work only on Linux and only one (HDFS) runs on Windows. I would be very grateful if somebody will be able to point me to oth...

C++ pass by reference

I've recently (4 days) started to learn C++ coming from C / Java background. In order to learn a new language I ussualy start by re-implementing different classical algorithms, as language specific as I can. I've come to this code, its a DFS - Depth First Search in an unoriented graph. Still from what I read it's best to pass parameters...

Is Cassandra suitable enough for storing logs in term of disk space usage?

I've a problem storing 50Gb of logs each day in a distributed environment. I looked at Hadoop HDFS but because it has problems running on Windows infrastructure, lack of multi language filesystem API it doesn't suit me very well. Cassandra on the other hand is very easy to deploy on any platform. The only big problem I'm facing is a disk...

Please introduce some distributed file system under windows server 2003

I am doing load balancing under (windows 2003+tomcat 6), and it requires a shared folder which is exposed to each of the tomcat web application instances that may run on different host OSes. THere may be intensive I/O operations on the shared folder. So DFS, OpenAFS.....,any clue? ...

Is Appfabric w/o SQLServer as configuration repository a bad idea?

I am very interested in the replacment ASP.NET Session Manager portion of Appfabric, and somewhat interested in the distributed cache manager. We don't have a need for its hosting features. While we do have a clustered SQLServer inhouse, adding that as a dependency for our aspnet/oracle application probably would not be well received. ...

Does Microsoft Support Multiple DFS Targets on the Same Machine

I'm experiencing issues deploying new code to my IIS wwwroot while the servers are active. The present configuration uses DFS to keep multiple servers in sync. Our current migration approach is: 3 web server wwwroots are shared across DFS so they remain in sync When migrating new code we keep IIS active and push it to web1 which is e...

When is it it practical to use DFS vs BFS?

Hi, I understand the differences between DFS and BFS, but I'm interested to know when it's more practical to use one over the other? Could anyone give any examples of how DFS would trump BFS and vice versa? Thanks! ...

Log out of Documentum Server

Iam a beginner in using DFC . I have an windows application that uses Documentum APIs to checkin Checkout documents into Documentum Content Server 6.5.1 .I use DFS 6.5.1 to interact with the server. Now I need to log out of the session. How is that possible.If i need to fire a DQl, what is that ? ...

graph theory dfs search

I need help to solve the following question: Write a simple algorithm which gets a simple Connectivity undirected graph to find the order of deletion on top, so that at no stage the Connectivity of the graph is not dropped. Formally: given graph G = (V, E) and a group of vertices, V*, the graph obtained from deleting V* from G is V*= (V-...

dfs search question

Possible Duplicate: graph theory dfs search I need help solving this question: Write an algorithm that given a simple directed graph G = (V, E) generates and returns the component graph (gscc graph) of G in linear time. ...

Active directories having problem

We are on a domain and we have an active directory implementation on our network. Now, we have expanded our network and added a back up domain controller on the network. Now, all the machines and user profiles are actually fetching their data from a DFS share instead of Domain controller itself. So we had to change all the configurati...

How do I setup WebDeploy on Windows 2003 / IIS6?

Webdeploy is an alternative to WebDav, FTP, and FrontPage extensions. It also acts as an alternative to DFS for replicating websites. I found instructions for configuring Windows 2008, but I'm unclear how to set up 2003 especially when multiple sites / IP Addresses are present. ...

How do I get a token needed for DFS Kerberos authentication?

I'm trying to write a client for consuming DFS (Documentum Foundation Services) and trying to use kerberos for single sign-on. In both Java and C# sample code (productivity layer) that comes with the documentation, the line that gets the Kerberos binary token is given as byte[] ticket = ... I'm not sure how to actually get the bi...

Python optimization with dfs/bfs searches

Can you see any immediately changes I can do to increase speed and optimization in the script below? We are suppose to write a script which implements dfs/bfs searches to find "ratatosk". Input is which function to use (dfs or bfs), number of nodes in the tree, root node, which node "ratatosk" is in and the rest of the node numbers. ...

General DFS on River Crossers

I'm trying to write a DFS to solve multiple river crossing problems (Fox Goat Cabbage, Jealous Husbands, Mercenaries and Cannibals, etc.). I've written the puzzle classes, but I'm having trouble structuring my solver. I understand how DFS works, but I can't figure out where to start to adapt it to this design. Each puzzle has a move() m...

DFS Locking ASP.Net DLL's through FTP

Hi everyone, I am having an ongoing situation where when I try to upload files via FTP that I get an error that the DLL is locked and currently cannot be overwritten. This is only DLLs that this is happeneing to and normal files (aspx, ascx, css etc) can be overwritten fine. Our Setup We have 2 webservers that are kept in sync via DFS w...