Configuring Domino Access Services - lotus-domino

Domino Database and Folder/View present in the database shall be enabled to access documents and views present in domino database.
Manual procedure is mentioned to enable Domino Data services in the documentation.
Is it possible to programmatically enable Domino Data Services for Domino Database and views?

You can use the Extension Library REST Services.
Take a look at Extension Library REST Services.doc here you can find information about the four types of REST services which are included in the extension library.
UPDATE:
I would prefer to use the Extension Library xe:restService service.
If you have installed the Domino Designer you can find it as shown in the screenshot below:

Related

How to develop an ASP.NET Razor Pages web application using a cloud database?

I have been using local databases to develop web applications in ASP.NET Razor Pages. My experience was that the local database creates itself simultaneously with the development of the web application.
Currently, I need to work with a cloud database set up in Microsoft Azure. This cloud database already contains tables. How can I connect to the cloud database and call these tables and their attributes in razor pages?
You need read the offical document first.
There are two ways you can set your sqldb connections. One is written in the appsetting.json file, and the other is set in the portal, as mentioned in the official documentation.
The difference between the two is that the setting priority in the portal is higher than the configuration in the code file, and the configuration will be overwritten when it is released.
For novices, you can get the Connection strings in the portal. Then you first ensure that your program can run normally, and replace the connection string in the appsetting.json file with the string provided in the portal. If normal CURD operation is possible, then the connection is successful.

RavenDB automation - RESTful way to add users to system db for Windows Authentication?

Situation:
Automated commercial RavenDB 3 server install & configuration on Amazon EC2 to a standalone server (no active directory domain). Local Windows users are automatically created.
Problem:
Using the HTTP client API, how to add local windows users to the Raven/Authorization/WindowsSettings document of the system database?
Reference:
The docs describe a method using the Studio to achieve this:
https://ravendb.net/docs/article-page/3.0/http/server/configuration/authentication-and-authorization
The document is just that, a standard RavenDB document. You can operate on that using the standard JSON REST endpoints to manipulate it.

Using ArcGIS Runtime .NET for services

Is it allowed to build a .NET service for ReverseGeoCoding (LocalLocatorTask) which runs on a server?
We would like to build a service which translates GPS-coordinates to addresses using ArcGIS Runtime SDK for .NET. We are already licensed to use the Standard license needed for LocalLocators.
But now we've heard is not allowed to build server applications, is this true and where can I find this in the terms and conditions?
Thanks,
Frederiek
No it isn't allowed (though I can't find the exact wording) as it basically negates the need for ArcGIS Server or the need for multiple user accounts when the same functionality is deployed as an app.
If you can't use it as an app or use ArcGIS Server / Online directly and really need a windows service then you will need to write your own code to do it. If you can use ArcGIS Server services from the windows service I have a project that manages the REST calls at https://github.com/davetimmins/ArcGIS.PCL
This is currently prohibited by the license agreement, though there is no technical reason why it wouldn't work. It is not tested or certified for services environments by Esri development teams.

Alternate Access Mapping not working in SharePoint 2010 Workgroup

I have tried to configure alternate access mappings in my SharePoint 2010 which is installed in WorkGroup Windows Server 2008 R2 server but could not make it work.
Here are my steps.
Go to Central Administration-> Manage Web Application.
Select a web application and extend it.
Provide the my12server.com in the host header and leave other default values as it is. I changed the zone to Extranet.
Click Ok.
After sometime, it creates Web Application in SharePoint and Web Site in IIS.
I have changed my hosts file by adding entry
192.168.1.11 my12server.com
Browse the new extended. It asks for credential. Supplied the correct credential but nothing got display. Just a blank page.
Note: I have however successfully extended web application when the SharePoint 2010 is in domain machine.
Please advice me.
Thanks
Prakash
SharePoint is designed to work in domain environments only. In other words, you cannot expect to run it on an underlying Windows Server which joined into a workgroup and expect full functionality. Although there are blog posts around describing installation in a workgroup environment (or, better to say, using local accounts), I wouldn't recommend wasting time with such a mode of operation.
Furthermore, it doesn't make sense to extend a web application just for the sake of providing another hostname. Extending web applications multiple times is mostly useful when you need different authentication providers for each of them. In your simple case you can just configure multiple Alternate Access Mapping records for a single web application.

How to trasform a microsoft sql server report service in web application

How can i trasform a microsoft sql server report service in web application or something that i can access on the net?
thanks to all that would help me
You've got a bunch of different options - see:
Integrating Reporting Services into Applications
Using the Report Server Web Service/SOAP APIs
Extending/Integrating Reporting Services using RS Programming
There's a asp:ReportViewer control, which allows you to either display a local *.rdlc file containing a report definition, or you can also hook that up to a server-side *.rdl file on your reporting server.
Is that what you're looking for? It can render and show the report you defined on a ASP.NET page.