how can i add my web service to moodle site - web-services

hello guys can someone tell me how to add an external web service to moodle
I created a web service with django rest framework and I want to add it to moodle
but when I installed moodle in my localhost I could not modify anything whenever I add something no changes occur

Related

Not able to invoke web services using web app which was deployed in Azure

I have a deployed html file by creating web app in Azure and hosted using FTP tool. when I hit the run in intellij, able to submit the values using html file and able to hit the web services. but am not able to hit the web services when i trying to deploy and run the nodes in command prompt.
It looks like your web app does not have the proper url of your web server.
Feel free to see an example of how we had build a front end web app at: https://github.com/corda/samples-kotlin/tree/master/Advanced/auction-cordapp/client/src/main/resources
The front-end is simple angular web app.

How will remote api calls in PhoneGap app work with Good?

I want to use an existing developed PhoneGap app I have developed and deploy it onto Good.
What I don't understand is how authentication of remote api calls will work within Good?
For example
Within the app I make remote calls to a webservice end point
The webservice is strictly only available to authenticated users' within
the network (It's behind a firewall)
Questions
Does Good provide a proxy, where the url of the webservice is pointed to the Good server which in turn calls the actual webservice end point?
If so, is the proxy 'automatically; created or does a proxy alias have to be created in good and it is this alias as what I specify within the phonegap app? i.e. Do I have to change the web service url in the PhoneGap app
Any ideas how fire-walled web services are configured in Good?
Is the authentication of the user passed through Good which effectively is setup to access resources within the fire-walled internal network?
Do I have to package the PhoneGap app into a 'Good' app?
Thanks
Edit
I have seen that 'Containerizing via App Wrapping' may come into this somewhere?

Do I need a web service in this case? When do we use them?

my issue is about web services and all the stuff around that. I've developed a java web app, using hibernate (to connect with a mysql DB), jsf and primefaces. The only thing I have to show to the user is the index.xhtml which will search a data in a database. All of this is running on my PC with my local apache server.
But a doubt comes to my mind when I wonder if I deploy this web app in the apache server of the company, do we need something such as a web service o something like that o they just can access to the index.xhtml and start the queries?
Sorry for this but I'm totally new repesct web services, web app, web server and all these stuff.
PS. So, when do we use web services? and web server?
Thanks in advance :)
A web service is typically used as an API that might be integrated into another application. For example, if you have a way to accept payment information. You could make that a web service that would let some other application (e.g. an auction site) make calls into your web service to do some work.
Think of it a bit like a DLL that is accessible on the web. It won't have an interface, it is a collection of methods that either return data or execute some code. It will not return a UI.
So when you use a web service would be a similar question to when you need to break code out into a separate assembly.
On your specific question above, you would not need a web service, if your web application is doing everything you need it to do, then all you need is a web application.

How to consume asp.net web service in SharePoint site?

I have asp.net web service application created in VS 2010. I created this web service using ASP.NET Web Service Application template in VS 2010. My InfoPath form consumes my webservice. However to fill out my IP form, I first have to make sure I run my web service, otherwise I get errors like cannot connect to the webservice.
How can I make sure my web services are properly deployed to my SharePoint site that hosts infoPath form services? Please let me know the necessary steps. If my web services are deployed to my SharePoint site then there's no need to manually run my asp.net web service in the browser everytime I need to fill out the form. Thanks.
Here's the error message I got when I tried to browse my custom web service deployed to layouts folder:
http://abcd/_layouts/WebServiceDemo/MyCustomWebService.asmx
I couldn't find relevant message in 14-->LOGS. Any idea what's causing this? Thanks.
My own analysis: Please visit the web.config inside LAYOUTS folder and set Customerros to Off to get more meaningful error message.
I Googled "How to consume asp.net web service in SharePoint site".
The third hit was Walkthrough: Creating a Custom ASP.NET (ASMX) Web Service in SharePoint 2010. The post shows how to create, deploy and consume the service.

when call web service, redirect to login page

hi
i'm provide a web application and on it, i develop a web service. but when calling web service it's going to login page automatically.
i have an authentication tag on web.config file that protection property set by "All".
i want when i call web service, it should load without login and another page have this security.
please help me.
Create a folder in your website - "WebServices". In that folder create a web.config file in which allow anonymous access to the content i.e. Allow All.