SSL/DIGITAL SIGNATURE Configuration problems

Dear All,
We are facing problems while configuring SSL for Digital signature. We are following the stpes given in ADS Configuration document. Documents present in help.sap.com do not give a clear picture of the various steps involved in authentication using digital signature. We require help with all the steps involved. To provide brief background, we have ABAP and JAVA engines on seperate servers and we were able to configure ADS successfully using basic authentication method as described in ADS config document. Now for Digital signature. we need to configure SSL, while doing so we are facing problems. We went through a lot of blogs and sdn links and numerous documents in SDN but still the problem remains. Please help us.
Regards
Mohammed

Hi,
When we execute the standard transaction for form 16 , three pdf forms are copied to the given location, they are
Annex , form12BA and  form16
Only file Annex contains data, the other two files are of 0 bytes. And also the file containing the data doesn't contain digital signature.
We have gone through all the configuration check given in the ADS configuration document and all are given the correct output.
Also we have installed  the credential file.
Please guide us.
Regards
Dheeraj

Similar Messages

  • Please help me with the digital signature validation problem?

    Please help me with the digital signature validation problem?

    Hi
    Execute the program in the Debuggin mode.
    In the Debugger Window
    Select Breakpoint -> Break point at -> Breakpoint at source code Menu Item and enter the details of the program/include/line no..
    Activate the System Debugger On from the Settings Menu.
    Hope this would help you.
    Murthy
    Edited by: Kalyanam Seetha Rama Murthy on Jul 18, 2008 7:20 AM

  • Digital Signatures Configuration

    Hi,
    I have a requirement in my project to configure Digital signatures.  I have tried doing the standard configuration, but I am not sure how to test this.
    Can any one of you give me the configuraiton guide for Digital Signatures and also let me know how to test the digital signature in SAP system?

    Hi..
    Please check the note 700495 - Digital Signature implementation by using signature tool.You will find the PDF.
    Regards
    Gangadhar

  • ITunes won't start -- Digital signature the problem?

    I haven't been able to get iTunes to start for the past month. It all started when I installed iTunes 7. I never had any problems with iTunes before that. I've tried nine or ten different suggestions and nothing seems to be working. Is there any way that I can delete iTunes 7 and somehow get back to using iTunes 6? This may be my last hope. I'm seriously considering buying a new computer just so I can use iTunes again.
    Also, for the past few weeks, whenever I try to install software updates I get some message about the digital signature being incorrect. I am able to get the updates installed manually, but I was wondering if this digital signature issue could have something to do with iTunes not working anymore?
    I've been using my Mac for the past three years and haven't really had any problems until now, so this is very frustrating. Thank you for any help or advice you can give me.

    Check out the user tip below.
    https://discussions.apple.com/docs/DOC-6562

  • XML digital signature validation problem - ArrayIndexOutOfBoundsException

    Hello,
    During validation of XML signature ( boolean coreValidity = signature.validate(valContext); ) , I get error:
    javax.xml.crypto.dsig.XMLSignatureException: java.lang.ArrayIndexOutOfBoundsException
         at org.jcp.xml.dsig.internal.dom.DOMReference.transform(Unknown Source)
         at org.jcp.xml.dsig.internal.dom.DOMReference.validate(Unknown Source)
         at GenSig.verify(GenSig.java:313)
         at GenSig.main(GenSig.java:545)
    The problem happens when validation process is checking reference to a file, which size is bigger than 50 KB. The same file if it is smaller than 50KB - makes no problems.
    Can anyone tell, how to avoid this problem?
    P.s. I'm working on Java 1.6
    Here is the log:
    2009-06-18 08.59.53 com.sun.org.apache.xml.internal.security.utils.resolver.ResourceResolver getInstance
    FINE: check resolvability by class com.sun.org.apache.xml.internal.security.utils.resolver.ResourceResolver
    2009-06-18 08.59.53 com.sun.org.apache.xml.internal.security.utils.resolver.implementations.ResolverDirectHTTP engineCanResolve
    FINE: I was asked whether I can resolve adoc1200922024845.pdf
    2009-06-18 08.59.53 com.sun.org.apache.xml.internal.security.utils.resolver.implementations.ResolverDirectHTTP engineCanResolve
    FINE: I state that I can't resolve adoc1200922024845.pdf
    2009-06-18 08.59.53 com.sun.org.apache.xml.internal.security.utils.resolver.ResourceResolver getInstance
    FINE: check resolvability by class com.sun.org.apache.xml.internal.security.utils.resolver.ResourceResolver
    2009-06-18 08.59.53 com.sun.org.apache.xml.internal.security.utils.resolver.implementations.ResolverLocalFilesystem engineCanResolve
    FINE: I was asked whether I can resolve adoc1200922024845.pdf
    2009-06-18 08.59.53 com.sun.org.apache.xml.internal.security.utils.resolver.implementations.ResolverLocalFilesystem engineCanResolve
    FINE: I state that I can resolve adoc1200922024845.pdf
    2009-06-18 08.59.53 org.jcp.xml.dsig.internal.dom.DOMReference dereference
    FINE: URIDereferencer class name: org.jcp.xml.dsig.internal.dom.DOMURIDereferencer
    2009-06-18 08.59.53 org.jcp.xml.dsig.internal.dom.DOMReference dereference
    FINE: Data class name: org.jcp.xml.dsig.internal.dom.ApacheOctetStreamData
    javax.xml.crypto.dsig.XMLSignatureException: java.lang.ArrayIndexOutOfBoundsException
    javax.xml.crypto.dsig.XMLSignatureException: java.lang.ArrayIndexOutOfBoundsException
         at org.jcp.xml.dsig.internal.dom.DOMReference.transform(Unknown Source)
         at org.jcp.xml.dsig.internal.dom.DOMReference.validate(Unknown Source)
         at GenSig.verify(GenSig.java:313)
         at GenSig.main(GenSig.java:545)
    Caused by: java.lang.ArrayIndexOutOfBoundsException
         at java.lang.System.arraycopy(Native Method)
         at com.sun.org.apache.xml.internal.security.utils.UnsyncByteArrayOutputStream.write(Unknown Source)
         at org.jcp.xml.dsig.internal.DigesterOutputStream.write(Unknown Source)
         at com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.write(Unknown Source)
         at com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.write(Unknown Source)
         at com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput.updateOutputStream(Unknown Source)
    <...>

    Well I came to "not nice"solution - instead of validating all XMLSignature with one standard function ( boolean coreValidity = signature.validate(valContext); ), I validate it in parts:
    1. Check if signature value is ok.: boolean sv = signature.getSignatureValue().validate(valContext);
    2 Start checking all references:
    A. if reference leads to whole file - then I read file and calculate digest value:
    MessageDigest md = MessageDigest.getInstance("SHA");
    md.update(buffer, 0, length); // buffer - bytes[] of file
    byte[] raw = md.digest(); // get digest valueB. if reference is only to some part of file (just to some XML element), then I validate it by reference: boolean refValid = r.validate(valContext);

  • Digital Signatures for PMO

    Dear All,
                Could you please explain me the Digital Signature Configuration steps for Document Systems for Solar02 ?
    Could you please share me the documents regarding this?
    Regards,
    Krishnan Kumar.K
    SolMan Consultant
    +91-9036197602

    Hi Krishnan,
    check this
    http://help.sap.com/saphelp_sm32/helpdata/en/42/dcff348d23162fe10000000a1553f7/content.htm
    Thanks,
    Jansi

  • ECM with Digital Signature

    Hi PP Gurus,
    Can anybody guide me about how to configure Digital Signature for ECR - ECO?
    I need to give R/3 UserID and Password for each step of ECR - ECO like
    for checking ECR - Engg Head
    Approving ECR - Quality Head
    Converting ECR - Production Head ...and so on..
    If possible give me step by step Process for Digital Signature Configuration.
    Regards,
    PRADEEP

    Dear,
    Please refer these links,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0fbaa71-cd8d-2910-5982-e30626035400
    http://searchsap.techtarget.com/searchSAP/downloads/UsingDigitalSignaturesEMconvtSearchSAP.pdf
    Regards,
    R.Brahmankar

  • Problems getting multiple digital signatures in Acrobat Reader form

    I have a Word document that I converted to a form in Acrobat 9 Pro. I added two separate digital signature fields, one for a conference presenter and the other for the conference planner to sign. There are also a number of text fields where presenters give bio information. I saved the document using the Extend functionality so that a user who only has Acrobat Reader would be able to fill in the form, sign/save it, and then send it on to the conference planner. The first part is working fine. However, once the first user signs/saves the document, the extended functionality goes away. When the conference planner receives the document, it is essentially locked. She cannot sign and save.
    Is what I'm trying to do possible? I feel like this would be fairly commonplace, but I may be going about it the wrong way. Thank you for any pointers.
    -Brian 

    Hi Steve,
    I have met similar problem. Using Adobe 9.4 I have prepared document with three signature fileds. I did signature in one of the field and then did extension to Reader. When I checked the propierties of document it occured that signing was not allowed. I couldn't sign it second time (not saying of Reader's user).
    Is there missing any plug-in or something is wrong with a configuration (mentioned "Nothing has happened when signed" was set up)?
    Wlodek

  • Security Issues: SSL on SOAP Adapter and Digital Signature in BPM

    Hi there,
    we're developing a R/3-XI-3rd Party Application scenario, where the XI/3rd Party communication is based on a webservice (SOAP adapter with SSL). Also, the messages in the XI/3rd Party communication must be digitally signed. I've got some questions on both subjects.
    1. About the SSL. I've started to investigate what will be necessary to enable the HTTPS option under SOAP Adapter (it's not enabled now). If I'm not correct, all I need to do is:
    - check whether the SAP Java Crypto Lib is installed in the Web AS;
    - generate the certificate request in the Visual Administrator and, after acquiring the certificate, store it with the KeyStorage option.
    Is that right?
    I'm considering that I won't need to use SSL in the ABAP Web AS, only the J2EE Java Engine (since the SOAP Adapter is based on J2EE).
    2. About the digital signature. As a first solution, we had decided on accessing a webservice based on another machine running a signature application. We'd send the unsigned XML and receive a signed XML. But since that needed to be done into the BPM, I thought that using a piece of Java code in a mapping would suit it better.
    But to be able to use the hashing/encrypting/encoding algorithms, which library needs to be installed? Is it the same SAP Java Crypto Lib that was installed for the SSL enabling?
    Thanks in advance!

    Hello Henrique,
    1. You're right. For detailed instructions please have a look at the online help: http://help.sap.com/nw04 - Security - Network and Transport Layer Security - Transport Layer Security on the SAP J2EE Engine
    2. The SOAP adapter supports security profiles. Please have a look at the online docu http://help.sap.com/nw04 -Process Integration - SAP Exchange Infrastructure - Runtime - Connectivty - Adapters - SOPA Adapter - Configuring the Sender SOAP adapter and from the link under Security Parameters to the Sender Agreement. You'll find some additional information in the following document: http://service.sap.com/~sapdownload/011000358700002767992005E/HowToMLSXI30_02_final.pdf
    Rgds.,
    Andreas

  • 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)

  • Configuration of Digital Signature

    Hello experts,
         I want to configure digital signature on form 16 with ECC 6.0 ABAP stacks only.
    can it  be possible without using Jabva stack?
    If it is possible then please guide me through any link or any  steps.
    Thanks & Regards,
    Richa Saran

    Hi Richa,
    In my opinion, a Java stack is must as you would need ADS for the Form 16. ADS is a usage type on Java stack itself.
    Check Note 1168740
    Further, follow note 510007
    SCN Blog: /people/dezso.pap/blog/2008/01/25/ads-ssl-configuration-journal-i-abap--java-640--70x
    Forum Thread: Installation of cryptographic library for digital signature
    Regards,
    Srikishan

  • Problem creating PKCS# 12 Digital Signature in Adobe Reader X - where do I confirm the Password?

    I cannot create a PKCS# 12 Digital Signature in Adobe Reader X. It says the passwords don't match when I create it. The problem is, I never was asked to confirm the P/W when I created it. It asked once for the P/W and then the only thing I can do is click "Finish" and then it says my P/W don't match. I am able to create a DS on my other computer using Reader 9 (and it did ask me to confirm the P/W when creating). I have re-booted my computer and still it will not work.

    You'll need to ask in the Acrobat Pro forum. There are people there with expertise who can answer this. I use Acrobat myself, but I'm a novice when it comes to signature settings.

  • Problems with digital signatures (adobe reader)

         I am a Government contractor that develops documents for my customer.  We are in the process of ascertaining the viability of digital signatures. I have developed a signature form with Adobe Pro 9.0.
         I have several issues. When someone digitally signs the document with their Common Acess Card (CAC), the warning appears "At least one signature has problems. Please fill out the form. If you are the form author, choose distribute form in the forms menu to send it to your recipients."
         I tried using several options using the distribute section, and I am unable to make this part work. I truly need assistance with doing this correctly.  I require that the signatures to be processed in sequence (#1, #2, #3, and then the approval signature).  I did not comprehend that option in the distribute form section.
         However, the recipients that use Adobe Acrobat Pro are able to sign the document when submitted to them (however, the prviously stated warning appears). If they use Adobe Reader, they are not able to sign the document.
         Please help.
         Is there anyone that can assist with the signature feature of Adobe Pro?
         I would appreciate any suggestion/guidance.
         One area that I don't understand is the feature where i 0send the form out for signature.

    What is your operating system?
    If Windows, you have something in your registry that is pointing to drive K:
    See if anything in here helps: http://helpx.adobe.com/creative-suite/kb/error-1327-invalid-drive-drive.html

  • Digital Signature problem : Adobe forms

    Hi Experts,
    I am facing one issue in Adobe forms while implementing Digital Signature in one of the Custom Adobe form. I am following some steps as mentioned in the below link
    <link to blocked site removed by moderator>
    The problem is when I execute my Adobe form I am not getting SIGN button in my generated form as mentioned in the link.
    I am using Adobe Live cycle designer 8.2 and Adobe reader 9.
    Please help me out on this since I am new to Adobe forms as well.
    Thanks
    VJ
    Moderator message: this is the wrong forum, please have a look in the forum for "SAP Interactive Forms by Adobe".
    Edited by: Thomas Zloch on Oct 21, 2011 1:56 PM

    Apart from the above question can anybody guide me whether do we need Adobe Acrobat instead of Adobe reader to implement  Digital Signature in Adobe form.
    Looking forward towards some useful suggestions!!
    Thanks
    VJ

  • Configuring Digital Signatures

    I have configured ADS for my development ECC. I need to configure digital signatures for Form 16. Please can anybody guide me how to go about this. I am unable to find a proper document.

    hi Sridevi Anujan  ,
    use this link for configuring the digital signature for form 16 . hope this will help you ,
    [http://www.saptechies.com/digital-signature-for-form-16/]
    regards
    chinnaiya

Maybe you are looking for