Home image

Over than 18 years helping businesses and people to increase their sales and revenue, to improve their customer service experience and get the most benefit of the existing Microsoft technology to meet their goals with success.


Get the Power of Microsoft technologies now with


Home image


Contact Us for free trial and recomendations.

Home image
Home image

Why Us

If you want to have an excellent quality solution you must go directly to the source. That is what we do, our solutions are built with the best quality of components, s​​​trongly tested​ and passed the most critical proofs, so that we don't need to worry about​ the final result, if we use excellent compon​ents, then the results will be excellent as well.Please do not hesitate to contact us. We look forward to working with you and making your project a success.

Home image

Technologies

Remoting Coders can perform projects using these technologies and tools
.NET Framework , C#, JavaScript, JQuery, Microsoft SharePoint, Microsoft Dynamics 365, Power Platform, PowerApps, Power Automate, Dataverse, Dynamics Business Central.

Home image

Integrations

Why not automate the manual processes to share data between two different systems? If you have more than one system or ERP software in your enterprise, you will want to integrate them. We have a lot of experience in doing system integrations from standard systems available on the internet to very complex legacy systems. we can also help you integrate online systems with 
‌on-premise systems.

Home image

Our disciplines

Each discipline has their own strength and focus, but we all collaborate as one team. To learn more about how we work together, visit ‌how we work.

Recently Blog Post

How to create a Web Job in Azure


Hi, the purpose of this blog post is to show developers how to create a Web Job.
-Go to Azure Portal. 
-Search for Resource group. Create a Resource group if you don’t have any:

 
 
-Search for APP service and create an app service 
-Give any name you want to the instance:
 
  
 
-Select the publish code, or if you need any docker, select Runtime stack (either core or asp.net frame work or tomcat). Go to Monitoring tab if you want to enable Application insights. By default, it will be enabled.
 
-Click on Review + Create and click on Create.
-Go to Azure portal -> Resource groups -> Resource (which you have created) -> WebJob App Service. Click on “Get Publish profile” and download and import it into Visual studio to publish the web job.
-Go to Azure portal and search for Storage accounts and click on it. 
-Click on Add. 
-Click on Review +Create.
 
-Go to Storage account, click on the Storage account previously created. Click on Access keys and copy the connection string.
 
  
 
Now go to Visual Studio to create a Console APP
 
File->New->Project
 
  
 
Right click on solution -> click add -> New Item -> select JSON type and name it Settings.job
 
  
 
Open the “Settings.job” and add the following CRON expression:
 
{
"schedule": "0 0 */4 * * *"
}
 
Note: The basic format of the CRON expressions in Azure is:
 
{second} {minute} {hour} {day} {month} {day of the week}

Here more documentation about this:
https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer?tabs=in-process&pivots=programming-language-csharp#ncrontab-expressions 
 
Go to App.config and add the below line in the connectionstring tag
 
<add name="AzureWebJobsDashboard" connectionString= ”<connection string copied from storageaccount> " />
<add name="AzureWebJobsStorage" connectionString = ”<connection string copied from storageaccount>" />  
 
Click on "Microsoft Azure App service" or Import the profile which we downloaded in the earlier steps.   
 
Below, the screen should appear. Go to the settings tab, set configuration to “Release,” and publish.
 
Wait for the message below to appear in the output window of Visual Studio to assure that the deployment was successful.
 
Go to the Azure Portal on the below screen and click on WebJob. You should be able to find your WebJob here.
 
Original Source:
https://www.c-sharpcorner.com/blogs/how-to-create-a-webjob-in-azure-using-visual-studio

Official Documentation:
https://docs.microsoft.com/en-us/azure/app-service/webjobs-dotnet-deploy-vs

Enjoy it!


Continue reading...

Home image
Home image
Home image
Home image