Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
At my organization, I'm working on a cloud based application that delivers information to sales team in the Dynamics CRM. It's required to build a UI in Dynamics CRM or integrate a UI with Dynamics.
Is this possible? If so, can anyone link me to any good resources on the matter or provide me with any information you feel would be relevant? I've been doing a lot of research but haven't found anything about how to develop in Dynamics (programming languages, development framework for both UI (native vs HTML/hybrid) and backend changes).
You question is a little unclear as to what exactly you are trying to achieve; but assuming that you want a custom UI to be visible from within CRM then I would recommend:
Developing your UI as standalone web application or set of web services and HTML resources
Hosting the UI within CRM as an external iFrame or CRM Webresource
Hosting an iFrame within CRM:
https://msdn.microsoft.com/en-us/library/gg328034.aspx
Using CRM Webservice to access CRM:
https://msdn.microsoft.com/en-us/library/gg328416.aspx
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I need to integrate BizTalk 2016 and Dynamics 365 on premises. Is there any software that could accelerate this? Does anyone know where I could find examples of how this can be achieved?
So, here's the deal, this really isn't something you just do...
While D365 has a full OData base Rest API, plan to spend a fair amount of time learning those patterns, then even more in discussions with the business on exactly what they want to do.
BizTalk + OData + Rest is pretty basic is is just JSON over Http. In BizTalk you would use the JSON pipeline components and wCF-WebHttp Adapter.
Well, since there's no comment and there is nothing wrong with this answer, the Downvote should be ignored as invalid and misleading.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I have need to do the authorization for my web service. And I want to design some XACML policies to do the job. But they are a little complicated for me (forgive me that I'm a newbee to security policy). I feel I have the need to have a GUI editor to help me do the design. But I haven't found a good GUI editor except UMU-XACML-Editor, which is no longer actively developed currently.
In my humble opinion, a XACML PDP server maybe too heavy for me. I just want to have a GUI policy editor, maybe a desktop software or a web-based UI. Is there a tool like this?
There are several tools, editors, and PDPs available:
Axiomatics Policy Server (YouTube demo) contains both a web-based ui and a desktop client.
the ALFA plugin for Eclipse
AT&T XACML
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
From the information I've gathered, Vaadin seems best suited for business related applications.
I'm just wondering if anyone with experience could tell me if it would be possible to create Facebook 2.0 with Vaadin? It seems like a really good front-end for such a thing and I see many possibilities for amazing user experiences.
(That's not what I'm aiming to do, just trying to make the question more concrete)
Note that I'm a beginner and currently developing using Thymeleaf as my template engine.
I would not recommend Vaadin as a technology for realizing a social network. Vaadin is a server-side UI framework that stores the UI state in the session. With thousands of concurrently active users you have a massive memory consumption on the server. I would rather use a fat-client approach with client-side technologies such as angularJS.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Does anyone know if there are web api's that allow you to retrieve MSDN info from a webservice call? Unfortunately googling MSDN web API's returns information on how to use web API's.
It's really not very easy to find, I agree...
http://services.msdn.microsoft.com/ContentServices/ContentService.asmx
From the intro:
This is the documentation for the MSDN/TechNet Publishing System
(MTPS) Content Service. The MTPS Content Service is an XML web service
that provides access to the content stored in MTPS. This includes, for
example, the content available at http://msdn2.microsoft.com/library.
Using the MTPS Content Service, developers can integrate
documentation, technical articles, whitepapers, images and the other
content available from the MTPS system into their own applications.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have been using ASP.NET MVC 3 for a while to implement a testing application. Now I am at a point where I need a reporting tool to see and compare percentages of performances of different people over a period of time using a line graph. Can anyone please suggest an efficient reporting tool which works great with MVC3 ... Thank you for the help.
SQL Server reporting service views and rdl file types are available right within an MVC3 project. They don't require a SSRS server and can be designed right within Visual Studio. Quickest and easiest solution.. and free.