Salesforce: Can we customize with .Net? - salesforce

I am being asked to make some developments on salesforce. Is there anyway to do it using .Net instead of Apex?

It depends on exactly what you're trying to do, there are Web Services APIs you can call from .NET, but you can not run native .NET code on the salesforce servers.

Related

Is it possible to embed a web application within Salesforce Lightning?

Is it possible to embed a web application using a platform like Dash inside Salesforce Experience Cloud Lightning? It seems like this should be pretty trivial using an iframe, but I can't find any documentation about this beyond https://ideas.salesforce.com/s/idea/a0B8W00000GdYxrUAF/support-embedding-lightning-community-pages-in-iframes-from-csp-trusted-sites which suggests that it isn't supported. Are there anyways around this?

ADAL, Angular and WEB API strategy

I am a Microsoft developer. Making an ASP.NET application with authentication to Azure AD is very easy. The traditional multi page application with Vue (as an example) can be created within two minutes (by using the Authentication wizard in Visual Studio). However watching some Angular and NPM videos I liked the CLI/npm approach. So I decided to build my next project using ADAL.js, ASP.NET Core API and Angular 6 (deploy to Azure web app). But I haven't been able to succeed, and have only been met by complexity and issues.
Is the combo of these three technologies just a bad mix, Visual Studio not suited for SPA, or have I just gotten a bad start? Any suggestions on a good setup? I am considering to split the API and front end in two apps, so I can use clean Angular without having to worry about who is building TypeScript (VS or Node) etc. But then I need two web apps, and have to worry about CORS. Any suggestions here, what is a good setup to get started?
I have followed a lot of articles like:
http://www.talkingdotnet.com/how-to-create-an-angular-6-app-with-visual-studio-2017/
https://www.npmjs.com/package/microsoft-adal-angular6
But all of them had issues.
Refer to this Microsoft published GitHub sample. This sample demonstrates the use of ADAL for JavaScript for securing an AngularJS based single page app, implemented with an ASP.NET Web API backend, that calls another ASP.NET Web API using CORS.
Call an Azure AD protected Web API in an AngularJS Single Page App

How to include Adobe Analytics in CodenameOne

I know cn1 has native support for Google Analytics. How can we get the same for Adobe Analytics?
The AppMeasurement java API is described here.
Cheers,
The documents you link pertain to JavaSE/EE not for mobile or web so I'm not sure how practical they are. You need to look for web service based documents and implement the required calls into the webservice.
You can also use the JavaEE version on your server and open a webservice yourself or use a native OS SDK if available.
To bind it to Codename One you can derive the AnalyticsService class and just call the init method with your own derived instance. Then calls to visit can be mapped to the Adobe implementation.

silverlight and spring.net

can i use both silverlight and spring.net in the same web based project
Silverlight is a client technology and spring.net is a server technology, as long as you aren't trying to implement a Silverlight client that is also a spring server, you should be able to do whatever you want with the two.

Access Windows Azure API via Silverlight?

I am interested in the best practices to access Windows Azure API from a Silverlight application? I am pretty sure as an experienced developer it will require me to build a back end web service that silverlight can then use as an interface between Azure API and Silverlight. But I am concerned with speed and security...For instance I am guessing I can use WCF, but what is the fastest way to get this communication to occur?
Also this is an assumption on my part that a webservice is needed, is there any support from Azure for Silverlight? I couldn't find anything on Microsoft site about this, only how to host a Silverlight application on your Azure Storage Blob which is not what I am asking...
Thanks!
Your assumption is correct. You will have to create a web service (wcf is considered best practice) that exposes the methods in the Azure API that you want to access.

Resources