Beispiel #1
0
Action()
{
	int rand_str, i;
	int rand_thinkTime;
	char StrTable[]="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
	char targetString[22]="";

	for (i=0; i<26; i++){
		rand_str=rand()%62;
		strncat(targetString, StrTable+rand_str, 1);
	}

	lr_save_string(targetString,"targetString_value");

	lr_start_transaction("Vote");

	web_reg_find("Text=\xCD\xB6\xC6\xB1\xB3\xC9\xB9\xA6!", //投票成功!
		LAST );

	web_add_auto_header("User-Agent", "{UserAgent}");

    web_custom_request("Voting",
        "Method=POST",
        "URL=http://www.4006880288.com/wtg1/mobile/user.php",
        "Body="
			"zpid=38&"
			"opid=owzeBj{targetString_value}&"
			"md_id=70&"
			"act=zuopin_toupiao",
        LAST);

	web_reg_find("Text=\xCD\xB6\xC6\xB1\xB3\xC9\xB9\xA6!", //投票成功!
		LAST );

	web_add_auto_header("User-Agent", "{UserAgent}");

    web_custom_request("VotingOthers",
        "Method=POST",
        "URL=http://www.4006880288.com/wtg1/mobile/user.php",
        "Body=zpid={zpid}&opid=owzeBj{targetString_value}&md_id=70&act=zuopin_toupiao",
        LAST);

	lr_end_transaction("Vote", LR_AUTO);

	rand_thinkTime = 3+ rand()%57;

	lr_think_time(rand_thinkTime);

	return 0;
}
Beispiel #2
0
Action()
{

	



	web_url("add_or_edit", 
		"URL=http://kpi3-test.ntalker.com/index.php/settingelse/add_or_edit?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&type=add&disp=account", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=", 
		"Snapshot=t2.inf", 
		"Mode=HTML", 
		"EXTRARES", 
		"LAST");

	web_custom_request("add_account", 
		"URL=http://kpi3-test.ntalker.com/index.php/settingelse/add_account?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f", 
		"Method=POST", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://kpi3-test.ntalker.com/index.php/settingelse/add_or_edit?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&type=add&disp=account", 
		"Snapshot=t3.inf", 
		"Mode=HTML", 
		"Body=usertype=0&pri=admin&gid=11054&accountName={accountName}&user_id=&externalName=&nickName=&pass={pass}&pass2={pass}&is_robot_welcome=0&welcome=&remLen1=&no_reply=&remLen=&maxreception=8&dealkfid=all&mobile=&email=&hand_day_num=5&hand_all_num=5&accountName={accountName}&usericon=http://kpi3-test.ntalker.com/application/static/setting/images/head.jpg", 
		"LAST");



	return 0;
}
Beispiel #3
0
get_google_access_token(){
		int rc=LR_PASS;
	char sOut[256]; // used by wi_EncodePlainToURL()

	rc=get_pJWTAssertion(); // into parameter pJWTAssertion used by this function.
	if( rc != LR_PASS ){ return rc; } // No input data to process.

		if( stricmp("Token",LPCSTR_RunType ) == FOUND ){ // "Token" or "TOKEN" specified in Run-time Attribute "RunType" or command line option "-RunType".
			wi_startPrintingTrace();
		    lr_output_message(">> RunType=\"%s\". JWT=%s."
					,LPCSTR_RunType 
					,lr_eval_string("{pJWTAssertion}")
					);
			wi_stopPrinting();
			return LR_PASS;
		}

	    web_add_header("Content-Type","application/x-www-form-urlencoded");
	    web_add_header("X-Frame-Options","deny"); // to protect against drag'n drop clickjacking attacks in older browsers.
	    web_reg_save_param_ex("ParamName=pAccessToken","LB=\"access_token\" : \"","RB=\"",SEARCH_FILTERS,"Scope=body",LAST);

	    // Example: "Body=grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer&assertion={pJWTAssertion}",
	    wi_EncodePlainToOAuth("grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer&assertion=",sOut );
	    lr_save_string(sOut,"pJWTAssertion_request");
			wi_startPrintingTrace();
		    lr_output_message(">> sOut=\"%s\"."
					,lr_eval_string("{pJWTAssertion_request}")
					);
			wi_stopPrinting();
				
		// TODO: 15. If you want to, change the transaction name suffix for access authorization requests.
		sprintf( 	   tempString1, "%s_1access", lr_eval_string("{pTransSequence}") );
		lr_save_string(tempString1,"pTransName");
	    wi_start_transaction();
	    // web_rest("Token",
	    web_custom_request("Token",
                       "URL=https://accounts.google.com/o/oauth2/token",
                       "Method=POST",
                       //"ResType=JSON",
                       "Body={pJWTAssertion_request}{pJWTAssertion}",
                       LAST);
                       // The %3A are urlencoded from colons. (but %2D for the dash causes an "Invalid request" response):
                       // "Body=grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer&assertion={pJWTAssertion}",
                       // 		Common name for "jwt-bearer" is JWT Bearer Token Grant Type Profile for OAuth 2.0
                       // 		Defined at http://tools.ietf.org/html/draft-ietf-oauth-jwt-bearer-04
	    rc = wi_end_transaction();
	    // "Error -27796: Could not resolve address of hot accounts.google.com" is issued if there in no internet connection.
	    // Google API does not issue "error_description" such as "Audience validation failed".

		/* The response should look something like:
		{
  			"access_token" : "1/_5pUwJZs9a545HSeXXXXXuNGITp1XtHhZXXxxyyaacqkbc",
			"token_type" : "Bearer",
			"expires_in" : 3600
		}
		*/
		
    return rc;
} // get_google_access_token()
Beispiel #4
0
Action()
{

	web_add_cookie("NTKF_T2D_CLIENTID=guestTEMPEC99-E76E-976E-4E63-A77D99E41CD3; DOMAIN=kpi3-test.ntalker.com");

	web_url("account_management", 
		"URL=http://kpi3-test.ntalker.com/index.php/settingelse/account_management?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&disp=account&rnd=1458810998920", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=", 
		"Snapshot=t1.inf", 
		"Mode=HTML", 
		EXTRARES, 
		"Url=/application/static/default/js/My97DatePicker/skin/WdatePicker.css", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/account_management?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&disp=account&rnd=1458810998920", ENDITEM, 
		"Url=/application/static/setting/images/t_bj_38.jpg", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/account_management?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&disp=account&rnd=1458810998920", ENDITEM, 
		"Url=/application/static/setting/images/dot.png", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/account_management?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&disp=account&rnd=1458810998920", ENDITEM, 
		"Url=/application/static/setting/images/bg.png", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/account_management?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&disp=account&rnd=1458810998920", ENDITEM, 
		"Url=/application/static/setting/images/zcs.png", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/account_management?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&disp=account&rnd=1458810998920", ENDITEM, 
		"Url=/application/static/setting/images/bj.png", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/account_management?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&disp=account&rnd=1458810998920", ENDITEM, 
		"Url=/application/static/setting/images/jq.png", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/account_management?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&disp=account&rnd=1458810998920", ENDITEM, 
		LAST);

	web_url("add_or_edit", 
		"URL=http://kpi3-test.ntalker.com/index.php/settingelse/add_or_edit?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&type=add&disp=account", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=", 
		"Snapshot=t2.inf", 
		"Mode=HTML", 
		EXTRARES, 
		"Url=/application/static/setting/images/dnormal.png", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/add_or_edit?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&type=add&disp=account", ENDITEM, 
		"Url=/application/static/setting/images/tm.png", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/add_or_edit?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&type=add&disp=account", ENDITEM, 
		"Url=http://fpdownload2.macromedia.com/pub/shockwave/cabs/flash/swflash.cab", "Referer=", ENDITEM, 
		"Url=/application/static/setting/images/djg.png", "Referer=http://kpi3-test.ntalker.com/index.php/settingelse/add_or_edit?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&type=add&disp=account", ENDITEM, 
		LAST);

	web_custom_request("add_account", 
		"URL=http://kpi3-test.ntalker.com/index.php/settingelse/add_account?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f", 
		"Method=POST", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://kpi3-test.ntalker.com/index.php/settingelse/add_or_edit?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&type=add&disp=account", 
		"Snapshot=t3.inf", 
		"Mode=HTML", 
		"Body=usertype=0&pri=admin&gid=11054&accountName=xiaonengceshi000&user_id=&externalName=%E5%B0%8F%E8%83%BD%E6%B5%8B%E8%AF%95000&nickName=%E5%B0%8F%E8%83%BD%E6%B5%8B%E8%AF%95000&pass=111111&pass2=111111&is_robot_welcome=0&welcome=&remLen1=&no_reply=&remLen=&maxreception=8&dealkfid=all&mobile=&email=&hand_day_num=5&hand_all_num=5&accountName=xiaonengceshi000&usericon=http://kpi3-test.ntalker.com/application/static/setting/images/head.jpg", 
		LAST);

	web_url("account_management_2", 
		"URL=http://kpi3-test.ntalker.com/index.php/settingelse/account_management?userid=kf_1111_ISME9754_T2D_ntalker_lizhipeng&token=5a0b1a6d6215136d4d415d4d8cef378f&disp=account", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=", 
		"Snapshot=t4.inf", 
		"Mode=HTML", 
		LAST);

	return 0;
}
Logout_Curam()
{
	lr_start_transaction("0998_Logout_Curam");
	
	addDynaTraceHeader("NA=0998_Logout_Curam{dp_UserID};PC=UIMIFrameWrapperPage.do_2");
	web_custom_request("UIMIFrameWrapperPage.do_2",
		"URL=https://{p_Webapp_URL}/CitizenPortal/en_US/UIMIFrameWrapperPage.do?uimPageID=LogoutWrapper&o3ctx={o3ctx}&dojo.preventCache=1443210495845",
		"Method=GET",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do",
		"Snapshot=t29.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded",
		LAST);
	
	lr_end_transaction("0998_Logout_Curam", LR_AUTO);
	
	lr_think_time(10);
		
	lr_start_transaction("0999_Logout_Curam");
	addDynaTraceHeader("NA=0999_Logout_Curam;PC=logout.jsp");
	web_url("logout.jsp",
		"URL=https://{p_Webapp_URL}/CitizenPortal/logout.jsp?end_url=https://{p_IA_URL}",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/en_US/LogoutWrapperPage.do?o3ctx={o3ctx}&dojo.preventCache=1443210495845",
		"Snapshot=t30.inf",
		"Mode=HTML",
		LAST);
	
	lr_end_transaction("0999_Logout_Curam", LR_AUTO);
	
	lr_think_time(14);
	
	lr_start_transaction("1000_Last_Logout");
	
	addDynaTraceHeader("NA=1000_Last_Logout;PC=logout");
	web_submit_form("logout", 
		"Snapshot=t31.inf", 
		ITEMDATA, 
		LAST);
	lr_end_transaction("1000_Last_Logout", LR_AUTO);
	
	lr_think_time(14);
	
	return 0;
}
Curam_StartApp_Misc_URLS()
{
	
	lr_start_transaction("0010_Curam_StartApp_Misc_URLS");
	
		addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_1_{dp_UserID};PC=0010_ExternalApplication.html");
		web_custom_request("0010_ExternalApplication.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/curam/app/templates/ExternalApplication.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t11.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_2_{dp_UserID};PC=Menu.html");
	web_custom_request("Menu.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/ibmidxtk/idx/oneui/templates/Menu.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t12.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_3_{dp_UserID};PC=_MenuColumn.html");
	web_custom_request("_MenuColumn.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/ibmidxtk/idx/oneui/templates/_MenuColumn.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t13.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_4_{dp_UserID};PC=HoverCard.html");
	web_custom_request("HoverCard.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/ibmidxtk/idx/oneui/templates/HoverCard.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t14.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_5_{dp_UserID};PC=MenuDialog.html");
	web_custom_request("MenuDialog.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/ibmidxtk/idx/oneui/templates/MenuDialog.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t15.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_6_{dp_UserID};PC=MenuHeading.html");
	web_custom_request("MenuHeading.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/ibmidxtk/idx/oneui/templates/MenuHeading.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t16.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_7_{dp_UserID};PC=HoverHelpTooltip.html");
	web_custom_request("HoverHelpTooltip.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/ibmidxtk/idx/oneui/templates/HoverHelpTooltip.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t17.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_8_{dp_UserID};PC=InlineDropDown.html");
	web_custom_request("InlineDropDown.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/cwtk/widget/templates/InlineDropDown.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t18.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_9_{dp_UserID};PC=Rotator.html");
	web_custom_request("Rotator.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/cwtk/widget/templates/Rotator.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t19.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_10_{dp_UserID};PC=MenuItem.html");
	web_custom_request("MenuItem.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/cwtk/widget/templates/MenuItem.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t20.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_11_{dp_UserID};PC=TitlePane.html");
	web_custom_request("TitlePane.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/cwtk/widget/templates/TitlePane.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t21.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_12_{dp_UserID};PC=DropDown.html");
	web_custom_request("DropDown.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/cwtk/widget/templates/DropDown.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t22.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_13_{dp_UserID};PC=ContrastModeChooser.html");
	web_custom_request("ContrastModeChooser.html", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/jscript/cwtk/widget/templates/ContrastModeChooser.html", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t23.inf", 
		"Mode=HTML", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_14_{dp_UserID};PC=PathResolver");
	web_submit_data("PathResolver", 
		"Action=https://{p_Webapp_URL}/CitizenPortal/servlet/PathResolver?r=j&p=/config/tablayout/extapp[CITWSAPP]", 
		"Method=POST", 
		"RecContentType=text/plain", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t24.inf", 
		"Mode=HTML", 
		ITEMDATA, 
		"Name=dojo.preventCache", "Value=1443210486406", ENDITEM, 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_15_{dp_UserID};PC=CitizenWorkspace_userHomeResolverPage.do");
	web_custom_request("CitizenWorkspace_userHomeResolverPage.do",
		"URL=https://{p_Webapp_URL}/CitizenPortal/en_US/CitizenWorkspace_userHomeResolverPage.do?o3ctx={o3ctx}&testParam1=1&testParam2=2&dojo.preventCache=1443210486411",
		"Method=GET",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do",
		"Snapshot=t25.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded",
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_16_{dp_UserID};PC=CitizenWorkspace_userHomeResolverPage.do_2");
	web_custom_request("CitizenWorkspace_userHomeResolverPage.do_2",
		"URL=https://{p_Webapp_URL}/CitizenPortal/en_US/CitizenWorkspace_userHomeResolverPage.do?o3ctx={o3ctx}&dojo.preventCache=1443210487060",
		"Method=GET",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do",
		"Snapshot=t26.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded",
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_17_{dp_UserID};PC=application-banner-fragment.jspx");
	web_custom_request("application-banner-fragment.jspx", 
		"URL=https://{p_Webapp_URL}/CitizenPortal/CDEJ/extapp/application-banner-fragment.jspx?dojo.preventCache=1443210487043", 
		"Method=GET", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do", 
		"Snapshot=t27.inf", 
		"Mode=HTML", 
		"EncType=application/x-www-form-urlencoded", 
		LAST);

	addDynaTraceHeader("NA=0010_Curam_StartApp_Misc_URLS_18_{dp_UserID};PC=UIMIFrameWrapperPage.do");
	web_custom_request("UIMIFrameWrapperPage.do",
		"URL=https://{p_Webapp_URL}/CitizenPortal/en_US/UIMIFrameWrapperPage.do?uimPageID=StandardUser_home&o3ctx={o3ctx}&pageParams=&dojo.preventCache=1443210488053",
		"Method=GET",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/application.do",
		"Snapshot=t28.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded",
		EXTRARES,
		"URL=../servlet/PathResolver?r=i&p=/config/tablayout/image[ext-banner-user-arrow.png]", "Referer=https://{p_Webapp_URL}/CitizenPortal/CDEJ/extapp/themes/curam-extapp/application-banner.css", ENDITEM,
		"URL=../CDEJ/jscript/curam/core-uim.js", "Referer=https://{p_Webapp_URL}/CitizenPortal/en_US/StandardUser_homePage.do?pageParams=&o3ctx={o3ctx}&dojo.preventCache=1443210488053", ENDITEM,
		"URL=../CDEJ/jscript/dojotk/dojo/nls/cdej_en-us.js", "Referer=https://{p_Webapp_URL}/CitizenPortal/en_US/StandardUser_homePage.do?pageParams=&o3ctx={o3ctx}&dojo.preventCache=1443210488053", ENDITEM,
		"URL=../CDEJ/jscript/curam/application/nls/TabMenu.js", "Referer=https://{p_Webapp_URL}/CitizenPortal/en_US/StandardUser_homePage.do?pageParams=&o3ctx={o3ctx}&dojo.preventCache=1443210488053", ENDITEM,
		"URL=../CDEJ/jscript/curam/application/nls/en/TabMenu.js", "Referer=https://{p_Webapp_URL}/CitizenPortal/en_US/StandardUser_homePage.do?pageParams=&o3ctx={o3ctx}&dojo.preventCache=1443210488053", ENDITEM,
		"URL=../CDEJ/jscript/curam/application/nls/en-us/TabMenu.js", "Referer=https://{p_Webapp_URL}/CitizenPortal/en_US/StandardUser_homePage.do?pageParams=&o3ctx={o3ctx}&dojo.preventCache=1443210488053", ENDITEM,
		LAST);

	lr_end_transaction("0010_Curam_StartApp_Misc_URLS", LR_AUTO);
		
	lr_think_time(4);


	
	return 0;
}
Beispiel #7
0
Action()
{

//	web_add_cookie("external_no_cache=1; DOMAIN=89.238.153.133");

	lr_start_transaction("MBP_Web_010_OpenHomePage");

	web_url("index.php", 
		"URL=http://89.238.153.133/index.php", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=", 
		"Snapshot=t1.inf", 
		"Mode=HTML", 
		EXTRARES, 
		LAST);
		
	lr_end_transaction("MBP_Web_010_OpenHomePage", LR_AUTO);
	
	lr_think_time(5);


/*Correlation comment - Do not change!  Original value='250TaLL3Uu2cKWjj' Name ='CorrelationParameter' Type ='Manual'*/
	web_reg_save_param_regexp(
		"ParamName=CorrelationParameter",
		"RegExp=form_key/(.*?)/\"\\ method",
		SEARCH_FILTERS,
		"Scope=Body",
		"IgnoreRedirections=No",
		"RequestUrl=*/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html*",
		LAST);

/*Correlation comment - Do not change!  Original value='aHR0cDovLzg5LjIzOC4xNTMuMTMzL2luZGV4LnBocC9zb255LXZhaW8tdmduLXR4bjI3bi1iLTExLTEtbm90ZWJvb2stcGMuaHRtbD9fX19TSUQ9VQ' Name ='CorrelationParameter_1' Type ='Manual'*/
	web_reg_save_param_regexp(
		"ParamName=CorrelationParameter_1",
		"RegExp=uenc/(.*?),,",
		SEARCH_FILTERS,
		"Scope=Body",
		"IgnoreRedirections=No",
		"RequestUrl=*/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html*",
		LAST);

	lr_start_transaction("MBP_Web_020_SelectProduct");

	web_url("sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html", 
		"URL=http://89.238.153.133/index.php/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php", 
		"Snapshot=t2.inf", 
		"Mode=HTML", 
		EXTRARES, 
		LAST);
		
		lr_end_transaction("MBP_Web_020_SelectProduct", LR_AUTO);
		
		lr_think_time(5);

	/*6: Type "1" in Qty textbox*/
	/*7: Click on Add to Cart button*/
	
	lr_start_transaction("MBP_Web_030_AddToCart");

	web_submit_data("250TaLL3Uu2cKWjj",
		"Action=http://89.238.153.133/index.php/checkout/cart/add/uenc/{CorrelationParameter_1},,/product/27/form_key/{CorrelationParameter}/",
		"Method=POST",
		"RecContentType=text/html",
		"Referer=http://89.238.153.133/index.php/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html",
		"Snapshot=t3.inf",
		"Mode=HTML",
		ITEMDATA,
		"Name=form_key", "Value={CorrelationParameter}", ENDITEM,
		"Name=product", "Value=27", ENDITEM,
		"Name=related_product", "Value=", ENDITEM,
		"Name=qty", "Value=1", ENDITEM,
		LAST);
	
	lr_end_transaction("MBP_Web_030_AddToCart", LR_AUTO);
	
	lr_think_time(5);


	/*8: Click on Proceed to Checkout button*/

	lr_start_transaction("MBP_Web_040_ProceedToCheckout");

	web_url("onepage", 
		"URL=http://89.238.153.133/index.php/checkout/onepage/", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/cart/", 
		"Snapshot=t4.inf", 
		"Mode=HTML", 
		EXTRARES, 
		"Url=/js/varien/accordion.js", ENDITEM, 
		"Url=/skin/frontend/base/default/js/opcheckout.js", ENDITEM, 
		LAST);
	
	lr_end_transaction("MBP_Web_040_ProceedToCheckout", LR_AUTO);
	
	lr_think_time(5);

	/*9: Select "Register" from Checkout as a Guest or... listbox*/

	/*10: Click on Continue button*/

	lr_start_transaction("MBP_Web_050_RegisterCustomer");
	
	
	web_submit_data("saveMethod", 
		"Action=http://89.238.153.133/index.php/checkout/onepage/saveMethod/", 
		"Method=POST", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t5.inf", 
		"Mode=HTML", 
		ITEMDATA, 
		"Name=method", "Value=register", ENDITEM, 
		LAST);
	
	web_url("progress", 
		"URL=http://89.238.153.133/index.php/checkout/onepage/progress/?prevStep=billing", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t6.inf", 
		"Mode=HTML", 
		LAST);

	lr_end_transaction("MBP_Web_050_RegisterCustomer", LR_AUTO);	
	
	lr_think_time(5);
	
	lr_start_transaction("MBP_Web_060_EnterCustomerDetails");
	
	web_custom_request("saveBilling", 
		"URL=http://89.238.153.133/index.php/checkout/onepage/saveBilling/", 
		"Method=POST", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t7.inf", 
		"Mode=HTML", 
		"EncType=application/x-www-form-urlencoded; charset=UTF-8", 
		"Body=billing%5Baddress_id%5D=&billing%5Bfirstname%5D=John&billing%5Blastname%5D=Smith&billing%5Bcompany%5D=&billing%5Bemail%5D={pUniqueNumber}%40mail.com&billing%5Bstreet%5D%5B%5D=1%20High%20Street&billing%5Bstreet%5D%5B%5D=&billing%5Bcity%5D=Any%20City&billing%5Bregion_id%5D=&billing%5Bregion%5D=&billing%5Bpostcode%5D=M1%205AN&billing%5Bcountry_id%5D=GB&billing%5Btelephone%5D=01234567895412&billing%5Bfax%5D=&billing%5Bcustomer_password%5D=q2w3e4r5t6&billing%5Bconfirm_password%5D=q2w3e4r5t6&"
		"billing%5Bsave_in_address_book%5D=1&billing%5Buse_for_shipping%5D=1", 
		LAST);

	web_submit_data("getAdditional", 
		"Action=http://89.238.153.133/index.php/checkout/onepage/getAdditional/", 
		"Method=POST", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t8.inf", 
		"Mode=HTML", 
		ITEMDATA, 
		LAST);

	web_url("progress_2", 
		"URL=http://89.238.153.133/index.php/checkout/onepage/progress/?prevStep=billing", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t9.inf", 
		"Mode=HTML", 
		LAST);
	
	lr_end_transaction("MBP_Web_060_EnterCustomerDetails", LR_AUTO);
	
	lr_think_time(5);


	web_url("progress_3", 
		"URL=http://89.238.153.133/index.php/checkout/onepage/progress/?prevStep=shipping", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t10.inf", 
		"Mode=HTML", 
		LAST);

	/*41: Select "Check / Money order" from checkmo Check / Money... radiogroup*/
	
	lr_start_transaction("MBP_Web_070_ConfirmDeliveryMethod");


	web_submit_data("saveShippingMethod", 
		"Action=http://89.238.153.133/index.php/checkout/onepage/saveShippingMethod/", 
		"Method=POST", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t11.inf", 
		"Mode=HTML", 
		ITEMDATA, 
		"Name=shipping_method", "Value=flatrate_flatrate", ENDITEM, 
		LAST);

	web_url("progress_4", 
		"URL=http://89.238.153.133/index.php/checkout/onepage/progress/?prevStep=shipping_method", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t12.inf", 
		"Mode=HTML", 
		LAST);
	
	lr_end_transaction("MBP_Web_070_ConfirmDeliveryMethod", LR_AUTO);	
	
	lr_think_time(5);
	
	lr_start_transaction("MBP_Web_080_ConfirmPaymentMethod");
	
	web_url("progress_5", 
		"URL=http://89.238.153.133/index.php/checkout/onepage/progress/", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t13.inf", 
		"Mode=HTML", 
		LAST);

	/*42: Click on Continue button*/

	web_submit_data("savePayment", 
		"Action=http://89.238.153.133/index.php/checkout/onepage/savePayment/", 
		"Method=POST", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t14.inf", 
		"Mode=HTML", 
		ITEMDATA, 
		"Name=payment[method]", "Value=checkmo", ENDITEM, 
		LAST);

	lr_end_transaction("MBP_Web_080_ConfirmPaymentMethod", LR_AUTO);	
	
	lr_think_time(5);
	
	/*43: Click on Place Order button*/

	lr_start_transaction("MBP_Web_090_PlaceOrder");
	
	web_url("progress_6", 
		"URL=http://89.238.153.133/index.php/checkout/onepage/progress/?prevStep=payment", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://89.238.153.133/index.php/checkout/onepage/", 
		"Snapshot=t15.inf", 
		"Mode=HTML", 
		LAST);
	
	lr_end_transaction("MBP_Web_090_PlaceOrder", LR_AUTO);
	
	lr_think_time(5);
	

	return 0;
}
Beispiel #8
0
Action()
{

	web_add_cookie("_ga=GA1.3-2.1754593039.1433931260; DOMAIN=www.google.co.uk");

	web_add_cookie("NID=68=NgCRxVW7ubbILtfGOYfZeQSOiZBppXdRe21pBPWvsNoikPBHuHTe7gsdt-cfVY-DQKQ9C9_4Be78Vwi9e2AmT2YHPJLfszI8vqqkhO5ypqdUCUU5xGER9dTpqmYVQY8Y; DOMAIN=www.google.co.uk");

	web_add_cookie("PREF=ID=5d6cae63f12b910d:TM=1433931259:LM=1433931259:S=ypsw6hdlNVBZbwtY; DOMAIN=www.google.co.uk");

	web_add_cookie("OGPC=4061130-1:; DOMAIN=www.google.co.uk");

	web_add_cookie("_ga=GA1.3-2.559159154.1433931292; DOMAIN=www.google.co.uk");

	web_url("finance", 
		"URL=http://www.google.co.uk/finance?cid=14323395", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=", 
		"Snapshot=t4.inf", 
		"Mode=HTML", 
		EXTRARES, 
		"Url=http://www.gstatic.com/og/_/js/k=og.og.en_US.5XnTNMJwhLQ.O/rt=j/t=zcms/m=ld,sy37,sy38,sy39,sy40,d,sy59,gl,is,id,nb,nw,sb,sd,st,sy45,awd,sy48,sy49,sy51,p,vd,lod,eld,ip,dp,cpd/rs=AItRSTPns-kwBB5t5qS9y-IJNDgNRVnHfA", "Referer=http://www.google.co.uk/finance?cid=14323395", ENDITEM, 
		"Url=http://www.google-analytics.com/analytics.js", "Referer=http://www.google.co.uk/finance?cid=14323395", ENDITEM, 
		"Url=/finance/images/sp11.png", "Referer=http://www.google.co.uk/finance?cid=14323395", ENDITEM, 
		"Url=http://ssl.gstatic.com/gb/images/v1_ab71ffe9.png", "Referer=http://www.google.co.uk/finance?cid=14323395", ENDITEM, 
		"Url=/finance/s/aEc4Twn89CE/chart9.swf?hl=en&gl=gb", "Referer=http://www.google.co.uk/finance?cid=14323395", ENDITEM, 
		"Url=http://ssl.gstatic.com/ui/v1/disclosure/light-grey-disclosure-arrow-down.png", "Referer=http://www.google.co.uk/finance?cid=14323395", ENDITEM, 
		"Url=/finance/qs/test?VER=8&MODE=init&zx=4mcstgxajm2p&t=1", "Referer=http://www.google.co.uk/finance/_/js/a/b/rt=h/ver=rZztopK9dfE.en_GB./am=!vutE9fCSVdws1JA_/d=0", ENDITEM, 
		"Url=/finance/qs/test?VER=8&TYPE=xmlhttp&zx=guv7jmria73o&t=1", "Referer=http://www.google.co.uk/finance/_/js/a/b/rt=h/ver=rZztopK9dfE.en_GB./am=!vutE9fCSVdws1JA_/d=0", ENDITEM, 
		"Url=/finance/qs/channel?VER=8&RID=rpc&SID=8634503B339E9EFA&CI=1&AID=0&TYPE=xmlhttp&zx=xgdsy2so1wp6&t=1", "Referer=http://www.google.co.uk/finance/_/js/a/b/rt=h/ver=rZztopK9dfE.en_GB./am=!vutE9fCSVdws1JA_/d=0", ENDITEM, 
		LAST);

	web_add_cookie("OGPC=4061130-2:; DOMAIN=www.google.co.uk");

	web_submit_data("prefs", 
		"Action=http://www.google.co.uk/finance/prefs?action=set&prefsgroup=global&prefskey=RV&prefsval=14323395&hash&xsrf=iL78HDl_JbAXE7xbh4grJjCO7-g%3A1433931289627&ei=GQ54VcHhHsWH8wOvhYG4Bg", 
		"Method=POST", 
		"RecContentType=text/html", 
		"Referer=http://www.google.co.uk/finance/_/js/a/b/rt=h/ver=rZztopK9dfE.en_GB./am=!vutE9fCSVdws1JA_/d=0", 
		"Snapshot=t5.inf", 
		"Mode=HTML", 
		ITEMDATA, 
		LAST);

	web_submit_data("channel", 
		"Action=http://www.google.co.uk/finance/qs/channel?VER=8&RID=90605&CVER=1&zx=vvnyasx70qh0&t=1", 
		"Method=POST", 
		"RecContentType=text/plain", 
		"Referer=http://www.google.co.uk/finance/_/js/a/b/rt=h/ver=rZztopK9dfE.en_GB./am=!vutE9fCSVdws1JA_/d=0", 
		"Snapshot=t6.inf", 
		"Mode=HTML", 
		ITEMDATA, 
		"Name=count", "Value=0", ENDITEM, 
		LAST);

	web_custom_request("channel_2", 
		"URL=http://www.google.co.uk/finance/qs/channel?VER=8&SID=8634503B339E9EFA&RID=90606&AID=0&zx=tunaial2amyg&t=1", 
		"Method=POST", 
		"Resource=0", 
		"RecContentType=text/plain", 
		"Referer=http://www.google.co.uk/finance/_/js/a/b/rt=h/ver=rZztopK9dfE.en_GB./am=!vutE9fCSVdws1JA_/d=0", 
		"Snapshot=t7.inf", 
		"Mode=HTML", 
		"Body=count=1&ofs=0&req0_LON:RBS=&req0_LON:BKIE=&req0_LON:RAT=&req0_LON:BARC=&req0_LON:LLOY=&req0_LON:HSBA=&req0_LON:STAN=&req0_LON:LBS=&req0_LON:BNC=&req0_LON:OML=&req0_LON:AV=", 
		EXTRARES, 
		"Url=../images/cleardot.gif", "Referer=http://www.google.co.uk/finance?cid=14323395", ENDITEM, 
		"Url=../images/zippy_right.gif", "Referer=http://www.google.co.uk/finance?cid=14323395", ENDITEM, 
		"Url=../chart?cht=s&cid=14323395,7995352,6281494,11248216,8873270,5978765,6060617,730354,11544020,940632,15922947&p=1d&ei=GQ54VcHhHsWH8wOvhYG4Bg", "Referer=http://www.google.co.uk/finance?cid=14323395", ENDITEM, 
		LAST);

	web_add_cookie("id=224dd6830c020093||t=1432035374|et=730|cs=002213fd48fc870a6c146002f9; DOMAIN=ad-g.doubleclick.net");

	web_url("financials;fe=lon;ft=rbs;fm=large;dcopt=ist;myd=ad;sz=300x250;tile=1;dc_ref=http%3A%2F%2Ffinance.google.com%2Ffinance%3Fq%3DLON%3ARBS;domain=www.google.co.uk;ord=778343206", 
		"URL=http://ad-g.doubleclick.net/adi/com.gf.company/financials;fe=lon;ft=rbs;fm=large;dcopt=ist;myd=ad;sz=300x250;tile=1;dc_ref=http%3A%2F%2Ffinance.google.com%2Ffinance%3Fq%3DLON%3ARBS;domain=www.google.co.uk;ord=778343206?", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://www.google.co.uk/finance?cid=14323395", 
		"Snapshot=t8.inf", 
		"Mode=HTML", 
		EXTRARES, 
		"Url=http://pagead2.googlesyndication.com/pagead/images/x_button_blue2.png", "Referer=http://ad-g.doubleclick.net/adi/com.gf.company/financials;fe=lon;ft=rbs;fm=large;dcopt=ist;myd=ad;sz=300x250;tile=1;dc_ref=http%3A%2F%2Ffinance.google.com%2Ffinance%3Fq%3DLON%3ARBS;domain=www.google.co.uk;ord=778343206?", ENDITEM, 
		LAST);

	web_url("financials;fe=lon;ft=rbs;fm=large;dcopt=ist;myd=ad2;sz=33x33;tile=2;dc_ref=http%3A%2F%2Ffinance.google.com%2Ffinance%3Fq%3DLON%3ARBS;domain=www.google.co.uk;ord=778343206", 
		"URL=http://ad-g.doubleclick.net/adi/com.gf.company/financials;fe=lon;ft=rbs;fm=large;dcopt=ist;myd=ad2;sz=33x33;tile=2;dc_ref=http%3A%2F%2Ffinance.google.com%2Ffinance%3Fq%3DLON%3ARBS;domain=www.google.co.uk;ord=778343206?", 
		"Resource=0", 
		"RecContentType=text/html", 
		"Referer=http://www.google.co.uk/finance?cid=14323395", 
		"Snapshot=t9.inf", 
		"Mode=HTML", 
		LAST);

	return 0;
}
PrimaryIcomeSection()
{
	lr_start_transaction("11_MaleWithAPTC_25_Tax_Filer");
	
	web_reg_find("Text=eligibility for", LAST );	
	
	web_reg_save_param("p_o3synch_13", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_25_Tax_Filer_{dp_UserID};PC=ProcessScript.do_13");
	web_submit_data("ProcessScript.do_13",
		"Action=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t46.inf",
		"Mode=HTML",
		ITEMDATA,
		"Name=__o3id6", "Value=true", ENDITEM,
		"Name=__o3id0", "Value={executionID}", ENDITEM,
		"Name=__o3id1", "Value=1048692", ENDITEM,
		"Name=__o3id2", "Value=HealthCarePortal", ENDITEM,
		"Name=__o3id3", "Value=TaxFilersPage", ENDITEM,
		"Name=__o3id4", "Value=12", ENDITEM,
		"Name=__o3id5", "Value=true", ENDITEM,
		"Name=validate-save-and-exit", "Value=true", ENDITEM,
		"Name=iegExecutionID", "Value={executionID}", ENDITEM,
		"Name=scriptID", "Value=HealthCarePortal", ENDITEM,
		"Name=pageID", "Value=TaxFilersPage", ENDITEM,
		"Name=syncToken", "Value=12", ENDITEM,
		"Name=iegScriptVersion", "Value=V1", ENDITEM,
		"Name=iegScriptType", "Value=Portal", ENDITEM,
		"Name=forwardParams", "Value=&id={id}", ENDITEM,
		"Name=o3ctx", "Value=1048692", ENDITEM,
		"Name=__o3fmeta", "Value={\"__o3id2\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/scriptID\",\"\",\"IEG_ANSWERS\",false],\"__o3id1\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/o3ctx\",\"\",\"IEG_ANSWERS\",false],\"__o3id0\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/executionID\",\"\",\"IEG_ANSWERS\",false],\"__o3id6\":[\"/data/si/ACTION/answers$currentPageAnswers/ans/IEG_BOOLEAN/Person.isTaxFiler.0\",\"\",\"IEG_BOOLEAN\",false],\"__o3id5\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/validate-save-and-exit\",\"\",\"IEG_ANSWERS\",false],\"__o3id4\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/syncToken\",\"\",\"IEG_ANSWERS\",false],\"__o3id3\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/pageID\",\"\",\"IEG_ANSWERS\",false]}", ENDITEM,
		"Name=__o3fmeta_mandatory_data", "Value=", ENDITEM,
		"Name=__o3synch", "Value={p_o3synch_12}", ENDITEM,
		LAST);

	lr_end_transaction("11_MaleWithAPTC_25_Tax_Filer",LR_AUTO);

	lr_think_time(ithinktime);
	
	lr_start_transaction("11_MaleWithAPTC_26_Tax_Dependent");
	
	web_reg_save_param("p_o3synch_14", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	web_reg_find("Text=summary page", LAST );
	
	addDynaTraceHeader("NA=11_MaleWithAPTC_26_Tax_Dependent_{dp_UserID};PC=ProcessScript.do_14");
	web_custom_request("ProcessScript.do_14",
		"URL=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t47.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded; charset=UTF-8",
		"Body=wasPersonTabs=true&__o3id7=YN2&__o3id8=&__o3id0={executionID}&__o3id1=1048692&__o3id2=HealthCarePortal&__o3id3=TaxNotFilingTogetherPage&__o3id4=13&__o3id5=true&validate-save-and-exit=true&iegExecutionID={executionID}&scriptID=HealthCarePortal&pageID=TaxNotFilingTogetherPage&syncToken=13&iegScriptVersion=V1&iegScriptType=Portal&forwardParams=%26id%3D{id}&o3ctx=1048692&__o3fmeta=%7B%22__o3id8%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FPerson.isClaimedAsYourself%22%2C%22Is%20this%20person%20you%3F%22%2C%22IEG_YES_NO%22%2Cfalse%5D%2C%22__o3id7%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FPerson.isClaimedAsDependentOfExternalPerson%22%2C%22Is%20anyone%20outside%20this%20Application%20Group%20expected%20to%20enter%20{p_FN}%20as%20dependent%20on%20their%20tax%20return%3F%22%2C%22IEG_YES_NO%22%2Ctrue%5D%2C%22__o3id2%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FscriptID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfal"
		"se%5D%2C%22__o3id1%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fo3ctx%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id0%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FexecutionID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id6%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_STRING%2FPerson.TaxFilerRelationship.personID%22%2C%22%22%2C%22IEG_STRING%22%2Cfalse%5D%2C%22__o3id5%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fvalidate-save-and-exit%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id4%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FsyncToken%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id3%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FpageID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%7D&__o3fmeta_mandatory_data=__o3id8%2C__o3id7&__o3synch={p_o3synch_13}",
		LAST);

	lr_end_transaction("11_MaleWithAPTC_26_Tax_Dependent",LR_AUTO);

	lr_think_time(ithinktime);
	
	lr_start_transaction("11_MaleWithAPTC_27_Group_Summary");

	web_reg_find("Text=Group Income",  LAST );
	
	web_reg_save_param("p_o3synch_15", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_27_Group_Summary_{dp_UserID};PC=ProcessScript.do_15");
	web_submit_data("ProcessScript.do_15",
		"Action=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t48.inf",
		"Mode=HTML",
		ITEMDATA,
		"Name=__o3id0", "Value={executionID}", ENDITEM,
		"Name=__o3id1", "Value=1048692", ENDITEM,
		"Name=__o3id2", "Value=HealthCarePortal", ENDITEM,
		"Name=__o3id3", "Value=HouseholdSummary2", ENDITEM,
		"Name=__o3id4", "Value=14", ENDITEM,
		"Name=__o3id5", "Value=true", ENDITEM,
		"Name=validate-save-and-exit", "Value=true", ENDITEM,
		"Name=iegExecutionID", "Value={executionID}", ENDITEM,
		"Name=scriptID", "Value=HealthCarePortal", ENDITEM,
		"Name=pageID", "Value=HouseholdSummary2", ENDITEM,
		"Name=syncToken", "Value=14", ENDITEM,
		"Name=iegScriptVersion", "Value=V1", ENDITEM,
		"Name=iegScriptType", "Value=Portal", ENDITEM,
		"Name=forwardParams", "Value=&id={id}", ENDITEM,
		"Name=o3ctx", "Value=1048692", ENDITEM,
		"Name=__o3fmeta", "Value={\"__o3id2\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/scriptID\",\"\",\"IEG_ANSWERS\",false],\"__o3id1\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/o3ctx\",\"\",\"IEG_ANSWERS\",false],\"__o3id0\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/executionID\",\"\",\"IEG_ANSWERS\",false],\"__o3id5\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/validate-save-and-exit\",\"\",\"IEG_ANSWERS\",false],\"__o3id4\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/syncToken\",\"\",\"IEG_ANSWERS\",false],\"__o3id3\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/pageID\",\"\",\"IEG_ANSWERS\",false]}", ENDITEM,
		"Name=__o3fmeta_mandatory_data", "Value=", ENDITEM,
		"Name=__o3synch", "Value={p_o3synch_14}", ENDITEM,
		LAST);

	lr_end_transaction("11_MaleWithAPTC_27_Group_Summary",LR_AUTO);

	lr_think_time(ithinktime);

	lr_start_transaction("11_MaleWithAPTC_28_Group_Income");
	
	web_reg_save_param("p_o3synch_16", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_28_Group_Income_{dp_UserID};PC=ProcessScript.do_16");
	web_submit_data("ProcessScript.do_16",
		"Action=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t49.inf",
		"Mode=HTML",
		ITEMDATA,
		"Name=__o3id0", "Value={executionID}", ENDITEM,
		"Name=__o3id1", "Value=1048692", ENDITEM,
		"Name=__o3id2", "Value=HealthCarePortal", ENDITEM,
		"Name=__o3id3", "Value=IncomeBreaker", ENDITEM,
		"Name=__o3id4", "Value=15", ENDITEM,
		"Name=__o3id5", "Value=true", ENDITEM,
		"Name=validate-save-and-exit", "Value=true", ENDITEM,
		"Name=iegExecutionID", "Value={executionID}", ENDITEM,
		"Name=scriptID", "Value=HealthCarePortal", ENDITEM,
		"Name=pageID", "Value=IncomeBreaker", ENDITEM,
		"Name=syncToken", "Value=15", ENDITEM,
		"Name=iegScriptVersion", "Value=V1", ENDITEM,
		"Name=iegScriptType", "Value=Portal", ENDITEM,
		"Name=forwardParams", "Value=&id={id}", ENDITEM,
		"Name=o3ctx", "Value=1048692", ENDITEM,
		"Name=__o3fmeta", "Value={\"__o3id2\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/scriptID\",\"\",\"IEG_ANSWERS\",false],\"__o3id1\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/o3ctx\",\"\",\"IEG_ANSWERS\",false],\"__o3id0\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/executionID\",\"\",\"IEG_ANSWERS\",false],\"__o3id5\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/validate-save-and-exit\",\"\",\"IEG_ANSWERS\",false],\"__o3id4\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/syncToken\",\"\",\"IEG_ANSWERS\",false],\"__o3id3\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/pageID\",\"\",\"IEG_ANSWERS\",false]}", ENDITEM,
		"Name=__o3fmeta_mandatory_data", "Value=", ENDITEM,
		"Name=__o3synch", "Value={p_o3synch_15}", ENDITEM,
		LAST);

	lr_end_transaction("11_MaleWithAPTC_28_Group_Income",LR_AUTO);

	lr_think_time(ithinktime);

	lr_start_transaction("11_MaleWithAPTC_29_Income");

	web_reg_find("Text=Income Type",  LAST );
	
	web_reg_save_param("p_o3synch_17", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_29_Income_{dp_UserID};PC=ProcessScript.do_17");
	web_custom_request("ProcessScript.do_17",
		"URL=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t50.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded; charset=UTF-8",
		"Body=wasPersonTabs=true&__o3id6=YN1&__o3id0={executionID}&__o3id1=1048692&__o3id2=HealthCarePortal&__o3id3=AnyManualIncomePage&__o3id4=16&__o3id5=true&validate-save-and-exit=true&iegExecutionID={executionID}&scriptID=HealthCarePortal&pageID=AnyManualIncomePage&syncToken=16&iegScriptVersion=V1&iegScriptType=Portal&forwardParams=%26id%3D{id}&o3ctx=1048692&__o3fmeta=%7B%22__o3id2%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FscriptID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id1%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fo3ctx%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id0%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FexecutionID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id6%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FhasManualIncome%22%2C%22Does%20{p_FN}%20have%20any%20income%3F%22%2C%22IEG_YES_NO%22%2Ctrue%5D%2C%22__o3id5%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%"
		"24currentPageAnswers%2Fhf%2Fvalidate-save-and-exit%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id4%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FsyncToken%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id3%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FpageID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%7D&__o3fmeta_mandatory_data=__o3id6&__o3synch={p_o3synch_16}",
		LAST);

	lr_end_transaction("11_MaleWithAPTC_29_Income",LR_AUTO);

	lr_think_time(ithinktime);

	lr_start_transaction("11_MaleWithAPTC_30_Income_Details");

	web_reg_find("Text=Form 1040", LAST );
	
	web_reg_save_param("p_o3synch_18", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_30_Income_Details_{dp_UserID};PC=ProcessScript.do_18");
	web_custom_request("ProcessScript.do_18",
		"URL=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t51.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded; charset=UTF-8",
		"Body=wasPersonTabs=true&__o3id6=HCIT26001&__o3id7=TFT1&__o3id8=ABCD%20Inc&__o3id9=28000&__o3ida=&__o3idb=FC7&__o3idc=2012-04-10&__o3idd=&__o3ide=YN2&__o3id0={executionID}&__o3id1=1048692&__o3id2=HealthCarePortal&__o3id3=DCHXManualIncomePage&__o3id4=17&__o3id5=true&validate-save-and-exit=true&iegExecutionID={executionID}&scriptID=HealthCarePortal&pageID=DCHXManualIncomePage&syncToken=17&iegScriptVersion=V1&iegScriptType=Portal&forwardParams=%26id%3D{id}&o3ctx=1048692&__o3fmeta=%7B%22__o3id9%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_MONEY%2FIncomeItem.amount%22%2C%22Amount%20(Before%20taxes%20and%20deductions)%22%2C%22IEG_MONEY%22%2Ctrue%5D%2C%22__o3id8%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_STRING%2FIncomeItem.employer%22%2C%22What%20is%20the%20name%20of%20your%20Employer%3F%22%2C%22IEG_STRING%22%2Cfalse%5D%2C%22__o3id7%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FTAXFORM_TYPE%2FIncomeItem.taxform%22%2C%22Please%"
		"20indicate%20which%20tax%20form%20is%20used%20to%20report%20this%20income.%22%2C%22TAXFORM_TYPE%22%2Cfalse%5D%2C%22__o3id2%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FscriptID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id1%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fo3ctx%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id0%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FexecutionID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id6%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FINCOME_TYPE%2FIncomeItem.incomeType%22%2C%22Income%20Type%22%2C%22INCOME_TYPE%22%2Ctrue%5D%2C%22__o3id5%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fvalidate-save-and-exit%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id4%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FsyncToken%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id3%22%3A%5B%22%2Fdata%2Fsi%2FAC"
		"TION%2Fanswers%24currentPageAnswers%2Fhf%2FpageID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3ide%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FhasMoreManualIncome%22%2C%22Does%20{p_FN}%20have%20any%20more%20income%3F%22%2C%22IEG_YES_NO%22%2Ctrue%5D%2C%22__o3idd%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_DATE%2FIncomeItem.endDate%22%2C%22End%20Date%22%2C%22IEG_DATE%22%2Cfalse%5D%2C%22__o3idc%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_DATE%2FIncomeItem.startDate%22%2C%22Start%20Date%22%2C%22IEG_DATE%22%2Ctrue%5D%2C%22__o3idb%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FFREQUENCY_CODE%2FIncomeItem.frequency%22%2C%22Frequency%22%2C%22FREQUENCY_CODE%22%2Ctrue%5D%2C%22__o3ida%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_MONEY%2FIncomeItem.taxExemptAmount%22%2C%22What%20portion%20of%20this%20amount%20is%20tax%20exempt%3F%22%2C%22IEG_MONEY%22%2Cfa"
		"lse%5D%7D&__o3fmeta_mandatory_data=__o3id9%2C__o3id6%2C__o3ide%2C__o3idc%2C__o3idb&__o3synch={p_o3synch_17}",
		LAST);

	lr_end_transaction("11_MaleWithAPTC_30_Income_Details",LR_AUTO);

	lr_think_time(ithinktime);

	lr_start_transaction("11_MaleWithAPTC_31_Income_Adjustment");

	web_reg_find("Text=Adjustments",  LAST );	
	
	web_reg_save_param("p_o3synch_19", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_31_Income_Adjustment_{dp_UserID};PC=ProcessScript.do_19");
	web_custom_request("ProcessScript.do_19",
		"URL=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t52.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded; charset=UTF-8",
		"Body=wasPersonTabs=true&__o3id6=YN2&__o3id0={executionID}&__o3id1=1048692&__o3id2=HealthCarePortal&__o3id3=AnyIncomeDeductionPage&__o3id4=18&__o3id5=true&validate-save-and-exit=true&iegExecutionID={executionID}&scriptID=HealthCarePortal&pageID=AnyIncomeDeductionPage&syncToken=18&iegScriptVersion=V1&iegScriptType=Portal&forwardParams=%26id%3D{id}&o3ctx=1048692&__o3fmeta=%7B%22__o3id2%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FscriptID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id1%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fo3ctx%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id0%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FexecutionID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id6%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FanyDeductableItem%22%2C%22Does%20{p_FN}%20have%20any%20of%20the%20adjustments%20to%20income%20that%20are%20listed%20in%20Form%201040%2C%20lines%2"
		"023%20to%2035%3F%22%2C%22IEG_YES_NO%22%2Cfalse%5D%2C%22__o3id5%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fvalidate-save-and-exit%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id4%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FsyncToken%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id3%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FpageID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%7D&__o3fmeta_mandatory_data=&__o3synch={p_o3synch_18}",
		LAST);

	lr_end_transaction("11_MaleWithAPTC_31_Income_Adjustment",LR_AUTO);

	lr_think_time(ithinktime);
	
	lr_start_transaction("11_MaleWithAPTC_32_Annual_Income");
	
	web_reg_save_param("p_o3synch_20", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_32_Annual_Income_{dp_UserID};PC=ProcessScript.do_20");
	web_custom_request("ProcessScript.do_20",
		"URL=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t53.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded; charset=UTF-8",
		"Body=wasPersonTabs=true&__o3id6=YN1&__o3id7=28%2C000.00&__o3id0={executionID}&__o3id1=1048692&__o3id2=HealthCarePortal&__o3id3=ProjectedAnnualIncomePage&__o3id4=19&__o3id5=true&validate-save-and-exit=true&iegExecutionID={executionID}&scriptID=HealthCarePortal&pageID=ProjectedAnnualIncomePage&syncToken=19&iegScriptVersion=V1&iegScriptType=Portal&forwardParams=%26id%3D{id}&o3ctx=1048692&__o3fmeta=%7B%22__o3id7%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_MONEY%2FProjectedAnnualIncome.projectedIncome%22%2C%22What%20do%20you%20expect%20the%20annual%20income%20to%20be%20in%202015%3F%22%2C%22IEG_MONEY%22%2Cfalse%5D%2C%22__o3id2%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FscriptID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id1%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fo3ctx%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id0%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FexecutionID%22%2C%22%2"
		"2%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id6%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FPerson.isAnnualIncomeCorrect%22%2C%22Is%20this%20what%20you%20expect%20{p_FN}'s%20annual%20income%20to%20be%20in%202015%3F%22%2C%22IEG_YES_NO%22%2Ctrue%5D%2C%22__o3id5%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fvalidate-save-and-exit%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id4%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FsyncToken%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id3%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FpageID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%7D&__o3fmeta_mandatory_data=__o3id6&__o3synch={p_o3synch_19}",
		LAST);
	
	lr_end_transaction("11_MaleWithAPTC_32_Annual_Income",LR_AUTO);

	lr_think_time(ithinktime);

	lr_start_transaction("11_MaleWithAPTC_33_Additional_Info");
	
	web_reg_save_param("p_o3synch_21", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_33_Additional_Info_1_{dp_UserID};PC=ProcessScript.do_21");
	web_submit_data("ProcessScript.do_21",
		"Action=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t54.inf",
		"Mode=HTML",
		ITEMDATA,
		"Name=__o3id0", "Value={executionID}", ENDITEM,
		"Name=__o3id1", "Value=1048692", ENDITEM,
		"Name=__o3id2", "Value=HealthCarePortal", ENDITEM,
		"Name=__o3id3", "Value=AdditionalHouseholdBreaker", ENDITEM,
		"Name=__o3id4", "Value=20", ENDITEM,
		"Name=__o3id5", "Value=true", ENDITEM,
		"Name=validate-save-and-exit", "Value=true", ENDITEM,
		"Name=iegExecutionID", "Value={executionID}", ENDITEM,
		"Name=scriptID", "Value=HealthCarePortal", ENDITEM,
		"Name=pageID", "Value=AdditionalHouseholdBreaker", ENDITEM,
		"Name=syncToken", "Value=20", ENDITEM,
		"Name=iegScriptVersion", "Value=V1", ENDITEM,
		"Name=iegScriptType", "Value=Portal", ENDITEM,
		"Name=forwardParams", "Value=&id={id}", ENDITEM,
		"Name=o3ctx", "Value=1048692", ENDITEM,
		"Name=__o3fmeta", "Value={\"__o3id2\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/scriptID\",\"\",\"IEG_ANSWERS\",false],\"__o3id1\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/o3ctx\",\"\",\"IEG_ANSWERS\",false],\"__o3id0\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/executionID\",\"\",\"IEG_ANSWERS\",false],\"__o3id5\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/validate-save-and-exit\",\"\",\"IEG_ANSWERS\",false],\"__o3id4\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/syncToken\",\"\",\"IEG_ANSWERS\",false],\"__o3id3\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/pageID\",\"\",\"IEG_ANSWERS\",false]}", ENDITEM,
		"Name=__o3fmeta_mandatory_data", "Value=", ENDITEM,
		"Name=__o3synch", "Value={p_o3synch_20}", ENDITEM,
		LAST);
	
	web_reg_save_param("p_o3synch_22", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_33_Additional_Info_2_{dp_UserID};PC=ProcessScript.do_22");
	web_submit_data("ProcessScript.do_22",
		"Action=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t55.inf",
		"Mode=HTML",
		ITEMDATA,
		"Name=__o3id0", "Value={executionID}", ENDITEM,
		"Name=__o3id1", "Value=1048692", ENDITEM,
		"Name=__o3id2", "Value=HealthCarePortal", ENDITEM,
		"Name=__o3id3", "Value=AdditionalIAInfromationPage", ENDITEM,
		"Name=__o3id4", "Value=21", ENDITEM,
		"Name=__o3id5", "Value=true", ENDITEM,
		"Name=validate-save-and-exit", "Value=true", ENDITEM,
		"Name=iegExecutionID", "Value={executionID}", ENDITEM,
		"Name=scriptID", "Value=HealthCarePortal", ENDITEM,
		"Name=pageID", "Value=AdditionalIAInfromationPage", ENDITEM,
		"Name=syncToken", "Value=21", ENDITEM,
		"Name=iegScriptVersion", "Value=V1", ENDITEM,
		"Name=iegScriptType", "Value=Portal", ENDITEM,
		"Name=forwardParams", "Value=&id={id}", ENDITEM,
		"Name=o3ctx", "Value=1048692", ENDITEM,
		"Name=__o3fmeta", "Value={\"__o3id7\":[\"/data/si/ACTION/answers$currentPageAnswers/ans/IEG_BOOLEAN/Person.isEnrolledOrEligibleForESC.0\",\"\",\"IEG_BOOLEAN\",false],\"__o3id2\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/scriptID\",\"\",\"IEG_ANSWERS\",false],\"__o3id1\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/o3ctx\",\"\",\"IEG_ANSWERS\",false],\"__o3id0\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/executionID\",\"\",\"IEG_ANSWERS\",false],\"__o3id6\":[\"/data/si/ACTION/answers$currentPageAnswers/ans/IEG_BOOLEAN/Person.isIncarcerated.0\",\"\",\"IEG_BOOLEAN\",false],\"__o3id5\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/validate-save-and-exit\",\"\",\"IEG_ANSWERS\",false],\"__o3id4\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/syncToken\",\"\",\"IEG_ANSWERS\",false],\"__o3id3\":[\"/data/si/ACTION/answers$currentPageAnswers/hf/pageID\",\"\",\"IEG_ANSWERS\",false]}", ENDITEM,
		"Name=__o3fmeta_mandatory_data", "Value=", ENDITEM,
		"Name=__o3synch", "Value={p_o3synch_21}", ENDITEM,
		LAST);

	lr_end_transaction("11_MaleWithAPTC_33_Additional_Info",LR_AUTO);

	lr_think_time(ithinktime);

	lr_start_transaction("11_MaleWithAPTC_34_Disabilities");
	
	web_reg_save_param("p_o3synch_23", "LB=__o3synch\" type=\"hidden\" value=\"", "RB=\"/>", "NotFound=Error", "Search=ALL", LAST);

	addDynaTraceHeader("NA=11_MaleWithAPTC_34_Disabilities_{dp_UserID};PC=ProcessScript.do_23");
	web_custom_request("ProcessScript.do_23",
		"URL=https://{p_Webapp_URL}/CitizenPortal/ieg/ProcessScript.do?executionID={executionID}",
		"Method=POST",
		"TargetFrame=",
		"Resource=0",
		"RecContentType=text/html",
		"Referer=https://{p_Webapp_URL}/CitizenPortal/ieg/Screening.do?executionID={executionID}&id={id}&o3ctx=1048688",
		"Snapshot=t56.inf",
		"Mode=HTML",
		"EncType=application/x-www-form-urlencoded; charset=UTF-8",
		"Body=__o3id6=YN2&__o3id8=YN2&__o3ida=YN2&__o3idc=YN2&__o3id0={executionID}&__o3id1=1048692&__o3id2=HealthCarePortal&__o3id3=AdditionalInfoForAllPage&__o3id4=22&__o3id5=true&validate-save-and-exit=true&iegExecutionID={executionID}&scriptID=HealthCarePortal&pageID=AdditionalInfoForAllPage&syncToken=22&iegScriptVersion=V1&iegScriptType=Portal&forwardParams=%26id%3D{id}&o3ctx=1048692&__o3fmeta=%7B%22__o3id9%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_BOOLEAN%2FPerson.isBlind.0%22%2C%22%22%2C%22IEG_BOOLEAN%22%2Cfalse%5D%2C%22__o3id8%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FanyoneBlind%22%2C%22Is%20anyone%20in%20the%20Application%20Group%20blind%3F%22%2C%22IEG_YES_NO%22%2Ctrue%5D%2C%22__o3id7%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_BOOLEAN%2FPerson.haveMedicalBill.0%22%2C%22%22%2C%22IEG_BOOLEAN%22%2Cfalse%5D%2C%22__o3id2%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FscriptID%22%2"
		"C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id1%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fo3ctx%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id0%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FexecutionID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id6%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FanyoneHasUnpaidMedicalBills%22%2C%22Does%20anyone%20in%20the%20household%20need%20help%20paying%20for%20medical%20bills%20from%20the%20last%203%20months%3F%22%2C%22IEG_YES_NO%22%2Cfalse%5D%2C%22__o3id5%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2Fvalidate-save-and-exit%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id4%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FsyncToken%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%22__o3id3%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fhf%2FpageID%22%2C%22%22%2C%22IEG_ANSWERS%22%2Cfalse%5D%2C%"
		"22__o3idd%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_BOOLEAN%2FPerson.hasLongTermCare.0%22%2C%22%22%2C%22IEG_BOOLEAN%22%2Cfalse%5D%2C%22__o3idc%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FlongTermCare%22%2C%22Does%20anyone%20in%20the%20Application%20Group%20need%20help%20with%20activities%20of%20daily%20living%20(i.e.%20bathing%2C%20eating)%20through%20home%20health%20services%2C%20a%20nursing%20home%2C%20or%20other%20medical%20facility%3F%22%2C%22IEG_YES_NO%22%2Ctrue%5D%2C%22__o3idb%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_BOOLEAN%2FPerson.isDisabled.0%22%2C%22%22%2C%22IEG_BOOLEAN%22%2Cfalse%5D%2C%22__o3ida%22%3A%5B%22%2Fdata%2Fsi%2FACTION%2Fanswers%24currentPageAnswers%2Fans%2FIEG_YES_NO%2FanyoneDisabled%22%2C%22Is%20anyone%20in%20the%20Application%20Group%20disabled%3F%22%2C%22IEG_YES_NO%22%2Ctrue%5D%7D&__o3fmeta_mandatory_data=__o3id8%2C__o3idc%2C__o3ida&__o3synch={p_o3synch_22}",
		LAST);
	
	lr_end_transaction("11_MaleWithAPTC_34_Disabilities",LR_AUTO);

	lr_think_time(ithinktime);
	
	return 0;
}
Beispiel #10
0
get_google_short_url(){
    
	// About this call: https://developers.google.com/url-shortener/v1/getting_started
	// Forum on this:   https://groups.google.com/forum/#!forum/google-url-shortener

	int rc=LR_PASS;
	int	bURLtoShorten_success=LR_PASS;

	rc=get_long_url_to_shorten();
	if( rc != LR_PASS ){ return rc; } // No input data to process.
	
	// Define the URL Shortener API Scope to Google:
	lr_save_string("https://www.googleapis.com/auth/urlshortener","pServiceScope");
					// Other Google API FAQ scopes: https://developers.google.com/gdata/faq#AuthScopes

	sprintf(       tempString1, "%s_access", lr_eval_string("{pTransSequence}") );
	lr_save_string(tempString1,"pTransName");
	rc=get_google_access_token();
	if( rc != LR_PASS ){ return rc; } // No input data to process.

	if( stricmp("NoOp",LPCSTR_RunType ) == FOUND ){ // "NoOp" or "NOOP" specified in Run-time Attribute "RunType" or command line option "-RunType".
		wi_startPrintingInfo();
		lr_output_message(">> RunType=\"%s. JWT=%s."
				,LPCSTR_SaveImageYN
				,lr_eval_string("{pJWTAssertion}")
				);
		wi_stopPrinting();
		return LR_PASS;
	}

		// Using parameter file "URLtoShorten.dat" containing parmeter "pURLtoShorten":
		web_reg_save_param_ex("ParamName=pLongURL","LB=\"longUrl\": \"","RB=\"",SEARCH_FILTERS,"Scope=body",LAST);	// the long  URL input to API server.
		web_reg_save_param_ex("ParamName=pShortURL","LB=\"id\": \"","RB=\"",SEARCH_FILTERS,"Scope=body",LAST); 		// the short URL output from server.

		// WARNING: Google does not check if there is a short code already generated for the URL before generating another one (which bit.ly does).
		web_add_header("Authorization", lr_eval_string("Bearer {pAccessToken}"));
	    web_add_header("Content-Type", "application/json");

		// TODO: 18. If you want to, change the transaction name suffix for shortenend url requests.
		sprintf( 	   tempString1, "%s_2shorturl", lr_eval_string("{pTransSequence}") );
		lr_save_string(tempString1,"pTransName");
	    wi_start_transaction();
	    web_custom_request("Shorten",
                       "URL=https://www.googleapis.com/urlshortener/v1/url",
                       "Method=POST",
                       "Body={\"longUrl\": \"{pURLtoShorten}\"}",
                       LAST);    
					// This code is the C equivalent of the Java at https://developers.google.com/api-client-library/java/apis/urlshortener/v1    
		// Google docs say output should look like this:
		//	{
		//		"kind": "urlshortener#url",\n
		//		"id": "http://goo.gl/jQVbkn",\n
		//		"longUrl": "http://www.hp.com/"\n
		//	}

		rc = wi_end_transaction();

		if( rc == LR_PASS ){
			bURLtoShorten_success=LR_PASS;
			nURLtoShorten_done++; // increment.
		}
		
		wi_startPrintingDebug();
	    lr_output_message(">> done=%d LongURL=%s to pShortURL=%s, seconds=%8.2f under %s."
		        ,nURLtoShorten_done 
				,lr_eval_string("{pLongURL}")
				,lr_eval_string("{pShortURL}")
				,floatHttpMilliseconds
				,lr_eval_string("{pRunConditions}")
				);
		wi_stopPrinting();
	
	#ifdef USE_VTS
	update_shorturl_in_VTS();
	#endif // USE_VTS

	#ifdef GEN_QR
	if( bURLtoShorten_success == LR_PASS ){
		// TODO: 19. Customize your own transaction name for calling get_google_short_url_qrcode().
		lr_save_string("get_google_short_url_qrcode","pTransName"); 
		get_google_short_url_qrcode(); // using pShortURL and pImageFilePath, depending on command flag LPCSTR_SaveImageYN.
	}
	#endif // GEN_QR

	return rc;
} // get_google_short_url()
Beispiel #11
0
Action()
{
	web_set_proxy("127.0.0.1:8888");  //Set Proxy for test
	
	web_add_header("Content-Type","text/xml; charset=utf-8");
	//web_add_header("Accept","application/soap+xml, application/dime,multipart/related, text/*");
	//web_add_header("Cache-Control","no-cache");
	//web_add_header("Pragma","no-cache");
	web_add_header("SOAPAction", "\"\"");

	web_custom_request("AgentServer",
	"URL=http://127.0.0.1:9091/yys-test-upload/services/ElectronInvoiceSer",
	"Method=POST",
	"Resource=0",
	"RecContentType=text/xml",
	//"Mode=HTML",
	"EncType=text/xml; charset=utf-8",
	"Body="
	"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:unib=\"http://ws.chinaunicom.cn/ElectronInvoiceSer/unibssBody\" xmlns:unib1=\"http://ws.chinaunicom.cn/unibssHead\" xmlns:cre=\"http://ws.chinaunicom.cn/ElectronInvoiceSer/unibssBody/createElectronInvoiceReq\" xmlns:unib2=\""
	"http://ws.chinaunicom.cn/unibssAttached\">"
	   "<soapenv:Header/>"
	   "<soapenv:Body>"
		  "<unib:CREATE_ELECTRON_INVOICE_INPUT>"
			 "<unib1:UNI_BSS_HEAD>"
				"<unib1:ORIG_DOMAIN>PTIS</unib1:ORIG_DOMAIN>"
				"<unib1:SERVICE_NAME>ElectronInvoiceSer</unib1:SERVICE_NAME>"
				"<unib1:OPERATE_NAME>checkElectronInvoice</unib1:OPERATE_NAME>"
				"<unib1:ACTION_CODE>0</unib1:ACTION_CODE>"
				"<unib1:ACTION_RELATION>0</unib1:ACTION_RELATION>"
				"<unib1:ROUTING>"
				   "<unib1:ROUTE_TYPE>00</unib1:ROUTE_TYPE>"
				   "<unib1:ROUTE_VALUE>11</unib1:ROUTE_VALUE>"
				"</unib1:ROUTING>"
				"<unib1:PROC_ID>lyl001</unib1:PROC_ID>"
				"<unib1:TRANS_IDO>lyl001</unib1:TRANS_IDO>"
				"<!--Optional:-->"
				"<unib1:TRANS_IDH></unib1:TRANS_IDH>"
				"<unib1:PROCESS_TIME>20160512114537</unib1:PROCESS_TIME>"
				"<!--Optional:-->"
				"<unib1:RESPONSE>"
				   "<unib1:RSP_TYPE>1</unib1:RSP_TYPE>"
				   "<unib1:RSP_CODE>1111</unib1:RSP_CODE>"
				   "<unib1:RSP_DESC></unib1:RSP_DESC>"
				"</unib1:RESPONSE>"
				"<unib1:COM_BUS_INFO>"
				   "<unib1:OPER_ID>00029345sunhong</unib1:OPER_ID>"
				   "<!--Optional:-->"
				   "<unib1:PROVINCE_CODE>00</unib1:PROVINCE_CODE>"
				   "<!--Optional:-->"
				   "<unib1:EPARCHY_CODE>988988</unib1:EPARCHY_CODE>"
				   "<!--Optional:-->"
				   "<unib1:CITY_CODE></unib1:CITY_CODE>"
				   "<unib1:CHANNEL_ID></unib1:CHANNEL_ID>"
				   "<unib1:CHANNEL_TYPE>7777777</unib1:CHANNEL_TYPE>"
				   "<unib1:ACCESS_TYPE>11</unib1:ACCESS_TYPE>"
				   "<!--Optional:-->"
				   "<unib1:ORDER_TYPE>22</unib1:ORDER_TYPE>"
				"</unib1:COM_BUS_INFO>"
				"<!--Optional:-->"
				"<unib1:SP_RESERVE>"
				   "<!--Optional:-->"
				   "<unib1:TRANS_IDC>ECIP0002seq00001</unib1:TRANS_IDC>"
				   "<!--Optional:-->"
				   "<unib1:CUTOFFDAY>20080608</unib1:CUTOFFDAY>"
				   "<unib1:OSNDUNS>2222</unib1:OSNDUNS>"
				   "<!--Optional:-->"
				   "<unib1:HSNDUNS>1100</unib1:HSNDUNS>"
				   "<!--Optional:-->"
				   "<unib1:CONV_ID>ECIP0002seq00001200806081200111</unib1:CONV_ID>"
				"</unib1:SP_RESERVE>"
				"<unib1:TEST_FLAG>0</unib1:TEST_FLAG>"
				"<unib1:MSG_SENDER>1100</unib1:MSG_SENDER>"
				"<unib1:MSG_RECEIVER>1101</unib1:MSG_RECEIVER>"
			 "</unib1:UNI_BSS_HEAD>"
			 "<unib:UNI_BSS_BODY>"
				"<cre:CREATE_ELECTRON_INVOICE_REQ>"
				   "<cre:INVOICE_CODE>PFJFUVVFU1Q+PE9SSUdJTkFMPlBGSkZVVlZGVTFSZlEwOU5UVTlPWDBaUVMwb2dZMnhoYzNNOUoxSkZVVlZGVTFSZlEwOU5UVTlPWDBaUVMwb25QanhDV1RZK1BDOUNXVFkrUEVKWk5UNDhMMEpaTlQ0OFIwMUdYMDFEUHVhZnMrZTFydWExcVR3dlIwMUdYMDFEUGp4Q1dUUStQQzlDV1RRK1BGaFRSbDlPVTFKVFFrZytNek13T1RBeE56QTBOak01T0RRNVBDOVlVMFpmVGxOU1UwSklQanhZVTBaZlJGcEVTRDdscm9IbXM2TGx1SUxwcTVqbWxyRGxqTHJsaDR6a3VwSG90Njg1T09XUHR5d3dOVGMwTFRJM09ESXhNakV6UEM5WVUwWmZSRnBFU0Q0OFFsa3pQand2UWxrelBqeENXVEkrUEM5Q1dUSStQRUpaTVQ0eFBDOUNXVEUrUEVwVFNFbytNVEUzUEM5S1UwaEtQanhGVjAwK1BDRmJRMFJCVkVGYlhWMCtQQzlGVjAwK1BFSmFQdWFjdXVXWnFPZThsdVdQdHpvME9Ua3dPVGs1TVRVME16SThMMEphUGp4TFVGSlJQakl3TVRZd01qSXlNVFkwTnpVM1BDOUxVRkpSUGp4S1VVSklQalE1T1RBNU9Ua3dNREF6T0R3dlNsRkNTRDQ4UjAxR1gwNVRVbE5DU0Q0OEwwZE5SbDlPVTFKVFFrZytQRXBaVFQ0d09URTVNemsyTXpjMk9EazRNREk1TXpnMU16d3ZTbGxOUGp4SFRVWmZVMHBJUGpFMU9USXdNRFkyTXpRMUxERTRPVFkwTnpnM09EYzJQQzlIVFVaZlUwcElQanhHVUZSZldrZytQQzlHVUZSZldrZytQRVpRWDAxWFBqd2hXME5FUVZSQld6QXpMemMrTWpRME5UZzFOUzg0UERJOE1qUTRMVEU4TURndk1qa3JMemdyTVNvMUx6VXJNRFlxTlM4NExURXhPQ294TXprd01UZzVOand2Tno0eU5EUTFPRFUxTHpnOE1qd3lNekUrTXlzdE9UZ3lMek00T1R3MUtpbytQaW93TVNzMU5ERXhPUzA1THprd01pODBQRFpkWFQ0OEwwWlFYMDFYUGp4R1VFWk5QakV5TXpRd01EazBPRGN4TmpZd09UUTROekUyUEM5R1VFWk5QanhJV1V4WVBqQThMMGhaVEZnK1BFdFFURmcrTUR3dlMxQk1XRDQ4UzFCU1BrRkpYMUZCWDB0UlBDOUxVRkkrUEZOTFVqNDhMMU5MVWo0OFJraFNQand2UmtoU1BqeFlVMFpmV1VoYVNENDJNVEF4TVRneE9URTVNVGt4T1RFNU1UazhMMWhUUmw5WlNGcElQanhHVUY5SVRUNDJNRGswT0RjeE5qd3ZSbEJmU0UwK1BFWlFVVkZNVTBnK2JIbHNNVEl6TkRVMk56ZzVNRGs0TnpZMU5ETXlNVEk4TDBaUVVWRk1VMGcrUEVaUVgwUk5QakV5TXpRd01EazBPRGN4Tmp3dlJsQmZSRTArUEVkTlJsOUVXa1JJUGp3dlIwMUdYMFJhUkVnK1BFZE5SbDlFV2xsWVBtWmxibWRtWVc1ZmVXRnVRREV6T1M1amIyMDhMMGROUmw5RVdsbFlQanhZVTBaZlRVTSs1TGl0NVp1OTZJR1U1WkNJNTcyUjU3dWM2WUNhNUwraDVweUo2Wm1RNVlXczVZKzQ1YTZCNXJPaTViaUM1WWlHNVlXczVZKzRQQzlZVTBaZlRVTStQRWhLU2tVK01UQXdQQzlJU2twRlBqeFpSbEJmUkUwK1BDOVpSbEJmUkUwK1BFaEtVMFUrS2p3dlNFcFRSVDQ4UWxrM1Bqd3ZRbGszUGp4WlJsQmZTRTArUEM5WlJsQmZTRTArUEVKWk9ENDhMMEpaT0Q0OFFsazVQand2UWxrNVBqeENXVEV3UGp3dlFsa3hNRDQ4UjAxR1gxbElXa2crUEM5SFRVWmZXVWhhU0Q0OFEwOU5UVTlPWDBaUVMwcGZXRTFZV0ZNZ1kyeGhjM005SjBOUFRVMVBUbDlHVUV0S1gxaE5XRmduSUhOcGVtVTlKekVuUGp4RFQwMU5UMDVmUmxCTFNsOVlUVmhZUGp4Q1dUWStQQzlDV1RZK1BFSlpOVDQ4TDBKWk5UNDhRbGswUGp3dlFsazBQanhUUlQ0cVBDOVRSVDQ4UWxrelBqd3ZRbGt6UGp4Q1dUSStQQzlDV1RJK1BFSlpNVDQ4TDBKWk1UNDhSMGRZU0Q0OEwwZEhXRWcrUEZOTVBpbzhMMU5NUGp4WVRWTk1Qand2V0UxVFRENDhSRmMrUEM5RVZ6NDhSbEJJV0ZvK01Ed3ZSbEJJV0ZvK1BGaE5SRW8rUEM5WVRVUktQanhZVFUxRFBqd2hXME5FUVZSQlcrYVpydW1BbXVpMWhPbUhrVjFkUGp3dldFMU5RejQ4V0UxS1JUNHhQQzlZVFVwRlBqd3ZRMDlOVFU5T1gwWlFTMHBmV0UxWVdENDhMME5QVFUxUFRsOUdVRXRLWDFoTldGaFRQand2VWtWUlZVVlRWRjlEVDAxTlQwNWZSbEJMU2o0PTwvT1JJR0lOQUw+PFNFUklBTE5VTUJFUi8+PFNJR05BVFVSRS8+PC9SRVFVRVNUPg==</cre:INVOICE_CODE>"
				   "<!--Zero or more repetitions:-->"
				   "<cre:PARA>"
					  "<cre:PARA_ID></cre:PARA_ID>"
					  "<cre:PARA_VALUE></cre:PARA_VALUE>"
				   "</cre:PARA>"
				"</cre:CREATE_ELECTRON_INVOICE_REQ>"
			 "</unib:UNI_BSS_BODY>"
			 "<unib2:UNI_BSS_ATTACHED>"
				"<!--Optional:-->"
				"<unib2:MEDIA_INFO></unib2:MEDIA_INFO>"
			 "</unib2:UNI_BSS_ATTACHED>"
		  "</unib:CREATE_ELECTRON_INVOICE_INPUT>"
	   "</soapenv:Body>"
	"</soapenv:Envelope>",
			LAST);


	return 0;
}