How to enable digital signature for browser enabled infopath form?

Dear all,
I have designed infopath form and published it into the document library. I want to provide signature option on the browser enabled infopath form.
I have created it using secion and digital signature control.
but I am getting this message.
When i click on Yes . I get following screen.
And it just hang here. I have enabled the active x control feature for IE.
Please tell me where i should install this component and how it can be done? 
I have access only to the sharepoint site.
Thanks

Hi,
According to your post, my understanding is that you want to enable digital signature for browser enabled infopath form.
To be able to sign this form, you need to activate two Windows Internet Explorer add-ons. Click the Information Bar in the dialog box, and then click Run ActiveX control to activate each add-on.
Then you need to active the following add-on.
In my environment, after I click the Next button, it open the picture as below.
Once I click the link to add the add-on as above, everthing works well.
For more information, you can refer to:
Add a digital signature to a browser-enabled form
Digital Signatures in InfoPath 2010
Best Regards,
Linda Li
Linda Li
TechNet Community Support

Similar Messages

  • How to get digital signature for Google Map geocoding V3 in PL/SQL?

    Hi, Gurus:
        Could anyone provide me an example about how to generate digital signature for Google Maps service v3 in PL/SQL? We tried to upgrade our program using Google maps service from v2 to v3. We are using PL/SQl on background to send request to Google for geocoding. We found some sample code to register with digital signature, but none of them is based on PL/SQl. Notice I used Google business client ID "gme-XXX" and wallet.
    https://developers.google.com/maps/documentation/business/webservices/auth#digital_signatures
    Google Maps API - more URL signing samples
    Here is my code for V2. I notice in order to get signature, I need to use HMAC-SHA1 algorithm.
    procedure Get_Geocoding(P_s_Address in varchar2, P_s_Geocoding out varchar2, P_n_accuracy out number, P_b_success out boolean) is
      l_address varchar2(4000);
      l_url varchar2(32000);
      l_response varchar2(3200);
      n_first_comma number;
      n_second_comma number;
      n_level_length number;
    BEGIN
      /* TODO implementation required */
      l_address:=APEX_UTIL.URL_ENCODE(P_s_Address);
      l_address := replace(l_address,' ','+');
      l_url := 'http://maps.google.com/maps/geo?q='||l_address||'&'||'output=csv'||'&'||'client=gme-XXX';
    l_response := utl_http.request(l_url, APEX_APPLICATION.G_PROXY_SERVER, '/u02/app/oracle/admin/apexsb/wallet', 'XXXXXXXX');
      n_level_length:=0;
      n_first_comma:=instr(l_response,',',1,1);
      n_second_comma:=instr(l_response,',',1,2);
      n_level_length:=n_second_comma-n_first_comma-1;
      P_n_accuracy:=0;
      if n_level_length>0 then
      P_n_accuracy:=to_number(substr(l_response,n_first_comma+1, n_level_length));
      end if;
      l_response:=substr(l_response,instr(l_response,',',1,2)+1);
      --dbms_output.put_line('In function: l_response ='||l_response);
      P_s_Geocoding:=l_response;
      if (P_s_Geocoding<>'0,0') then
      P_b_success:=true;
      --dbms_output.put_line('true');
      else
      P_b_success:=false;
      --dbms_output.put_line('false');
      end if;
    END;
    Thanks!

    Hi, guys:
        I tried to generate digital signature for Google map service
         Maps for Business: Generating Valid Signatures - YouTube
        Generating an HMAC-SHA-1 Signature Using Only PL/SQL
          OAuth and the PL/SQL | Data Warehouse in the Cloud
       but I got error message from Google:
    Unable to authenticate the request. Provided 'signature' is not valid for the provided client ID. Learn more: https://developers.google.com/maps/documentation/business/webservices/auth
       I think there is something wrong with my code to generate signature, as if I remove the part regarding client and signature, it will work, can anyone help me on this problem?
    /*Procedure Get_Geocoding is used to get geocoding with accuracy level for V3 business account, you can find Google map digital signature descrirption from
    https://developers.google.com/maps/documentation/business/webservices/auth#digital_signatures
    if geocoding is 0,0, procedure returns false to indicate failure of get geocoding*/
    procedure Get_Geocoding2(P_s_Address in varchar2, P_s_Geocoding out varchar2, P_n_accuracy out number, P_b_success out boolean) is
      --private key for Google business account, this is provided by Google with client name.
      l_private_key_src varchar2(200):='xxxxxxxxxxxxxxxxxxx';
      l_private_key_b64_alter varchar2(200):= translate(l_private_key_src,'-_','+/');
      l_private_key_bin raw(2000);
      l_client_name varchar2(100):='gme-xxx';
      l_signature_mac raw(2000);
      l_signature_b64 varchar2(200);
      l_signature_b64_alter_back varchar2(200);
      l_Google_service_domain varchar2(200):='http://maps.googleapis.com';
      l_address varchar2(4000);
      l_url varchar2(32000);
      l_path varchar2(32000);
      l_response varchar2(32000);
      l_page UTL_HTTP.HTML_PIECES;
      n_actual_length number;
      json_obj json;
      json_tempobj json;
      jl_listOfValues json_list;
      json_geom_obj json;
      json_loc json;
      l_lat  VARCHAR2(40);
      l_lng  VARCHAR2(40);
      l_status VARCHAR2(255);
      json_accuracy json;
      --temp_string varchar2(10000);
      n_first_comma number;
      n_second_comma number;
      n_level_length number;
      BEGIN
    /* TODO implementation required */
    l_private_key_bin := utl_encode.base64_decode(UTL_I18N.string_to_raw(l_private_key_b64_alter, 'AL32UTF8'));
    l_address:=APEX_UTIL.URL_ENCODE(P_s_Address);
    --dbms_output.put_line(l_address);
    l_address := replace(l_address,' ','+');
    l_path := '/maps/api/geocode/json?address='||l_address||'&'||'sensor=true';
    dbms_output.put_line(l_path);
    l_signature_mac :=DBMS_CRYPTO.mac(UTL_I18N.string_to_raw(l_path, 'AL32UTF8'), DBMS_CRYPTO.hmac_sh1,l_private_key_bin);
    l_signature_b64:= UTL_RAW.cast_to_varchar2(UTL_ENCODE.base64_encode(l_signature_mac));
    l_signature_b64_alter_back:=translate(l_signature_b64,'+/','-_');
    dbms_output.put_line(l_signature_b64_alter_back);
    --get response from Google map service
    l_url:=l_Google_service_domain||l_path||'&client='||l_client_name||'&signature='||l_signature_b64_alter_back;
    --l_url:=l_Google_service_domain||l_path;
    dbms_output.put_line(l_url);
    l_page:=utl_http.request_pieces( l_url, 99999);
    for i in 1..l_page.count loop
    l_response:=l_response||l_page(i);
    end loop;
    n_actual_length:=length(l_response);
    dbms_output.put_line(n_actual_length);
    dbms_output.put_line(l_response);
    --parse JSON result
    json_obj:=new json(l_response);
    l_status := json_ext.get_string(json_obj, 'status');
    IF l_status = 'OK' then
    jl_listOfValues := json_list(json_obj.get('results'));
    json_tempobj := json(jl_listOfValues.get(1));
    json_geom_obj := json(json_tempobj.get(3));
    json_loc := json_ext.get_json(json_geom_obj, 'location');
    l_lat := to_char(json_ext.get_number(json_loc, 'lat'));
    l_lng := to_char(json_ext.get_number(json_loc, 'lng'));
    P_s_Geocoding:=l_lat||','||l_lng;
    dbms_output.put_line('##########'||P_s_Geocoding);
    case json_ext.get_string(json_geom_obj, 'location_type')
    when 'ROOFTOP' then P_n_accuracy:=9;
    when 'RANGE_INTERPOLATED' then P_n_accuracy:=7;
    when 'GEOMETRIC_CENTER' then P_n_accuracy:=5;
    else P_n_accuracy:=3;
    end case;
    P_b_success:=true;
    else
    P_b_success:=false;
    P_n_accuracy:=0;
    P_s_Geocoding:='0,0';
    end if;
      END;

  • How to enable digital signature on my InforPath 2013 form?

    Hi, I watched a training video in Lynda.com that in a section property of a form there should be a Digital Signature tab.  I created a Infopath 203 form and published to our sp2013.  Now I want to add the digital signature fields to this form in
    3 sections but I don't see the tab.  Appreciate it if someone can tell me how to enable that
    Thank you.

    HI, I read the article and I did try inserting a section in my form above, in the middle and below, selecting the section property dialog still shows now tabs for digital signature as explained in the link you provided and also in the Lynda.com training
    video.  
    If I start a new blank form then that works.  I guess I could recreate the form from scratch but would like to skip all that extra work if there is a way to fix this.
    thank you.

  • How to skip digital signature for sap qa11 t-code in bdc

    Dear all,
            I am doing usage decision for sap QA11 t-code through BDC...when I am doing bdc recording, it asks for digital signature(user password) through a
    pop up..how to skip that digital signature in BDC or any other solution..
    Please provide your valuable suggestions..
    Thanks..
    Warm Regards,
    Nellai Muthu..

    Dear all,
            I am doing usage decision for sap QA11 t-code through BDC...when I am doing bdc recording, it asks for digital signature(user password) through a
    pop up..how to skip that digital signature in BDC or any other solution..
    Please provide your valuable suggestions..
    Thanks..
    Warm Regards,
    Nellai Muthu..

  • Digital Signature for Inspection Plan and Routing

    Hi,
    Can someone please help me on the topic of how to activate Digital Signature for inspection plan changes. I need to activate Digital signature functionality for inspection plan or routing. Please guide me to any link or shared documents on this topic.
    Thanks
    Vineeth

    Hi Vineeth,
    Standard SAP does not support this. Though I came across similar situation for maintenance plan, where we used BADI for this.
    Try to go through DIG_SIGNATURE_MAINT_PLAN. Consult with a good ABAPer if he can modify it some how for inspection plan.
    The links below may help you to understand the functionality [http://wiki.sdn.sap.com/wiki/display/SAPMDM/E-SIGNATUREforMaintenancePlants-MasterData(ECC6.0)] & [http://www.consolut.com/en/s/sap-ides-access/d/s/doc/YN-IF_EX_IPRM_DIG_SIGNATURE~~~~~~DIG_SIGNATURE_MAINT_PLAN]
    In SAP, check BADI_DIG_SIG_RES_REC_PROCESS, if anything can be done here.

  • Configuration steps to enable digital signature

    Hi,
    Can anybody please guide with the steps for enabling digital signature in form 16.
    How to start with the configuration?
    Thanks & Regards
    Astha

    hi Astha,
    hope u r doing good.
    some pointers for u r query from da note mentioned by Ayyappas.
    Ask your BASIS guy to set up ur SMP ID .
    It is now permitted to use Digital Signature on Form 16. Current Form 16 print program does not support this functionality
    Prerequisites
    SAP Note 1156084 - Sum of serial no. 18(a) & 18(b) incorrect on Form 16 PDF
    Currently this solution supports single digital signature at a time. In case you have more than one digital signature uploaded in
    the system, currently Form 16 will be signed with "Default" digital signature only.
    Create connection between ADS (Adobe Document Services) and R/3 system:
    This can be done through transaction 'SM59' --> connection type 'G' (HTTP Connection to External Server).
    It is recommended that you create this connection with 'RFC Destination' name as 'ADS_HTTPS'.
    Download:
    .SAR attachment 480180 and 13719 should be downloaded with file names
    Form16_DIGSIG.SAR for ECC 6.0 and Form16_DIGSIG.SAP
    for ECC 604 release.
    Perform the following manual activities:
    o Execute Transaction code 'SE38'.
    o Enter Program Name 'HINCF160' and select 'Change' option
    o Select 'GOTO' from menu bar and select 'Text Elements' and then
    'Text Symbols' from menu.
    o Make the folloing new entries in Text Symbols
    also follow SAP Note 1168740 - Digital Signature for Form 16
    Regards,
    RohitS

  • How to set up the digital signature for xi server

    dear all,
    these days i need to implement a interface using the digital signature technology to enable it's security transition.
    we are going to use the digest sign with partner.
    Could anyone of you tell me the detailed steps concerning the seting up at xi server for this pupose ?
    Thanks a lot !

    This is a really urgent request,
    does anyone have the experience on this, please give me some hints ,thanks !!
    BR
    ZhouHui

  • How can I create digital signatures for my users using Windows 2008 Active Directory Certificate Services?

    Hi,
    I need to create local digital signatures for my users. How can I do that using W2k8 Active Directory Certificate Services? We are gonna sign Office 2010 documents.
    What company offers cheap digital signatures solutions?
    Thanks in advanced

    Consider the following:
    if you use your local CA server to issue digital signature certificates, there is no cost, because you are eligible to issue so many certificates as you need. However, documents signed by these certificates will be considered trusted only within your AD
    forest and other machines that explicitly trust your local CA. Any external client will not trust your signatures.
    If you want to make your signature trusted outside your network (say, in worldwide), you need to pruchase a certificate from trusted commercial CA (VeriSign, GoDaddy, GlobalSign, StartCom, etc) according to respective vendor price list. In that case you
    don't need to have your local CA server, because it is not used. All certificate management is performed by the external CA. A most common scenario is to purchase signing certificate for particular departament principals (head managers) or few certificates
    for a whole company (all documents are revised by a responsible person or persons who holds signing certificate and sign them after review).
    so, it is not clear from your post what exactly you need.
    My weblog: http://en-us.sysadmins.lv
    PowerShell PKI Module: http://pspki.codeplex.com
    Windows PKI reference:
    on TechNet wiki

  • How to run Crypto Tools for SSO Enabling

    Hi Friends,
    How to run Crypto tools for SSO enabling. If any body knows please help me...
    Thanks

    Hi ;
    what is the script for windows Environment...

  • How to format the text  in a Digital Signature for a PDF in landscape orientation?

    I have a custom Digital Signature plug-in which prompts the user to enter few details on a dialog and then renders the signature. Now, the problem is for a page which has PDPageGetRotate value as 90. In this case, the entire content(text) in the signature is rendered reversed i.e its displayed upside down. However, for a page in portrait mode, i.e with rotation value as 0, signature is correctly displayed.
    Can anybody help me by explaining which callback/method to use to frame the text appearance? I think there needs to be some change in the parameters passed to DigSigAPCreateLayeredStreamEx, am i correct?
    Let me know any comments/suggestions on this issue of correctly rendering text in a digital signature for a rotated page.

    Just setup the appropriate transformation matrix.

  • How to configure CoSign Electronic Digital Signatures for UCM 11g

    Hi everyone,
    current I am doing a UCM poc with CoSign Electronic Digital Signature for a customer, this case is that when user approve a check-in PDF document in workflow, the user can use "sign and approve" to invoke the electronic digital signature action.
    since ECM 11g is based on weblogic, I configured the keystore for the weblogic as the below steps:
    1) use keytool to import a keystrore file just as cosigncert.jks from the cert file which provided by the vendor CoSign.
    2) Security Realms->myRealm->Providers->Credential Mapping, create a new provider using "PKI Credential Mapping Provider" and configure the storekey cosigncert.jks for this provider.
    3) Security Realms->myRealm->Providers->Authentication, select DefaultIdentityAsserter and add x509
    4) configure storekey for AdminServer and UCM managerServer using cosigncert.jks
    5) configure SSL for AdminServer and UCM managerServer.
    after finishing this steps, access the UCM console to do the approve with siginature. but it always throw "can not find the validate certification path"
    does any one know which step missing?
    Thanks & Regards
    shifeng

    Take a look at this chapter in the manual http://docs.oracle.com/cd/E23943_01/doc.1111/e10978/c03_repository.htm#CSMRC1611
    (Electronic Signature is now a feature of WebCenter Content; if you are looking for a 3rd party solution for signatures, but perhaps also timestamps, check what partners can do for you)

  • I was able to create a digital signature for someone else and use it. How is that protected??

    I was able to create a digital signature for my boss who's on vacation using his email address. I figured when I used the signature he would get some sort of email confirmation letting him know, but he got nothing. So it seems like I could create a signature for anyone and use it on any document without their knowledge. What's the protection against anyone creating a signature for anyone else and using it whenever?? Am I missing something??

    A digital signature can not be used to verify someone's identity. I can create a signature using anyone's name and email address. In fact, those things are irrelevant to the signature. The only thing that matters is the key used to create it, and therefore to verify it.

  • PDF Digital Signature for Offer letter

    How to enable, pdf digital signature for BI Publisher, we need to enable for the offer letter generated thro' irecruitment .
    Please advice
    Thanks
    Siva

    I haven't seen anything related to doing this for iRecruitment but have you checked over the standard BI Publisher support for digital signatures?
    17 Support for Digital Signature in PDF Documents
    http://download.oracle.com/docs/cd/E10383_01/doc/bip.1013/e10416/bip_digital_sigs.htm

  • Applying Digital signature for SFTP protocal

    Hi,
    There is an requirement in the project that transfer of digital signatured document from client FTP site to the Bank FTP site. I have implemented the solution for tansfer of any document from client FTP site to bank FTP site. However not have any clue on how to apply digital signature before transferring using SFTP protocal.
    I have gone through b2b guide and found that We can apply digital signature and message encryption for only AS1/2, ebMS-1.0/2.0 and RosettaNet-01.10/V02.00 Protocols. Security tab is enabled when we select the above protocols only.
    Please shed some light on how to provide the solution for this requirement.
    Regards,
    Anjana

    Hi Anuj,
    Thanks for responding.
    I have implemeted simple java program which creates file with some data-> created jar file. Confgured the Transport callout by by assoicating the callout name under SFTP channel->channel attributes etc..
    I tried to test it, java program was able to generate the file succssfully but on reports section in b2b, message is errored out wih the error of Error Code B2B-50079
    Error Description Machine Info: (odcdevsoa01.ohdc.com) Transport error: Transport callout error.
    public class fileCallOut implements Callout {
    public void execute(CalloutContext calloutContext, List input,
    List output) throws CalloutDomainException,
    CalloutSystemException {
    FileOutputStream fos = null;
    File outFile = new File("/u01/tempFileLoc/callout.txt");
    CalloutMessage cmIn = (CalloutMessage)input.get(0);
    try {
    String str = "But soft! what code in yonder program breaks?";
    fos = new FileOutputStream(outFile);
    Writer out = new OutputStreamWriter(fos);
    out.write(str);
    out.close();
    } catch (Exception e) {}
    Since it is simple java program, Can you please help me in identifying the issue where went wrong here.
    Regards,
    Anjana

  • How to Print Digital Signature in Smart forms.

    Hi Experts,
    Any one please help me how to use digital signatures in SMARTFORMS.?
    Which are the tables used to store digital signatures and please any one have any demo program which prints the the digital signature using smartforms kindly let me know.
    Thanks,
    Sunil kairam.

    Hi Sunil,
    After doing some research in sdn and other sources i found the following result...
    Digital Signatures are nothing but graphics that we can store in SAP and use in our Smart Forms.
    For Example you can create a .bmp file of your signatures, upload it via SE78, and then use it in your Smart Forms in your Footer Area as "Authorized Signatory".
    The Logic in the Print Program can be something as follows -
    1. Maintain a Z Table having fields like PLANT, FORMID (Name of the SmartForm), USERID.
    2. Before calling the Form, the validation is made for the Logged in User with the Z Table created.
    3. If the User Entry exists in the Z-Table, the Form is called and the Signature Image is displayed in the Footer Block i.e. the Authorized Signature.
    4. If user entry does not exist in the Z-Table then the message is displayed "You are not the Authorized for Printing the Form" and exits the Transaction.
    refer to these links:
    [http://help.sap.com/saphelp_nw04s/helpdata/en/23/c8b4cb4b3847a9bc32fe100f368411/frameset.htm]
    [http://help.sap.com/saphelp_nw04/helpdata/en/21/530b37cb3ed605e10000009b38f936/frameset.htm]
    if u find some info on the topic pls let me know..
    best of luck!!!
    thanks
    ravi

Maybe you are looking for

  • G/L Account- MIRO

    Hi all, While posting invoice , System ask us to provide G/L account As we know that during the Invoice GR/IR is Debited and Vendors account credited. I want to know how does the system select which vendor account is to be credited?? e.g If A1000 is

  • Crystal report viewer 13 are displaying blank page after deploying in web server

    Dear friends, i have designed crystal report (in VS2012 &  CRRuntime_32bit_13_0_8 installed in web server) it's working fine in machine VS2012, but when deploying in web server (Windows Server 2008 R2 64bit) it's getting blank page. I have read the h

  • IWeb not working..

    Hey All.. Had my first dable with iWeb tonight and made a 5 page website with content from my recent Wedding. However, after clicking on publish and getting a message saying it was done, when I click visit and it takes me to my site, I am getting an

  • IPod leaking some kind of fluid - NEW

    Hi, I have a 60G iPod video which in the past few months started to leak some kind of fluid from to wheel button. The push button in the center of the wheel also sunk down but is still functioning. Since the button had sunk down I assumed that it is

  • Accordion widget pushes text

    Hello, I have some issues with this widdget. As you can see in the pic, the "Publications" tab pushes upwards the copyright text that is on the bottom of the page. Thanks for any help, Ignacio