Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
In our company we manually upload code on a server to make it live after testing code on a local server.
So, almost all the developers has a rights for inserting new code and updating existing code and any developer can delete/remove page or code from live.
So, I just want to keep track that which developer has inserted/updated/deleted or access the page on part of a code that is on server.
Is there any software available for uploading code on server ? Which keeps tracks of the user who has last access the page that is on server.
I want such a tool so that i can get notification that who has altered or edit code or page.
I'm not aware of anything that will watch for changes to files and record which user the process that made the change was running as.
This problem is usually solved by having (at the very least) a VCS (git, svn, mercurial, cvs, etc). This records who made what changes to the code.
It is common to run automatic builds on an continuous integration server (e.g. Jenkins CI).
Ideally those builds would generate an installable package (e.g. deb, rpm) that gets installed on the servers rather then code being copied up manually.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am designing a .NET desktop app for a small clinical lab. They do stuff like blood tests etc...
When they perform a test they need to print a report. Users should be able to define new types of tests in the system and design the report (that is given to the patient) for that test.
So I need a reporting designer with the following capabilities.
can be integrated in to a desktop app
can be used by non technical users to create reports
Take a business object as the data source
Report can be saved in a central location so all the users can access it
Once the report is created and saved, the system should be able to populate it with the necessary data (a report of a patient).
Should be able to define new reports based on a template - as the report header is same for all types of reports (It has patient data etc...).
Can you point me to a component that supports all of the above requirements ?
Thanks in advance.
I was for some years in a company that developed a custom Report Designer, and we used components from DevExpress.
https://www.devexpress.com/Products/NET/Controls/WinForms/Snap/
The requirements you presented, I belive you can do with the DevExpress component, but it will take some work, and the features aren't available out-of-the-box.
There are others components but I don't know them in detail, but you can check them
http://www.componentone.com/SuperProducts/ActiveReports/
and
http://www.telerik.com/products/reporting/creating-reports.aspx
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a standalone json-rpc server library for c#. I do already know ones that work with ASP.NET but couldn't find one that can be used as standalone.
The closes i could find was http://jsonrpc2.codeplex.com/ which is not actually standalone but works with ASP.Net.
Note: The project we are working on is standalone and we are also targeting mono framework which is the reason we are looking for a stand-alone json-rpc server.
Actually, https://github.com/Astn/JSON-RPC.NET
is a stand alone json rpc server. It just happens to have a plugin for ASP.net.
There is no dependency in ASP.net or IIS.
Check out the documentation on running a console server at that link you posted.
There is also a discussion there about hosting that server over raw sockets.
-- Edited url to github instead of codeplex --
SignalR matches those requirements:
http://signalr.net
Although its primary usage is for web, it is not required to run a web server: it can be run in a windows service or a standalone application.
Have you looked at PokeIn? It may suit your needs depending on your requirements.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
I am a newbie to IT Field.
I have just finished a small web application using mvc in C#.net (Visual Studio 2012)
And I have used SQL Server Management studio 2008 to create database.
Now I want my site to be hosted on Server.
So, my questions are :
1) Should I copy my database(.mdf and .ldf) files to App_Data? If yes then how?
2) After the database issue is cleared how to deploy the web application and
put it on the server?
Can anyone suggest me a simple nice tutorial? Or can you give me just basic understanding?
One way of doing it is
Create a database in somee.com and deploy your database over there. You can access your database in somee.com from management studio
Get your ftp access from somee.com and publish your project over there from visual studio.
thats it..
Consider this thread http://forums.asp.net/t/1903127.aspx
there are lots of article written on how to accomplish this on codeproject
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there any open source .NET-based (no Win32 native, ActiveX, COM+ etc) library so I will can easily set up a ftp server? It is going to be a ftp server that will update a SQL Server database, and not regular files.
Thank you.
I think it is worth mentioning the Lumisoft.NET library which contains an FTP server component. I haven't used it myself but it appears to meet your requirements (100% managed FTP server library). As a bonus it is free for private and commercial use (similar to LGPL).
I am attempting to do a similar thing (FTP server getting files and folder structure from SQL database). I've been using darwen's FTP server on Code Guru.
It does have some problems, notably cross threading issues, but with a little work these can be fixed. Also of note is to check that it uses the correct format for the IP addresses.
I have found this works for connections from FileZilla, but as yet I haven't been able to connect to it directly from windows explorer. I have been unable to find anything better for free.
http://www.codeproject.com/KB/IP/AdvancedFTPServer.aspx is very good
http://sourceforge.net/projects/xfftp/
For my FTP needs I use edtFTP.
Also, something you might want to look at is FTPLib.
Both are free and .NET
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Improve this question
We have a deployment system at my office where we can automatically deploy a given build of our code to a specified dev environment (dev01, dev02, etc.).
These dev environments are generalized virtual machines, so our system has to configure them automatically. We have a new system requirement with our next version; we need to give certain user accounts read/write access to certain folders (specifically, giving the ASPNET user read/write to a logging folder).
I'm pretty sure we could do this with WMI or scripts (we use Sysinternals PSTools in a few places for deployment), but I'm not sure what is the best way to do it. The deployment system is written in C# 2.0, the dev environment is a VM with Windows XP. The VM is on the same domain as the deployment system and I have administrator access.
Edit: There's not really a right answer for this, so I'm hesitant to mark an answer as accepted.
Another option would be to investigate using a Powershell script There are a lot powershell community snap ins to support VMs and active directory.
Active Directory Script Rescources
Powershell Script Library
Microsoft Script Resources
VMWARE VI Toolkit (for Windows)
If you can run scripts, it might be as simple as runing the CACLS command on the VM. Perhaps just have your deployment script read in a config and run the appropriate CACLs commands.