You are on page 1of 2

IDP_V1 Setup and Bulk Enrollment Test Guide

 Add a Login to Windows on UserAccount table


 Host application by creating a new port(App pool gets created automatically, .Net v4.5).
 Browse portal of solution as physical path in iis(As shown below on left part of image).

 Enable Windows Auth under authentication in IIS.


 Add permissions for IIS_IUSRS(If not exist already).
 Click on Edit permission on right hand panel of IIS
Window>>Security>>Edit>>Add>>Advanced>>Find Now>> IIS_IUSRS and allow access to IUSRS.
 Browse application and check if dashboard shows.

DB Changes for testing device enrollment-

 Update url table with server name and port used-

update url set url=replace(url,'dell-04/IDPV1','agisitdbsw002:8015') –Check for


servername and application port

 Create New Order with two devices using below command-

exec [dbo].[proc_GenerateDummyOrderSamsung] @orderNumber='UATSAM001',


@deviceIMEI='35719951111121', @sDepCustomerId='889877574685'
exec [dbo].[proc_GenerateDummyOrderSamsung] @orderNumber='UATSAM001',
@deviceIMEI='35719411111122', @sDepCustomerId='889877574685'

This will create 1 order with orderno= UATSAM001 with status as Pending Enrollment, check
order screen for confirmation

 Orders can be processed using below command lines as well(If not CLR)
 Enrollment- exec [IDPV1].[dbo].[proc_GetSamSungBulkEnrollRequest]

 Check transaction Staus- exec [IDPV1].[dbo].[proc_SamsungCheckTransactionRequest]

 Keep exec this until order status is diff than “In Progress”.
 Delete Devices(return/Cancel): exec
[IDPV1].[dbo].[proc_DeleteSamSungBulkEnrollRequest]

You might also like