Author Archive

After configuring Windows 2016 OS, if you start SQL Loader you may receive the message “This Program can’t start because oranfsodm12.dll is missing from your computer.Try reinstalling the program to fix this problem“ Most often the reason is the missing dll after installing oracle client on the machine. The quick fix for this error is to copy the oranfsodm12.dll from a working copy into this folder c:\oracle\product\12.1.0\client_32\BIN (depends on your oracle directory) Second step is to have the tnsnames.ora file configured in the Oracle client. Either you can save the file on C:\oracle\product\12.1.0\client_32\network\admin or have it point to a location from environment variable. Run the sqlldr command to test the fix

Read More...

This solution is fix the error message whole hosting .NET website in IIS. Error message: Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Source Error:   [No relevant source lines] Source File: C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config    Line: 276 Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version: Solution: Verify the machine config and find the assembly mentioned on that line number. Make sure the assembly version installed on the machine is same as the one in the web.config file. Alternate solution is to Remove Identity node on web.config

Read More...

This is the solution to fix the IIS error while loading the static files such as css and image files in Windows Server machines. Step 1: Open “ Turn windows features on or off” in control panel Step 2: Manage-> Add Roles and Features->next->Next->Next-> Step 3: Under server Roles : Enable static content in IIS services. Step 4: Install Additionally , If you still have the problem with any specific file extension, Please make sure you add the files extension in the Mime Types option in IIS. Note: Make sure to allow the file extension in the output filtering option as well

Read More...

Logic app is Microsoft’s answer for IFTT like service. For those who don’t know logic apps , we can develop a simple web app using just blocks of workflows and connectors. Microsoft provides some out of box connectors for example, if you want to send an email every time a tweet is posted then you can simply use twitter connector. In this tutorial we will create a simple Logic App in Microsoft azure. The task which we are trying to accomplish is to make the app to send an email when a new http request is posted.   Each logic apps works in the concept of Trigger and action. Here in our example   Login to Azure portal and click new + button and select [&hellip

Read More...