How to Integrate moodle with asp.net - asp.net

I want to integrate moodle with my asp.net site. Is there any way to follow so that We can access moodle feature on my dot net site? Also can moodle work with sql server database?

Yes you can integrate moodle with .net application using webservices.
because moodle expose the same methods using several protocols that can be accessed by .net or any application.
here is a useful link if that helps:
https://delog.wordpress.com/2010/09/08/integrating-c-app-with-moodle-2/

According to the documentation Moodle is written in PHP, so no you will not be able to easily integrate it into your .Net site. However, there is no reason why you couldn't host the Moodle application as a virtual directory/application/sub-domain as IIS will allow you to host PHP applications.
Also, yes you can use MS SQL Server with Moodle.
A good overview of Moodle can be found here.

Related

Moodle SSO Using asp.net web app

Hi there i'm beginner in using moodle i want my custom website which is on ASP.net can anyone guide me that how can i add SSO feature for my website.
Thank you in advance.
You've got several options for Moodle. Depends on what authentication method you are using in your asp.net project?
These come with Moodle and might be suitable for .net:
LDAP - https://docs.moodle.org/30/en/LDAP_authentication
NTLM - https://docs.moodle.org/30/en/NTLM_authentication
Or use SAML, but you will need to install the SAML plugin and install simplesamlphp on your web server.
https://moodle.org/plugins/auth_saml

ReportLab Plus in Azure Websites?

I have ASP.NET MVC hosted in Azure(Website). I wanna integrate ReportLab in my application. According to FAQ, Python should be installed in order use ReportLab. But I don't think Azure website will allow me install anything. Two questions,
1) Can we integrate ReportLab in ASP.NET MVC and host it as Azure Website?
2) How can we pass model object to RML(XML)? The example is just executing an exe.
Azure does allow you to use Python. "You can select the version of Python that you want to use in the Azure Websites portal by opening the Configure tab of your website and changing the Python Version setting."
source: http://azure.microsoft.com/en-us/documentation/articles/web-sites-python-configure/

how to self host an existing asp.net webform

I am trying to self host an asp.net website / web application
Ideally web forms
Is this even possible? I have found a fortune of info on how to self host web api, or self host signalR
but I cannot find anything for a simple website (1 page) without all the overhread of iis.
I have tried using nancy, but it doesn't seem like it will run my aspx files, it has its own view engine
I have searched like you but find all about WebApi.
I remember that there is a component of windows called "Internet information services hostable web core".
You can install it by "Turn Windows Features on or off" if you are on a client windows (not on server).
Don't know if you are looking for unit test or other.
I found this page, that i'm going to read. I hope it should be usefull. Mabye if i have time i will update my post after i have made some tries.
Try here http://blogs.msdn.com/b/carlosag/archive/2008/04/14/hostyourownwebserverusingiis7.aspx
You can't self-host web forms using owin, it would require system.web. You'd need to upgrade to asp.net core to be used in the steteless Service Fabric.
Otherwise, I would create a separate SPA app to be hosted in an appservice. Just html, js and css files.

How do I manage ASP.Net users on a non development server?

In Visual Studio 2010 there is a handy tool for managing users for my Silverlight Business Application. How do I do this with my deployed application?
Good question, I'm surprised there isn't a built-in, pre-canned solution :)
There's an option here: http://mywsat.codeplex.com/
Related questions:
is it possible to use iis 7 to manage users when using forms authentication with asp.net
User management in Silverlight, create custom UI or use ASP.NET website administration tool?
Sorry to say, but you will have to write user management code in your app.
You might find this article interesting.
https://web.archive.org/web/20210306174425/https://www.4guysfromrolla.com/articles/052307-1.aspx

Accessing Visual SVN from ASP.Net using sharpsvn API

has any one tried to access VisualSVN Server repositories through ASP.Net using SharpSVN API ? if yes, what were the challenges ?
There is one thing you should take a look at when using SharpSvn in ASP.NET, see this forum post

Resources