General Failure    at SAPbouiCOM.IEditText.set_Value(String pVal)

hi,
my codes are as below :
        oRecordSet.DoQuery("select a,b,c,d,e from [obj] where a='value1'")
              Dim oEditBill As SAPbouiCOM.EditText
        oEditBill = Form.Items.Item("itemA").Specific
        Dim test As String = oRecordSet.Fields.Item(0).Value & oRecordSet.Fields.Item(1).Value & oRecordSet.Fields.Item(2).Value & oRecordSet.Fields.Item(3).Value & oRecordSet.Fields.Item(4).Value
        oEditBill.String = test
but, got this error , - System.Runtime.InteropServices.COMException (0xFFFFFFFF): General Failure
   at SAPbouiCOM.IEditText.set_Value(String pVal)
what's wrong ?

hi arun,
the problem now is the value cannot assign into the oEditBill.
The scenario like tis :
Dim test As String = oRecordSet.Fields.Item(1).Value & oRecordSet.Fields.Item(2).Value & oRecordSet.Fields.Item(3).Value & oRecordSet.Fields.Item(4).Value & oRecordSet.Fields.Item(5).Value
            Try
                oEditBill.Value = test (here got the error occur)
            Catch generatedExceptionName As Exception
                BaseAddOn.MessageBox(generatedExceptionName.Message)
            End Try
got any idea ?

Similar Messages

  • General failure with CFL

    Hello,
    I have added a ChooseFromList in a matrix.
    My CFL works well, but when I click on "select" to display the value in the matrix, I have a message saying "General Failure".
    Aother problem is when I click on "Cancel" (in the CFL form) I have a message "Object reference not defined to an object instance".
    If pVal.BeforeAction = False Then
                If FormUID = "CPM" Then
                    oForm = SBO_Application.Forms.Item(FormUID)
                    Select Case pVal.EventType
                        Case SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED
                            If pVal.ItemUID = "ClassGen" Then
                                oForm.PaneLevel = 1
                            End If
                            If pVal.ItemUID = "ClassAbon" Then
                                oForm.PaneLevel = 2
                            End If
                            If pVal.ItemUID = "ClassStat" Then
                                oForm.PaneLevel = 3
                            End If
                            If pVal.ItemUID = "AjoutL" Then
                                oMatrix.AddRow()
                            End If
                            If pVal.ItemUID = "SupprL" Then
                                oMatrix.DeleteRow(oMatrix.GetNextSelectedRow())
                            End If
                        Case SAPbouiCOM.BoAppEventTypes.aet_ShutDown
                            System.Windows.Forms.Application.Exit()
                        Case SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST
                            oDataTable = pVal.SelectedObjects
                            Try
                                oEdit = oMatrix.Columns.Item("Nom").Cells.Item(oMatrix.RowCount).Specific
                                val = oDataTable.GetValue("CardName", 0)
                                oEdit.Value = val
                                oEdit = oMatrix.Columns.Item("Mail").Cells.Item(oMatrix.RowCount).Specific
                                val = oDataTable.GetValue("E_Mail", 0)
                                oEdit.Value = val
                            Catch
                                SBO_Application.MessageBox(Err.Description)
                            End Try
                    End Select
                End If
            End If
    Do you know what my problem is ?
    Thanks
    Thibault

    Here a sample (In C#)
    if(pVal.ItemUID=="BOY_1" && pVal.EventType == BoEventTypes.et_CHOOSE_FROM_LIST) {
      ChooseFromListEvent cflEvent = (ChooseFromListEvent)pVal;
      string cflUID = cflEvent.ChooseFromListUID;
      if(!pVal.BeforeAction) {
        DataTable dt = cflEvent.SelectedObjects;
        if(dt!=null && dt.Columns.Count!=0 && dt.Rows.Count!=0) {
          string val = dt.GetValue("ItemCode",0).ToString();
          eventForm.DataSources.UserDataSources.Item("BOY_UDS1").ValueEx = val;
    Also remember that you need alphanumeric datasources (CFL doens not work with not alpha types)
    Message was edited by: Rasmus Jensen

  • I get a general failure when I click on links in my email. This happens more frequently now that I've downloaded the latest version of Firefox. Very annoying. Help!!!

    I get a general failure when I click on links in my email. "General Failure" is followed by a link and I have to click ok to get rid of it. This happens every time I click on a link in my email. I've turned my computer on and off several times, but it persists. It's very annoying and I'm considering returning to Internet Explorer because of it.

    This is a known bug, and has been for years. It occurs when Firefox is your default browser and some glitch (or program) changes that default. Thankfully, there's a fairly easy fix, though it does involve monkeying around in the Registry.
    (Note: These instructions apply to Windows Vista and 7 only.)
    1. Click Start, type regedit, and then press Enter.
    2. Navigate to the following entry: HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec
    3. In the center pane, double-click the Default entry, then remove whatever value is there (it'll probably be a weird string of numbers and commas).
    4. Click OK, then exit Regedit.
    5. If Outlook and/or Firefox are open, close them, then restart them.
    this information was found at[[ http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html]]
    I am using windows 7 pro this issue has drove me crazy for some time, now finally it's fixed by doing the exact same steps as above, hope this works for everybody that is having this problem. I just had to share this with my fellow firefox users. :)

  • I am always getting a General Failure Exception

    Hello,
    I have been working on a UDO form.
    Recently my code is generating "General Failure" Exceptions at parts where the code worked a couple of days ago!
    My add-on was working perfectly before, and I haven't changed anything in it.
    It is setting a general failure exception, when i set the String property of an EditText object, and when i set a form's visible property to true.
    What could be the problem?
    Thanks
    Ralph

    Hi,
    try this in C#
                   /// <summary>
                   /// summary
                   /// <para>Sets the value of a edittext. This is because of the general failure problem, when setting edittext values directly. </para>
                   /// </summary>
                   /// <param name="_editText">The editText to set the value. </param>
                   /// <param name="_value"The value to set.</param>
                   /// <returns>Returns allways true . </returns>
                   public bool setEditTextValue(EditText _editText, string _value)
                        try
                             _editText.Value = _value;
                             return true;
                        catch (Exception)
                             return true;
    Have fun,
    Holger

  • General Failure

    Hi,
    When i try to assign the value from record set to text box i am getting the error message as <b>"General Failure" .</b>.
    The error is generating only when i try to assign oDocRec.Fields.Item(0) to the textbox. But value is available in the oDocRec.Fields.Item(0).  That i have checked.
    All other which i am assinging it is working fine but only for this field error is getting generated.
    Please let me know how can i solve this problem.
    Dim oDocRec As SAPbobsCOM.Recordset
                oDocRec = Ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                sSQL = "select a.ItemCode,b.ItemName,a.PlannedQty from OWOR a, OITM b where  a.ItemCode = b.ItemCode and a.DocEntry = " & prodno
                oDocRec.DoQuery(sSQL)
                If oDocRec.RecordCount > 0 Then
                 <b>  txtitemcd.Value = oDocRec.Fields.Item(0).Value</b>               txtname.Value = oDocRec.Fields.Item(1).Value
                    txtqty.Value = oDocRec.Fields.Item(2).Value
                End If

    Hi Anitha
    yes value is available in product no. I have also check value is also comming to variable "strtxt"  from   oDocRec.Fields.Item(0).Value . When i try to assign the value from variable to textbox is showing the error<b>."General Failure"</b>.
    I have also deleted the textbox used the new textbox but still the same error is displaying.
    Dim sSQL As String
                Dim strtxt As String
                Dim oDocRec As SAPbobsCOM.Recordset
                oDocRec = Ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                sSQL = "select a.ItemCode as ItemCode1,b.ItemName,a.PlannedQty from OWOR a, OITM b where  a.ItemCode = b.ItemCode and a.DocEntry = " & prodno
                oDocRec.DoQuery(sSQL)
                If oDocRec.RecordCount > 0 Then
                   <b>  strtxt = oDocRec.Fields.Item(0).Value
                    txticd.Value = strtxt</b>
                    txtname.Value = oDocRec.Fields.Item(1).Value
                    txtqty.Value = oDocRec.Fields.Item(2).Value
                End If

  • General Failure on Sign-On

    I get the error message 'General Failure' when I try to get the Connection Context from the UI 6.5 using Delphi 6.
    // Acquire the connection context cookie from the DI API.
    Cookie := vCmp.GetContextCookie;   '
    Memo1.Lines.Add(SBO_Connection.Company.DatabaseName);     // works fine
    //Retrieve the connection context string from the UI API using the acquired cookie.
    conStr:=SBO_Connection.Company.GetConnectionContext(Cookie);
    This call fails.
    Has anyone an idea how to solve this problem?
    Thanks

    Hi Lita,
    Thanks very much for your tip.
    Now the Sign-On works fine.
    Regards,
    Gerold

  • After updating to Firefox 3.6.9, when I click on a link in Outlook email, I get a message which says "General failure. The URL was: .... An error occurred in sending the command to the applicatio." and the link will not open. How can I fix this?

    I updated Firefox yesterday to 3.6.9. When I receive a URL link in an email within Outlook, I cannot open the link in Firefox. As I said in the question, when I click on the link, a Microsoft Office Outlook error message appears which states that a General failure has occurred in sending the command to the application (which is Firefox). I am using Office 2007 This did not occur prior to the upgrade of Firefox.

    See this lnk for a fix, it worked for me!
    http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html

  • Since switching to Firefox this week, when I click on a hyperlink in an e-mail in Outlook, I get this message, "General failure. An error occurred in sending the command to the application." It doesn't open a new window or do anything.

    Since switching to Firefox this week, when I click on a hyperlink in an e-mail in Outlook, I get this message, "General failure. An error occurred in sending the command to the application." It doesn't open a new window or do anything. Any work around to fix this?

    See this lnk for a fix, it worked for me!
    http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html

  • When I click on a link in an email I always get a message 'General failure URL :.... unable to find file' and seconds later the web address opens. Is there anyway to stop this?

    I get a message saying 'General Failure. The URL was: ".........". The system cannot find the file specified' whenever I click on a link in an email and then seconds later the web site opens. If I open firefox and then click a bookmark or search I don't have a problem

    See this lnk for a fix, it worked for me!
    http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html

  • Clicking on hyperlink in Outlook causes "General Failure" Error message to pop up in Outlook - but we page does open in Firefox 4.0

    Since upgrading to Firefox 4.0 - every time I click on a link in Outlook, it causes a "General Failure" error message that says, "The URL was:" ... "The system cannot find the fix specified."
    However the site opens fine in Firefox.

    I have same problem and found article below that worked but then i ended up having to do system restore because outlook stopped sending emails after i synced new iPhone while at Apple store that caused problem!!!
    http://answers.yahoo.com/question/index?qid=20080512192747AAHDZtL

  • Links inside Microsoft Office Outlook 2007 result in a "General Failure" message instead of loading in Firefox 7

    When I click a link inside Microsoft Office Outlook 2007, it results in a "General Failure" message instead of loading the link inside Firefox 7 (previous versions of Firefox loaded OK, this issue has only arrived with the recent upgrade).

    See this lnk for a fix, it worked for me!
    http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html

  • AS2 error: IP-51083:  General failure creating S/MIME digital signature

    Hello All,
    I am getting a failure when sending AS2 with encryption and digital signature. The certificates have been set up as follows:
    Signing and Encryption for Host : Store the certificate in both wallet and repository
    Signing and Encryption for TP : Store the certificate in repository.
    Looks like it it finding the key but looking for "alternateWrl: /apps6/orab2b/as10gt/product/1012/ip/config/wallet/wallet1". Not sure where this wallet1 comes from?
    Thanks.
    2009.06.24 at 15:41:21:471: Thread-40: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign Entering...
    2009.06.24 at 15:41:21:471: Thread-40: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign Sign using the configured certificate
    2009.06.24 at 15:41:21:471: Thread-40: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign wrl: /apps6/orab2b/as10gt/product/1012/ip/config/wallet
    2009.06.24 at 15:41:21:475: Thread-40: B2B - (DEBUG) Utility:getPrivateKey:Enter
    2009.06.24 at 15:41:21:503: Thread-40: B2B - (DEBUG) Utility:getPrivateKey:matching private key found
    2009.06.24 at 15:41:21:503: Thread-40: B2B - (DEBUG) Utility:getPrivateKey:Exit2009.06.24 at 15:41:21:503: Thread-40: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign alternateWrl: /apps6/orab2b/as10gt/product/1012/ip/config/wallet/wallet1
    2009.06.24 at 15:41:21:503: Thread-40: B2B - (DEBUG) Utility:getPrivateKey:Enter2009.06.24 at 15:41:21:504: Thread-40: B2B - (ERROR) java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:990)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createSignedMimeBodyPart(MimePackaging.java:426)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.applySecurity(MimePackaging.java:1807)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createMimeMessage(MimePackaging.java:296)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.pack(MimePackaging.java:121) at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1684)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:975)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1167)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:833)
    at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
    at java.lang.Thread.run(Thread.java:534)
    2009.06.24 at 15:41:21:504: Thread-40: B2B - (ERROR) Error -: AIP-51083: General failure creating S/MIME digital signature: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:1083)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createSignedMimeBodyPart(MimePackaging.java:426)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.applySecurity(MimePackaging.java:1807)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createMimeMessage(MimePackaging.java:296)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.pack(MimePackaging.java:121)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1684)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:975)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1167)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:833)
    at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:990)
    ... 10 more

    Hi Anuj,
    I moved the setup to production and I started to get the failures. I verified and re-verified the setup. It is same as in test. I deleted and re-did the setup. However, still failing. As can be seen from the message below the matching private key is found but the encryption/signature does not happen. Again this is outbound message from host to TP. Appreciate any help.
    Thanks.
    2009.08.24 at 11:20:11:555: Thread-22: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: setSignatureAlgorithm using algorithm name Leaving...2009.08.24 at 11:20:11:555: Thread-22: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: setDigestAlgorithm using algorithm name Entering...2009.08.24 at 11:20:11:555: Thread-22: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: setDigestAlgorithm using algorithm name Leaving...
    2009.08.24 at 11:20:11:555: Thread-22: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign Entering...2009.08.24 at 11:20:11:556: Thread-22: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign Sign using the configured certificate2009.08.24 at 11:20:11:556: Thread-22: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign wrl: /apps6/orab2b/as10gp/product/1012/Apache/Apache/conf/ssl.wlt/default
    2009.08.24 at 11:20:11:562: Thread-22: B2B - (DEBUG) Utility:getPrivateKey:Enter
    2009.08.24 at 11:20:11:595: Thread-22: B2B - (DEBUG) Utility:getPrivateKey:*matching private key found*
    2009.08.24 at 11:20:11:595: Thread-22: B2B - (DEBUG) Utility:getPrivateKey:Exit2009.08.24 at 11:20:11:595: Thread-22: B2B - (DEBUG) oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign alternateWrl: /apps6/orab2b/as10gp/product/1012/Apache/Apache/conf/ssl.wlt/default/wallet1
    2009.08.24 at 11:20:11:595: Thread-22: B2B - (DEBUG) Utility:getPrivateKey:Enter
    2009.08.24 at 11:20:11:599: Thread-22: B2B - (ERROR) java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:990)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createSignedMimeBodyPart(MimePackaging.java:426)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.applySecurity(MimePackaging.java:1807)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createMimeMessage(MimePackaging.java:296)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.pack(MimePackaging.java:121)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1684)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:975)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1167)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:833)
    at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
    at java.lang.Thread.run(Thread.java:534)
    2009.08.24 at 11:20:11:600: Thread-22: B2B - (ERROR) Error -: AIP-51083: General failure creating S/MIME digital signature: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:1083)

  • AIP-51083:  General failure creating S/MIME digital signature: Error

    I know you guys did answer to this kind of question in several threads. But my case is bit different. Please try to help me to resolve this issue.
    OS: AIX 5.3
    B2B: 10.1.2.2 (No Additions)
    I did encrypt the message using certificates (Host & Trading Partner) and send to Trading Partner and got the confirmation. So assuming there is no issue with wallet and certificates.
    But I am not able to sing the same message using same certificates.
    (I don’t have any issue with Host certificate, I can use it for host sing but I have issue with Trading Partner certificate)
    Here the error message. I really appreciate your help.
    <MSG_TEXT>Error -: AIP-51083: General failure creating S/MIME digital signature: Error -: AIP-51083: General failure creating S/MIME digital signature: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createSignedMimeBodyPart(MimePackaging.java:434)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.applySecurity(MimePackaging.java:1699)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createMimeMessage(MimePackaging.java:262)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.pack(MimePackaging.java:110)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1165)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:701)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:832)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:531)
    at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:568)
    Caused by: Error -: AIP-51083: General failure creating S/MIME digital signature: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:1054)
    at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createSignedMimeBodyPart(MimePackaging.java:392)
    ... 9 more
    Caused by: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:965)
    ... 10 more
    </MSG_TEXT>
    Thanks in Advance,
    Rama K

    Hi Anuj,
    Thanks for your good reply.
    I was doing same thing which you mentioned (Thats the reason encryption is working with same certificates, so there is no issue with wallet and certificates).
    in my log (debug mode) I did find some thing is interesting
    From the log,
    <MSG_TEXT>oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign alternateWrl: /oraaiad/B2BHome/Apache/Apache/conf/ssl.wlt/default/wallet1</MSG_TEXT>
    Log is looking for alternateWrl "/*default/wallet1*"
    But my wallet location which I mentioned in tip.props /oraaiad/B2BHome/Apache/Apache/conf/ssl.wlt/*default/wallet.txt*
    I know there is no location called "*wallet1*" thats the reason why it's throwing null pointer. But my questions is, why it's looking for alternateWrl? Here some of debug log.
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2009-09-04T21:56:50.336+00:00</TSTZ_ORIGINATING>
    <ORG_ID>oracle.com</ORG_ID>
    <COMPONENT_ID>B2B</COMPONENT_ID>
    <HOSTING_CLIENT_ID>beta</HOSTING_CLIENT_ID>
    <MSG_TYPE TYPE="UNKNOWN"></MSG_TYPE>
    <MSG_GROUP>B2B</MSG_GROUP>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>abc.abc.com</HOST_ID>
    <HOST_NWADDR>1.1.1.100</HOST_NWADDR>
    <MODULE_ID>B2B</MODULE_ID>
    <THREAD_ID>Thread-12</THREAD_ID>
    <USER_ID>oraaiad</USER_ID>
    </HEADER>
    <PAYLOAD>
    <MSG_TEXT>Utility:getPrivateKey:Exit</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2009-09-04T21:56:50.336+00:00</TSTZ_ORIGINATING>
    <ORG_ID>oracle.com</ORG_ID>
    <COMPONENT_ID>B2B</COMPONENT_ID>
    <HOSTING_CLIENT_ID>beta</HOSTING_CLIENT_ID>
    <MSG_TYPE TYPE="UNKNOWN"></MSG_TYPE>
    <MSG_GROUP>B2B</MSG_GROUP>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>abc.abc.com</HOST_ID>
    <HOST_NWADDR>1.1.1.100</HOST_NWADDR>
    <MODULE_ID>B2B</MODULE_ID>
    <THREAD_ID>Thread-12</THREAD_ID>
    <USER_ID>oraaiad</USER_ID>
    </HEADER>
    <PAYLOAD>
    <MSG_TEXT>oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging:SmimeSecureMessaging: sign alternateWrl: /oraaiad/B2BHome/Apache/Apache/conf/ssl.wlt/default/wallet1</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2009-09-04T21:56:50.336+00:00</TSTZ_ORIGINATING>
    <ORG_ID>oracle.com</ORG_ID>
    <COMPONENT_ID>B2B</COMPONENT_ID>
    <HOSTING_CLIENT_ID>beta</HOSTING_CLIENT_ID>
    <MSG_TYPE TYPE="UNKNOWN"></MSG_TYPE>
    <MSG_GROUP>B2B</MSG_GROUP>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>abc.abc.com</HOST_ID>
    <HOST_NWADDR>1.1.1.100</HOST_NWADDR>
    <MODULE_ID>B2B</MODULE_ID>
    <THREAD_ID>Thread-12</THREAD_ID>
    <USER_ID>oraaiad</USER_ID>
    </HEADER>
    <PAYLOAD>
    <MSG_TEXT>Utility:getPrivateKey:Enter</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2009-09-04T21:56:50.506+00:00</TSTZ_ORIGINATING>
    <ORG_ID>oracle.com</ORG_ID>
    <COMPONENT_ID>B2B</COMPONENT_ID>
    <HOSTING_CLIENT_ID>beta</HOSTING_CLIENT_ID>
    <MSG_TYPE TYPE="ERROR"></MSG_TYPE>
    <MSG_GROUP>B2B</MSG_GROUP>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>abc.abc.com</HOST_ID>
    <HOST_NWADDR>1.1.1.100</HOST_NWADDR>
    <MODULE_ID>B2B</MODULE_ID>
    <THREAD_ID>Thread-12</THREAD_ID>
    <USER_ID>oraaiad</USER_ID>
    </HEADER>
    <PAYLOAD>
    <MSG_TEXT>java.lang.NullPointerException
         at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:984)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createSignedMimeBodyPart(MimePackaging.java:416)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.applySecurity(MimePackaging.java:1734)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createMimeMessage(MimePackaging.java:286)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.pack(MimePackaging.java:118)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1602)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:900)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1082)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:697)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:373)
         at java.lang.Thread.run(Thread.java:568)
    </MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2009-09-04T21:56:50.506+00:00</TSTZ_ORIGINATING>
    <ORG_ID>oracle.com</ORG_ID>
    <COMPONENT_ID>B2B</COMPONENT_ID>
    <HOSTING_CLIENT_ID>beta</HOSTING_CLIENT_ID>
    <MSG_TYPE TYPE="ERROR"></MSG_TYPE>
    <MSG_GROUP>B2B</MSG_GROUP>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>abc.abc.com</HOST_ID>
    <HOST_NWADDR>1.1.1.100</HOST_NWADDR>
    <MODULE_ID>B2B</MODULE_ID>
    <THREAD_ID>Thread-12</THREAD_ID>
    <USER_ID>oraaiad</USER_ID>
    </HEADER>
    <PAYLOAD>
    <MSG_TEXT>Error -: AIP-51083: General failure creating S/MIME digital signature: java.lang.NullPointerException
         at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:1077)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createSignedMimeBodyPart(MimePackaging.java:416)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.applySecurity(MimePackaging.java:1734)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createMimeMessage(MimePackaging.java:286)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.pack(MimePackaging.java:118)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1602)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:900)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1082)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:697)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:373)
         at java.lang.Thread.run(Thread.java:568)
    Caused by: java.lang.NullPointerException
         at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:984)
         ... 10 more
    </MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2009-09-04T21:56:50.507+00:00</TSTZ_ORIGINATING>
    <ORG_ID>oracle.com</ORG_ID>
    <COMPONENT_ID>B2B</COMPONENT_ID>
    <MSG_ID>AIP-51083</MSG_ID>
    <HOSTING_CLIENT_ID>beta</HOSTING_CLIENT_ID>
    <MSG_TYPE TYPE="ERROR"></MSG_TYPE>
    <MSG_GROUP>B2B</MSG_GROUP>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>abc.abc.com</HOST_ID>
    <HOST_NWADDR>1.1.1.100</HOST_NWADDR>
    <MODULE_ID>B2B</MODULE_ID>
    <THREAD_ID>Thread-12</THREAD_ID>
    <USER_ID>oraaiad</USER_ID>
    </HEADER>
    <PAYLOAD>
    <MSG_TEXT>Error -: AIP-51083: General failure creating S/MIME digital signature
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createSignedMimeBodyPart(MimePackaging.java:458)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.applySecurity(MimePackaging.java:1734)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.createMimeMessage(MimePackaging.java:286)
         at oracle.tip.adapter.b2b.packaging.mime.MimePackaging.pack(MimePackaging.java:118)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1602)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:900)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1082)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:697)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:373)
         at java.lang.Thread.run(Thread.java:568)
    </MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    Please share your idea/comments.
    I appreciate your help.
    Regards,
    Rama K

  • AIP-51083:  General failure creating S/MIME digital signature

    I want to do a test my B2B server whether it can sent B2B with certification request, so first I config
    my wallet file is ewallet.p12, not txt file, so I locate wallet location in tip.properties:
    oracle.tip.adapter.b2b.WalletLocation = file:D:\\EAIB2B\\B2BServer\\ip\\config
    and then in the B2B config console change the wallet password.
    I find such error log as below when I sent B2B request, it expose AIP-51083: General failure creating S/MIME digital signature: java.lang.NullPointerException
    Description: General failure creating S/MIME digital signature
    StackTrace:
    Error -: AIP-51083: General failure creating S/MIME digital signature: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:1083)
    at oracle.tip.adapter.b2b.packaging.MimePackaging.createSignatureMimeBodyPart(MimePackaging.java:480)
    at oracle.tip.adapter.b2b.packaging.MimePackaging.createMultipartMessage(MimePackaging.java:934)
    at oracle.tip.adapter.b2b.packaging.MimePackaging.doPack(MimePackaging.java:1132)
    at oracle.tip.adapter.b2b.packaging.MimePackaging.pack(MimePackaging.java:3172)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1685)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:976)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1167)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:833)
    at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.packaging.SmimeSecureMessaging.sign(SmimeSecureMessaging.java:990)
    ... 10 more

    Hi,
    Please refer -
    AS2 error: IP-51083:  General failure creating S/MIME digital signature
    Place your wallet at default wallet location - Midtier_Home/Apache/Apache/conf/ssl.wlt/default and mention this location in your tip.properties file.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi on Jun 28, 2009 7:33 PM

  • No internet access, ping general failure, no IP address after SOFTWARE updates to Windows 7 on 15th April,2015

    Hi ,
    I using windows 7 Home premium, and OS got updated yesterday night.
    Then on wards, i am unable to access internet and while pinging, its giving "General Failure".
    Why its happened? Is something wrong in the latest Windows 7 update?
    How to resolve the issue?
    Regards,
    Vijay
    vijai_aalla

    Hi Vijai_aala,
    Are there any error messages recorded in the Event Viewer ?
    Event Viewer \Windows Logs \Application ,System ,Setup
    Please also check the update history for any failed update.
    We can take the folowing steps to have a troubleshoot :
    1.Reinstall the network adapter driver from the device manager .It is recommended to download the driver from the manufacturer website.
    2.Run the built-in troubleshoot to have a check .
    Control Panel\All Control Panel Items\Troubleshooting\Network and Internet\Network Adapter,Internet Connections
    3.Run the following command line to reset the TCP/IP stack.
    ipconfig /flushdns (Clear the dns cache)
    nbtstat -RR (release and refesh NetBIOS names)
    netsh int ip reset (reset ip settings)
    netsh winsock reset (Reset Winsock Catalog)
    Reboot
    4.If the issue persists,perform a system restore to recover the machine to a previous point .(Search system restore directly)
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • How can I find saved movies on my hard drive?

    I am trying to clean out my hard drive by putting a lot of pictures and videos on an external hard drive.  I went through all my saved videos that were in Iphoto and transfered them to the hard drive and then deleted them.  When I open up my storage

  • COPA vs New GL

    I am looking for feedback regarding reporting, as we are trying to finalize our reporting design.  I am working with a SAP shop that uses COPA and FICO in R/3 (4.6C release) and BW3.5 and are upgrading to ECC and BI 7. As part of their project we hav

  • Playing sound from multiple applications?

    Hi, I recently started using Arch and I'm loving it but I have one problem. My ALSA can only play sound from one application at a time, so I have to use pulseaudio for the others. But pulseaudio doesn't recognize my mic so I can't remove ALSA. ALSA j

  • When I open an item/link in a new tab, the new tab doesn't reflect the appropriate url

    When I open a new tab, the url reflects the old tab. For example, I downloaded the addon that allows you to determine what the new tab will display. I picked google. Well, google, opens alright, but the new URL reflects Yahoo.com, which is where I WA

  • Process for F.5D & 1KEK

    Hello, Can  anyone please provide a document on the detailed explanatory procedure for F.5D & 1KEK process. Thanks in advance.