Moodle integration with website with the use of web services - moodle

I already installed Moodle on Ubuntu with the use of database phpMyAdmin. I just want to integrate a new website with Moodle with the use of web services in Moodle.
But the problem is that I searched on YouTube about web services but they show Config Moodle to use web service and connect with OpenERP version 7. Since don't have Open ERP, is it necessary to have Open ERP. MY basic need is that I want a website that linked with Moodle website so I can fetch data or courses.

Moodle has several webServices, the most I've used are core_users_create_user, edit, delete, depending on what you want you can acces certain info of moodle...
moodle webServices

Related

Google Analytics Embed API with Server Side Authorization - Firebase Hosting

I completed the basic setup for Google Analytics and inserted the tracking code into my webpage(s). I can log in to analytics.google.com and see historical data just fine.
I have an admin page on my website where I want to display Google Analytics information to several users automatically (no additional logon req'd) and read that this is possible using the Embed API with Server-side Authorization.
I followed the instructions and created a Service Account that shows up under Service account keys in my Google API Manager portal. I also successfully ran 'sudo pip install --upgrade google-api-python-client' on my Cloud9 IDE and pushed the change to my hosting provider, Firebase, i.e. 'firebase deploy'. Lastly, I located and pasted my Analytics View ID in to the code sample provided with the Demo/Setup. My page is served with <!DOCTYPE html> declared.
I can't get it to work. Browser console says:
Uncaught TypeError: window.google.load is not a function
I am thinking that I am not invoking the get_access_token() in that Python module. In other words, I am thinking that server-side scripting is not supported with Firebase hosting.
Anyone know if and how to get Google Analytics Embed API with Server Side Authorization running with Firebase hosting?
This is not exactly a direct answer to your question, but rather an alternative solution to this problem. At least I’m using approach.
You can use Google Design Studio to build and embed amazing analytics and BI dashboards anywhere you like (also on your Admin website). But even easier would be to use Google’s authentication (via gmail) to provide access to select dashboards directly, as Google’s authentication and authorisation is likely more secure that your website’s.

Is there integration with Alfresco and OwnCloud?

Is there integration with Alfresco and Own-cloud? Or how to deploy alfresco to own-cloud?
I do not believe that it is possible to deploy Alfresco to OwnCloud. It also looks like OwnCloud does not (at the time of writing) support CMIS (see https://github.com/owncloud/core/issues/17563) so I think that it will be hard if not impossible to create an integration between Alfresco and OwnCloud.
But I saw a free web application before called MultCloud that can access all cloud storage in one place. There are more than 20 cloud services supported, including ownCloud and Alfresco.
Once you add your accounts into it, you're able to sync or transfer files among them directly from the web page. I use this tool to manage my Dropbox, Evernote and ownCloud. It would give a help from my point of view.

How to access local mysql from chrome packages app

I am developing a chrome packaged app. There is already an VB application running with mysql. I want to access the same database but use chrome packaged app as client.
How to access local mysql server from chrome packages app using javascript ?
I am aware of IndexedDB.
You have two options:
Create a web service (e.g. some PHP pages) that talks to MySQL and allows your app to use it as a go-between
Write your own MySQL driver/communicator to communicate with it directly: http://developer.chrome.com/apps/socket.html
The first is the easiest and would take the form:
Your chrome app would use AJAX to communicate with the PHP pages (probably via "POST")
Your PHP pages would expect it to login, use SSL and then use a token to continue identification during a session
The PHP would have generic capabilities to do CRUD actions
The PHP would spit back JSON for the results
but the second option would make you a hero if you took the time to develop that and put it on sourceforge or github under a permissive open source license.

How to install Umbraco extension on Web hosting server using panel?

i've successfully created CMS in Umbraco 4.11 and hosted it on web hosting server. Web hosting (arvixe) panel has Web app gallery which had Umbraco 4.9. So i needed to request to install 4.11 version.
Now after they installed it, im again stucked as there is no way of installing uComponents to Umbraco. i installed uComponenets on my local server using webMatrix but on Web hosting panel it is totally different story.
Has any one experience the same problem while making Umbraco App live on web hosting server?
if YES then please help me out with the steps.
You need to login and go to the developer area where you will find a Packages section through which you can install ucomponents.

External SSO and Web Application running on TOMCAT 6.0

New to JAVA. I developed Web application(JSP) successfully delpoyed on TOMCAT 6.0. Now the client want to use external SSO to authenticate users. As of now when the users are authenticated the website is displayed with Login Page where the user has to login again.
I am using the Login.jsp to bring the user roles from the SQLDB for Website.
What I want to accomplish now is when User is authenticated login.jsp should retrieve the credentials from the SSO and display the website thus accomplishing the purpose of Single sign on process.
I read a lot from this forum and other websites but kinda lost in the process.
Any help would be appreciated.
thank you
We developed a Tomcat extension (valve) which does just that. Basically you use standard J2EE security (role-ref etc) in your app and our Tomcat valve then acts as a bridge between Tomcat and our SSO platform. You can find out more at www.cloudseal.com
Of course you may not want to use our SSO platform :-( but you can still use our Tomcat valve and modify it to fit your needs. It's released under an Apache 2 license and you can grab the source from Github