Posts

UiPath Tutorials - Part 3 (Important concepts of UiPath)

Image
  In this article, I will explain on below concepts         Benefits of RPA         RPA implementation suitable for        Trend of RPA in market         Why UiPath?        UiPath Products         System requirements           Detail installation guide.         RPA life cycle        Roles and Responsibilities   Benefits of RPA          Cost reduction.          Higher accuracy          Reduced human error          Better speed 24/7          Advanced analytics – analytics of bots on single place          Compliance – We can adopt robost security while building the process/robots   Where we can implement RPA? 1.        Human Resources: It can be adopted to automate HR operations like On-boarding 2.        Healthcare: RPA can be used to handle patient records, claims, customer support records, billing, reporting and analytics. 3.        Finance: Companies from financial domain can use RPA to automate debit and credit payments, insurance quote creat

Creating Hosted Service on Cloud Environment Using Windows Azure Management API

  I have seen a few articles on creation of a hosted service using C#.  Most articles describe creation of a hosted service in a cloud environment very nicely. But this article will explain creation of a hosted service in Azure as well as some error descriptions. (I struggled a lot, while adding a certificate, accessing a certificate and resolving the errors conflict error, bad request (400) and hosted service name is invalid etc.). I would like to mention a few things in here related to creation of a hosted service: Service Name; actually a service name will be assigned to the DNS Prefix property in the cloud staging or production environment. It is recommended to have a minimum of four to five characters. According to Azure standards, we should add "DNS" as a prefix with the service name. It should not contain the "/","\","." characters. It does allow the "-" character. The text assigned to the label field will be used as the hosted s

Best Ways For WCF Exception Handling

  I am here with a small description of the way of exception handling in WCF. In this article, we will come to learn about: Ways of handling exceptions in WCF. When and what type of exception handling can be used. Exception handling is critical to all applications for troubleshooting the unexpected problems in applications. The Windows Communication Framework (WCF) provides several options for handling exceptions in WCF services. This article discusses these approaches and describes the advantages and disadvantages of each. The following options are provided to handle exceptions in WCF: Using returnUnknownExceptionsAsFaults:  Debugging Mode Using FaultException:  Best Option . Using IErrorHandler:  Only when the exception can't be handled by Fault Exceptions inside a WCF Service   Before describing the details of exception handling in WCF, let's explore what happens if we do not handle an exception inside the service. Consider a service with the CreateUser method as shown in th