Use sign_webutil.sh error

I want to sign frmwebutil.jar and jacob.jar with sign_webutil.sh
but it show the message
============ message start =================================
sign_webutil.sh /u01/vis/apps/tech_st/10.1.2/forms/java/jacob.jar
Generating a self signing certificate for key=webutil2...
Warning: webutil2 already present in /u01/vis/apps/tech_st/10.1.2/.keystore
\n
Backing up /u01/vis/apps/tech_st/10.1.2/forms/java/jacob.jar as /u01/vis/apps/tech_st/10.1.2/forms/java/jacob.jar.old...
\n
Signing /u01/vis/apps/tech_st/10.1.2/forms/java/jacob.jar using key=webutil2...
jarsigner error: gnu.javax.crypto.keyring.MalformedKeyringException: incorrect magic
...successfully done.
============ message end =================================
I have no idea with it , how can I check what did i done wrong ?
does anyone can help me?
============ resolved ====================================
in sign_webutil.sh I add the
PATH=$ORACLE_HOME/jdk/bin:$PATH
it run the sign_webutil.sh jacob.jar & frmwebutil.jar successfully
Edited by: Marc1123 on Nov 11, 2008 1:22 AM

The oracle document says:
You need to sign both the frmwebutil.jar and the jacob.jar with the same digital certificate.
This is a one-time operation, which allows your end-users to trust that the JACOB routines can access client side resources.
If you do not have an existing signing certificate or are not sure how to go about signing Jar files, scripts have been supplied
in the forms/webutil directory for you.
And if I remeber well, there should be a README.html in a doc /dir

Similar Messages

  • PC and Windows 8.1 used mark illustrator error: 16

    I have a PC and Windows 8.1 used mark illustrator error: 16 Perform reinstallation of the program and the error continues .

    Karen,
    Did youreinstall using the full three step way?
    Uninstall, run the Cleaner Tool, and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • How do you use user defined error messages in Value Help?

    Hi,
    I'm currently working on a Modifiable Value Help Selector in Web Dynpro Java, and I want to use a user defined error message when I validate the values entered by a user. Currently, it's returning its default error message ("Character <string> does not match...").
    Since the project requires a different error message, is there a way to override the default error message and use my defined error message instead?
    Thanks!

    Hi Angelo,
    I am not sure why message area is showing both Custom and inbuilt messages but you can try the following:
    i guess you must be using reportContextAttribute exception for showing Error messages on the input fields as well.in that case you can disable the message area so messages will appear only on the Context level ie; on input fields.
    For other messages apart from validation messages you can enable the message area before reporting the exception.
    make sure the boolean context variable which will be used for enabling and disabling the message area should have Readonly property set as true.
    I am not sure whether this is the only solution for this but you can try and see if it works.
    Siddharth

  • Is there a custom function available which can be used for logging errors captured in a sp in a sql table

    Is there a custom function  available which can be used for logging errors captured in a sp during and after execution in a sql table?
    Basically we  would like to utilize such function  in every sp and log errors of each sp in a error log table
    Mudassar

    Thanks .
    I was able to write this however I am thinking I am missing something
    CREATE FUNCTION testfunction1()
    RETURNS @temp_error TABLE (
    id int identity(1,1),
    procedure_name varchar(255),
    line_number int,
    error_number int,
    error_message varchar(max),
    error_state int,
    error_severity int,
    occurence_datetime datetime default current_timestamp,
    user_name sysname default suser_name(),
    login_name sysname default suser_name()
    AS
    BEGIN
    insert @temp_error(procedure_name,line_number,error_number,error_message,error_state,error_severity)
    select error_procedure(),error_line(),error_number(),error_message(),error_state(),error_severity()
    RETURN;
    END;
    CREATE TYPE test_type AS TABLE(
    id int identity(1,1),
    procedure_name varchar(255),
    line_number int,
    error_number int,
    error_message varchar(max),
    error_state int,
    error_severity int,
    occurence_datetime datetime default current_timestamp,
    user_name sysname default suser_name(),
    login_name sysname default suser_name()
    GO
    create proc usp_error_test
    @test_type AS test_type READONLY
    as
    begin
    begin try
    select 1/0
    end try
    begin catch
    select * from testfunction1(@test_type)
    end catch
    end
    Mudassar

  • While using F-29 ERROR:-NO SPECIAL GL DEFINED FOR ACCT TYPE D

    Dear sap guru's
    Please  help us  to sort out this problem as on urgent basis.............we  will mostly  appreciates your solution.
    Matter:While using f-29  error:-NO SPECIAL GL DEFINED FOR ACCT TYPE D.IND A RECON ACCNT 160100000

    Dear  Sap  Team
    I would like to inform you that this problem is belongs to FI part
    I want to know where i can maintain this data please tell me the table or layout from where i can maintained,I will mostly appreciate your solution...............

  • I have a message using CS5.5 Error:131:4

    I have a message using CS5.5 Error:131:4

    John I’m sorry, It was not my intention to make you feel bad is that I don't know how to use the forum. I have a lot of patient I have been waiting for 3 days From Adobe to help me with this problem.
    Edwin

  • Hello !! Because if I talk daily to the dame Person for FaceTime and two are always in the same place, once day face time no prolem speak for another day and I have to use skype for error appearing face time ? Thanks for your answers.

    Hello !! Because if I talk daily to the same Person for FaceTime and two are always in the same place, once day face time no prolem speak for another day and I have to use skype for error appearing face time ? Thanks for your answers.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
     Cheers, Tom

  • How do we use Data rules/error table for source validation?

    How do we use Data rules/error table for source validation?
    We are using OWB repository 10.2.0.3.0 and OWB client 10.2.0.3.33. The Oracle version is 10 G (10.2.0.3.0). OWB is installed on Linux.
    I reviewed the posting
    Re: Using Data Rules
    Thanks for this forum.
    I want to apply data rules to source table/view and rule violated rows should go to defined error table. Here is an example.
    Table ProjectA
    Pro_ID Number(10)
    Project_name Varchar(50)
    Pro_date Date
    As per above posting, I created the table in object editor, created the data rule
    NAME_NOT_NULL (ie project name not null). I specified the shadow table name as ProjectA_ERR
    In mapping editor, I have projectA as source. I did not find error table name and defined data rules in table properties. It is not showing up the ERR group in source table
    How do we bring the defined data rules and error table into mapping?
    Are there any additional steps/process?
    Any idea ?
    Thanks in advance.
    RI

    Hi,
    Thanks for your reply/pointer. I reviewed the blog. It is interesting.
    What is the version of OWB used in this blog?
    After defining data rule/shadow table, I deployed the table via CC. It created a error table and created the all the source coulmns in alphabatical order. If I have the primary key as 1st coulmn (which does not start with 'A') in my source, it will apprear middle of of columns in error table.
    How do we prevent/workaround this?
    If I have source(view) in sch A, how do we create Error table in Sch B for source(view)?
    Is it feasible?
    I brought the error table details in mapping. Configured the data rules/error tables.
    If I picked up 'MOVE TO ERROR' option, I am getting "VLD-2802 Missing delete matching criteria in table. the condition is needed because the operator contain at least one data rule with a MOVE TO ERROR action"
    On condition Loading - I have 'All constraints' for matching criteria.
    I changed to "no constraints' still I get the above error.
    If I change to 'REPORT' option instead of 'MOVE TO ERROR' option, error goes off.
    Any idea?
    Thanks in advance.
    RI

  • How to resolve "You don't have permission to use the application" errors?

    We've been struggling with managed preferences, specifically applications, for a few users. They have mobile home folders which live on a Mac OS X 10.6.x Snow Leopard Server AFP server, preferences which are managed (by group) on a Mac OS X 10.6.5 Snow Leopard Server Open Directory Master, and the clients are running Mac OS X 10.6.4 Snow Leopard (bound to the Open Directory Master). There are also two Mac OS X 10.6.4 Snow Leopard Server Open Directory Replicas. We always manage applications and DO NOT sign the apps when adding them in Workgroup Manager.
    Essentially, key applications are unable to run due to the "You don't have permission to use the application" errors, even though they're explicitly whitelisted. (See some prior investigation over on Serverfault.) After seeing that the Mac OS X 10.6.5 Server update included the following fixes, we upgraded our Open Directory Master to 10.6.5:
    * Addresses an issue that could prevent managed preferences from being applied when a user logs in on a workstation that has been idle.
    * Fixes an issue that could prevent administrators from bypassing client management settings on a workstation.
    This seemed to improve the situation slightly, our most important application now seems to be allowed. Occasionally, it'll give the same error, but a simple log out & back in allows it again. We have not upgraded the client workstations with the Mac OS X 10.6.5 update as it doesn't note any related fixes and we haven't fully qualified it for mass deployment.
    We now have two applications that live in ~/Applications which are explicitly whitelisted (again, NOT signed), which fail with the same error, but logging out & back in does not resolve it. `sudo mcxrefresh -n 'user'` doesn't resolve the issue. In fact, `sudo /System/Library/CoreServices/ManagedClient.app/Contents/MacOS/ManagedClient -f -u `id -u 'username'`` fails with the following error:
    ManagedClient- bad parameter to -u option: use format '-u 501'
    Today I was able to catch the following in /var/log/system.log while attempting to run one said applications:
    Dec 22 17:36:24 hostname parentalcontrolsd[43221]: -[ActivityTracker checkApp:csFlags:] [954:user] -- * Incoming app appears to be masquerading as white listed app and failed signature validation: /Users/user/Applications/FileMaker Pro 5.5/FileMaker Pro.app/Contents/MacOS/FileMaker Pro. Note: This may be a valid app of a different version than what was whitelisted (on a different volume?)
    Dec 22 17:36:24 hostname [0x0-0xa42a42].com.filemaker.filemakerpro[43304]: launch of /Users/user/Applications/FileMaker Pro 5.5/FileMaker Pro.app/Contents/MacOS/FileMaker Pro was blocked
    Dec 22 17:36:24 hostname com.apple.launchd.peruser.1340[6375] ([0x0-0xa42a42].com.filemaker.filemakerpro[43304]): Exited with exit code: 255
    Dec 22 17:36:24 hostname parentalcontrolsd[43221]: -[ActivityTracker(Private) _removeAppFromWhiteList:] [1362:user] -- * Couldn't find local user record
    So, even though the apps are listed in Workgroup Manager and are unsigned, and also appear in '/Library/Managed Preferences/user/com.apple.applicationaccess.new.plist', it appears that the client somehow thinks they don't match what's in the whitelist even thought WE DON'T SIGN THEM WHEN WE ADD THEM!
    What might be causing this? Any further troubleshooting tips would be GREATLY appreciated!

    According to the [Code Signing Guide|http://developer.apple.com/library/mac/#documentation/Security/Conceptual /CodeSigningGuide/Procedures/Procedures.html#//apple_ref/doc/uid/TP40005929-CH4- SW2], it appears that there is no way to remove signing (emphasis mine):
    "You can take a partial-update approach to revising your code on the user’s system. To do so, sign the new version as usual, then calculate the differences between the new and the old signed versions, and transmit the differences. Because the differences include the new signature data, the result of installing the changes on the end-user's system will be the newly signed version. You cannot patch a signed application in the field. If you do so, the system will notice that the application has changed and will invalidate the signature, +and there is no way to re-validate or resign the application in the field.+"
    Upon further investigation, the version of FileMaker 5.5 in question appears to be signed even after a fresh install from original install media. I wouldn't have thought Code Signing was around back then (2001). And the code signing appears to match between the fresh install (to a new location) and the original install. I'll attempt to sign it in WGM and install the same, signed copy everywhere.
    Also, I looked at one of our other working primary applications (4D.app) and it is unsigned, but appears in the Firewall as "Allow incoming connections", so I don't believe that the Application Firewall is necessarily signing apps automatically (but I certainly won't be ruling it out).
    I haven't checked yet, but the other application that's failing is "Parallels Desktop 6", which I'd bet is signed. I wonder if the "Automatically allow signed software to receive incoming connections", which is checked, would come into play at all?
    Thanks for pointing out how to use `codesign` to check whether an application is signed or not, this seems to be the first real break on this case.

  • After publishing an adobe captivate 8 file that has a video I got this message when the video slide starts, I'd appreciate if you have any useful suggestions.   Error #2044: Unhandled skinError:. text=[IOErrorEvent type="ioError" bubbles=false cancelable=

    After publishing an adobe captivate 8 file that has a video I got this message when the video slide starts. I'm using Adobe media encoder and it outputs the file as f4v formate and when inserted into the adobe captivate 8 project, I found that I'm still getting the same error message after publishing the project. I'd appreciate if you have any useful suggestions.
    Error #2044: Unhandled skinError:. text=[IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2036: Load Never Completed. URL: file://C:\Users\User\AppData\Local\Temp\Rar$DIa0.291\haloSkin1_as3_progressive.swf"]
    Thanks in advance
    Warm Reagrds

    After publishing an adobe captivate 8 file that has a video I got this message when the video slide starts. I'm using Adobe media encoder and it outputs the file as f4v formate and when inserted into the adobe captivate 8 project, I found that I'm still getting the same error message after publishing the project. I'd appreciate if you have any useful suggestions.
    Error #2044: Unhandled skinError:. text=[IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2036: Load Never Completed. URL: file://C:\Users\User\AppData\Local\Temp\Rar$DIa0.291\haloSkin1_as3_progressive.swf"]
    Thanks in advance
    Warm Reagrds

  • Hello apple.help me network iphone 4 use ios7.12 error network.acoount icloud apple please help support errors no service network.thank you

    hello apple.help me network iphone 4 use ios7.12 error network.acoount icloud.apple please help support errors no service network.thank you
    <Personal Information Edited by Host>

    tran ngoc nhan,
    Viết bằng tiếng mẹ đẻ của bạn?
    Tôi đoán Việt Nam?
    Chúng tôi có thể dịch!
    Nói cho tất cả vấn đề của bạn!
    Cung cấp cho nhiều chi tiết!
    Nếu không Việt Nam, dịch này ở đây!
    https://translate.google.com/
    Write in your native language?
    I guess Vietnamese?
    We can translate!
    Tell all your problem!
    Give much detail!
    If not Vietnamese, translate this here!
    https://translate.google.com/
    CCC

  • Activity log for bug 278860: confusing "profile in use"/"already running" error when profile is missing (not found) did anyone find a fix for this? Thanks, Edie

    bug 278860: confusing "profile in use"/"already running" error when profile is missing (not found)
    Apparently the profile .default is missing. Therefore the bug 278860 is activated and I can't start Firefox. Is there a solution?

    I did some googling and found alot of topics from you on this issue, to me it simply seems like on of the connectors is broken or loose.

  • HT201413 can't restore iphone using iTunes with error 1611

    can't restore iphone 4S using iTunes with error 1611

    See Here for your Error Code...
    http://support.apple.com/kb/TS3694

  • Using the general error handler on an embedded rt target

    I would like to know how the general error handler can be best employed
    with Labview RT on a Compact Fieldpoint controller.  Clearly no
    dialogue options are valid so how can error information be accessed
    remotely - is there an error log file available on the controller?

    I think there are plenty of ways to handle errors with Labview RT on a Fieldpoint controller.
    Usually I use the general error handler vi to catch the error and get the error message (sure, no dialog), then write the eroor message into a log file (ordinary text file created on the controller), and/or send the eroor message through TCP/IP network to the host. You can use FTP to open, read and tranfer the log file at host. Hope help.
    Xu

  • Intermittent "Cannnot send message using the server" error

    I've been getting an intermittent "Cannnot send message using the server" error for a couple of months now. It happens every 3 or 4 e-mails I try to send or reply to. I select "Try Again Later" and then open the message from the Outbox and resend with no problem.
    My setup is;
    Mail 2.1.1
    OSX 10.4.9
    MacBookPro
    CableVision is my provider
    It's a POP account
    My incoming server is pop.secureserver.net
    My outgoing server is smtpout.secureserver.net
    Server port 3535
    Authentication - Password
    SSL is off
    Any help would be appreciated

    Hi Dave, and a warm welcome to the forums!
    No expert on this, but I wonder since your using the secureserver, if SSL might not work better.
    Or maybe try...
    Incoming Mail Server Name (POP3): pop3.optonline.net
    Outgoing Mail server Name (SMTP): smtp.optonline.net
    or mail.optonline.com for both!?
    Nearly impossible to find any help on Cablevision's site.
    Also, I wonder if this might have something to do with Tiger's Mail also...
    http://discussions.apple.com/thread.jspa?threadID=1372763

Maybe you are looking for

  • Password cache - for user identity that share the same application server

    I have different user identity that share the same application server passwords. When I create a password cache entry for an an application server I have to be specified the User identity for the application server. Is there a way to indicate multipl

  • How to validate when date format is diff Internally and externally

    Hello, How can I validate the Date format if Internal format and external format is different. Ex : *  SELECT SINGLE CRTSP **                FROM /SAPSLL/PR **                INTO L_CRTSP **                WHERE CRTSP IN S_CRTSP . CRTSP (YYYY/DD/MM H

  • EDI: Partner profile inbound not available

    Hi All, I am doing File to IDOC Scenario. File got picked up and every where message is successfull, but when i am checking into WE05 of R3 i am getting an error EDI : Partner Profile not available. I have already created partner profile in R3 side a

  • What is the best way to get another object's method to update my GUI?

    package stuff; import java.awt.event.*; import javax.swing.*; import java.awt.*; public class Test extends JFrame{   private static JButton ProcessButton = new JButton();   private static JLabel jLabel2 = new JLabel();   public static void main( Stri

  • About XL Reporter

    Hello Experts                           I have Created a Profit And Loss Report Containing all the GL Accounts ,Now I need to filter this report According to Date(Posting date) i.e I have to specify the date range (From Date to To Date) How can i cre