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.
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
Where is the C# Google API documentation?
Where are the sample codes?
These are obsolete.
https://developers.google.com/gdata/client-cs
https://code.google.com/p/google-api-dotnet-client/source/browse/?repo=samples#hg/Calendar.VB.ConsoleApp
The web full of unanswered similar questions.
OK...
I'll start with saying that the GData library is old and my recommendation is to work with Google APIs library for .NET. this library is currently maintained and we just release a new version of it two weeks ago. More details are available here:
The code of the core library (which is open source) is available in our repository - https://code.google.com/p/google-api-dotnet-client/source/browse/.
All the samples are available in https://code.google.com/p/google-api-dotnet-client/source/browse/?repo=samples
Our developer guide pages contains a lot for information about how to use OAuth2, Media upload and Media Download, etc. BUT we don't have a full documentation of the API available online. I just opened a new issue in our issue tracker - https://code.google.com/p/google-api-dotnet-client/issues/detail?id=410. Feel free to add more content to it.
All the Google.Apis generated libraries (for Calendar, YouTube, Drive, Storage, etc.) are available using NuGet. You can find all our packages here https://www.nuget.org/packages?q=google.apis&prerelease=true&sortOrder=relevance. You can also find the code that generates them in our repository.
What else?
UPDATE:
The calendar API .NET docs are available in https://google-api-client-libraries.appspot.com/documentation/calendar/v3/csharp/1.8.0-rc/annotated.html.
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.
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 8 years ago.
Improve this question
Could anyone recommend me a good open source .Net based wiki project? Better with successful deployment and user experience, and have a good community to support. :-)
Thanks!
regards,
George
Screwturn wiki- http://www.screwturn.eu/ is what I currently use successfully.
DekiWiki
Runs even on Mono. The MonoDevelop site runs on it.
Roadkill .NET Wiki engine:
Free, open source (Ms-PL)
Wizard-based installer
Supports Creole, Markdown and Media Wiki syntax
Both database and Active Directory security by default
Very easy to theme: comes with a mediawiki theme by default
Comes with a screw-turn importer
Also works with Mono on Ubuntu
And its technologies:
.NET 4 (sorry 2.0/3.5 people!)
LightSpeed ORM - works with SQL Server, Sqlite, Postgres, MySQL, MongoDB
ASP.NET MVC 3/razor
JQuery
Lucene.net
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
Are there any good alternatives for Lucene .NET to use in a ASP.NET website?
I want to index XML-, TXT-, PDF- and DOC-files.
Thanks!
I couldn't say if this is better than Lucene.NET but you might want to look at https://searcharoo.codeplex.com/.
This is late, but i think that Lucene.Net is now compatible with Medium Trust
see about midway in this post :
http://blogs.taiga.nl/martijn/2009/06/24/new-adventures-under-medium-trust/
Update
Adding this note for anyone else who finds this :
The final resolution of the issue is noted below. Short version : Lucene.Net officially runs under Medium Trust.
http://issues.apache.org/jira/browse/LUCENENET-169
why not try solr?
http://lucene.apache.org/solr/
Searcharoo has been mentioned. https://searcharoo.codeplex.com/
It's fully C#/.NET (edit - original domain no longer accessible. The codeplex link is to the searcharoo source code and the project has not had any update since 2012).
Also from this link:
Whoosh (purely Python, no C#/.NET bindings)
zettair (C; no C#/.NET bindings)
indri (bindings for Java, PHP, C++, but not C#/.NET)
Sphinx (for MySQL or PostgreSQL, or XML pipes)
Xapian (C++; has C#/.NET bindings)