Reg:Security error while DBAppTable provisioning

Hi all
2009-03-27 11:57:42,562 INFO [STDOUT] Running GENERICADAPTER
2009-03-27 11:57:42,562 INFO [STDOUT] Target Class = com.thortech.xl.gc.runtime.GCAdapterLibrary
2009-03-27 11:57:42,625 ERROR [XELLERATE.GC.FRAMEWORKPROVISIONING] SecurityException
This is the exception I am facing when proviosioning user to DB using DB app tables connector.
I am using OIM9101
and Oracle 9i databsae.
When I googled I found that , there is patch available in metalink:Patch 8273427. Applying the patch is only way to resolve this?
Even when i download this from metalink , my winzip says it is not a valid archive..
is there any otherway to resolve this.
Thank you
sas

Hey guys! 2 days and no replies yet. please help me with this.

Similar Messages

  • Error while importing provisioning framework in identy center 7.2-sp2

    Hello, I am in the process of implementing IDM 7.2 -sp2 and getting error while importing provisioning frame work. Have you any one faced this problem?
    :F:Could not import global script 70/sap_core_setContextVariable to identity center.
    Thanks and regards,
    Ranga

    Hi All,
    I am also getting the same error. please suggest...

  • WS-Security: Error while valdiating the digital signature

    Hi
    We are getting an exception (in the J2EE logs) when an external party calls our SOAP webservice with WS-Security. We are using their public certificate to verify their signature (self signed certificate). Their SOAP Security header looks correct - below is the error in the J2EE logs.
    VerifyException. Key: 0200
    [EXCEPTION]
    com.sap.security.core.policy.exceptions.VerifyException: [_policy0200] Error while valdiating the digital signature. The error was java.lang.NullPointerException null.
    at com.sap.security.core.securitypolicy.assertions.IntegrityAssertion.verify(IntegrityAssertion.java:376)
    at com.sap.security.core.policy.expressions.AllExpression.verify(AllExpression.java:149)
    at com.sap.security.core.policy.WSPolicy.verify(WSPolicy.java:43)
    Any help would be greatly appreciated.

    What do you mean by "external party" and "self signed certificate" in this context?
    A 3rd party vendor or customer is giving you their server's "self signed" certificate to use publicly?
    Apart from this being more prone to admin errors than server certificates already are, I hope that they trust you...
    Cheers,
    Julius

  • Error while Importing Provisioning

    DearZ
    I am new to SAPNW IDM. I have followed the documents available in sdn.
    While importing Provisioning Framework, I am getting an error "Could not update task '299/Change Company Address'.
    Don't know how to proceed further.Please help.
    Regards
    Renjith

    Hi Renjith
    Plz install the latest patch for IDM. Hope this will solve the Issue
    SAP NW IDENTITY MGMT 7.0 IC SP 02 Patch 2, note 1225788
    Regards
    Vinod
    Edited by: vinod G on Aug 25, 2008 11:14 AM

  • Security error while loading pdf file in jsp in firefox?

    When i type in the following link manually in firefox as " file://///172.16.2.1/copyediting/ELS/mallet.pdf", pdf file is loaded successfully in the firefox browser. PDF file is located in remote server which is referred by IP 172.16.2.1.
    I've assigned the Same link in a String in jsp page and tested it through my tomcat application as
    <%
    String linktotest="file://///172.16.2.1/copyediting/ELS/mallet.pdf";
    %>
    <a href="<%=linktotest%>">link</a>
    when i click on the hyperlink , the pdf is not loaded in firefox and i'm getting the following error in firefox error console
    Security Error: Content at http://172.16.3.222:8080/FMS/source/journal/ProductionEntry.jsp may not load or link to file://///172.16.2.1/copyediting/ELS/mallet.pdf
    can any one please give me the solution.

    Links and forms in HTML should point to public URL´s (with http:// or https:// protocol), not to the file system (with file://).
    If those files are not public accessible by URL, then you need to create a servlet which does the file streaming task. This example may be useful then: [http://balusc.blogspot.com/2007/07/fileservlet.html].

  • Java Security Error while Launching the Application through JNLP

    Hi!,
    I have a problem in launching my Application through JNLP. It is giving the Error dialog as "Unable to lauch application" with the dialog title as "Java Security Error".
    I don't know why this problem is coming but when I have reset my profile on my system & then I tried to launch the same application & I got success.
    Can anyone suggest me what was the problem?
    Pradeep Gupta

    hi,
    usually it is the web dynpro launch system that is causing the issue, OR there is a misconfiguration in the backend like the tasks are set up with com.sap/esslea in the backend and the xml file is referencing sap.com <SWITCH>/esslea and the dynpro is showing this as not deployed.
    Regards
    Sharanya Rajagopal

  • Reg.SMTP Error while using UTL_MAIL in Oracle 10g

    Hi,
    I am getting the following SMTP error while trying to use the UTL.MAIL package of Oracle 10g. The query is as follows.
    begin
    utl_mail.send(
    sender => 'NAVEEN',
    recipients => '[email protected]',
    subject => 'Testing utl_mail',
    message => 'The receipt of this email means'|| ' that UTL_MAIL works'
    end;
    UTL_MAIL package is installesd and the port 25 is configured and firewall is changed.
    The same block was working fine before 5 days and now is giving the error as
    ORA-29279: SMTP permanent error: 501 badly formatted MAIL FROM user - no "<"
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 222
    ORA-06512: at "SYS.UTL_MAIL", line 407
    ORA-06512: at "SYS.UTL_MAIL", line 594
    ORA-06512: at line 2
    Could you please help me out how to proceed???
    Regards,
    Naveen Kumar.

    Can you back that statement about an Oracle UTL_SMTP bug up with an actual bug number??
    From what you have posted, this is not a bug!! but expected and documented (RFC'ed) SMTP server behaviour.
    My proof:
    /home/billy> telnet mail 25
    Trying 165.143.128.26...
    Connected to mail
    Escape character is '^]'.
    220 CNTRRA20-GTW01 [CNTRRA20-GTW01] Thu, 06 Mar 2008 14:26:26 +0200
    HELO 10.251.93.58
    250 CNTRRA20-GTW01 Hello [10.251.93.58]
    MAIL FROM: naveen <[email protected]>
    501 naveen <[email protected]> : illegal character(s) in domain string
    MAIL FROM: NAVEEN
    501 NAVEEN : domain string is NULL.
    quit
    221 CNTRRA20-GTW01 closing connection. Goodbye!
    Connection closed by foreign host.
    /home/billy>
    As you can clearly see, the SMTP server expects a DOMAIN name as part of the MAIL FROM address. It also does not accept the alternative format suggested.
    Yes, not all SMTP servers are equal and some support additional formatting.
    But to imply that because the SMTP server does not accept your address formatted as string NAVEEN, it is a UTL_SMTP problem, sounds like a smelly one to me.

  • Security Error while trying to deploy my project to the application server from jDeve

    Dear All,
    I'm trying to deploy my project to the application server from jDeveloer but i got the following error :
    Invoking Oracle9iAS admin tool...
    D:\Oracle\OUIHome\jdk\jre\bin\javaw.exe -jar D:\Oracle\OUIHome\j2ee\home\admin.jar ormi://M-AMIN:3101/ admin **** -deploy -file D:\Oracle\OUIHome\jdev\mywork\Portal\UserManager\userRegister.ear -deploymentName userRegister
    Security error: This operation was denied. The admin.jar utility can not be used to perform operations against OPMN managed OC4J instnaces. Please use Enterprise Manager or dcmctl instead. Refer to the Oracle9iAS Admin Guide or the OC4J User's Guide for more details.
    Exit status of Oracle9iAS admin tool (-deploy): 1
    #### Deployment incomplete. #### Sep 10, 2002 4:16:53 PM
    Any help will be appreciated
    Regards,
    Mohammed Amin

    In JDev 9.0.2, to deploy to the full 9iAS server (instead of just Oracle9iAS Containers for J2EE [OC4J]), you have to use Enterprise Manager or DCM to deploy your application.
    In JDev 9.0.3 Preview, there is a way to have JDev perform a deployment via DCM for you, if you install a DCM Servlet into 9iAS that comes with JDeveloper.
    By JDev 9.0.3 Production, if you also use Oracle9iAS 9.0.3 Production, it should be possible to deploy to iAS 9.0.3 out-of-the-box.

  • Security error while Editing Process task 11gR2

    Hi Experts,
    I have made a custom adaptor and trying to implement same on the Xellerate User, Add user task under task dependency --> Dependent Task. While actually inserting the adaptor task, i am recieving the error:
    Error Keyword: DOBJ.INVALID_UPDATE
    Description: The security level for this data item indicates that it cannot be updated.
    Remedy:
    Action: E
    Severity: M
    Help URL:
    Detail:
    I tried with updating the mil table with the below query:
    update mil
    set mil_data_level = 0
    where mil.mil_key = (select mil.mil_key from mil,pkg,tos,obj
    where mil.mil_name = 'Add User'
    and obj.obj_name='Xellerate User'
    and obj.obj_key = pkg.obj_key and tos.pkg_key = pkg.pkg_key and mil.tos_key = tos.tos_key)
    commit
    restarted the server also, but no luck.
    Please help!!

    Just because Event Handler is not getting invoked, you should not have switched to touching Xellerate User....
    Rather focus on learning Event Handler...
    *8 Developing Event Handlers for Extending User Management Operations*
    http://docs.oracle.com/cd/E21764_01/doc.1111/e14309/oper.htm#CCHFBGAA
    OTN has discussed Event Handlers in details...

  • Security error while save pdf files in portal

    I am using SAP EHSM 1.0 a portal based application for SAP EH&S. It uses ADS for generating interactive forms. Forms are getting generated with out error but when saving it the portal throws the below error
    Upload of this file type (application/pdf) is not allowed (security issues)
    I thought its an security related to issue with ADS but then when I tried to upload a PDF while from my desktop and I got the same error.
    Is there a setting in NetWeaver  portal to allow PDF extension. Please let me know. Thanks.
    Thanks
    Pugazh

    Check whether you have S_GUI Authorization Object in ECC ? if you don't have it, check with your security team to assign it for you in a ROLE and the values below
    Possible values:
    61: Download; This authorizes you to save lists displayed on the screen in local files (either unconverted, in spreadsheet format, or in Rich Text Format). This authorization can only be granted or denied fo all lists in the system - you cannot restrict it to a selection of lists.
    60: Upload; This authorizes you to load data into the system using ws_upload or gui_upload. You cannot select the data to be uploaded.
    04: Print; (not used)
    02: Change; (not used)
    Regards,
    Arjun

  • WS Security error while invoking EBS R12 Conc job

    Hi,
    I have 2 soa services, where <orchest_Service> calls <conc_job_Loader> service. <conc_job_Loader> service is used to schedule a EBS R12 concurrent program. the <orchest_Service> calls the <conc_job_Loader> service and passes all required parameters. I also see that a concurrent request id is generated. below is the log details:-
    <outputVariable>
    <part name="payload">
    <Envelope>
    <Body>
    <Response>
    <status>1383520</status>
    <detail_text>Concurrent Job: Bank Statement Loader is submitted with request id: 1383520</detail_text>
    </Response>
    </Body>
    </Envelope>
    </part>
    </outputVariable>
    </input>
    <fault>
    <bpelFault>
    <faultType>0</faultType>
    <remoteFault>
    <part name="summary">
    <summary>oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client received SOAP Fault from server : InvalidSecurity : error in processing the WS-Security security header</summary>
    </part>
    <part name="detail">
    <detail>Client received SOAP Fault from server : InvalidSecurity : error in processing the WS-Security security header</detail>
    </part>
    </remoteFault>
    </bpelFault>
    </fault>
    <faultType>
    <message>0</message>
    </faultType>
    i am passing all details like
    Responsibility     responsibility_key (such as "SYSTEM_ADMINISTRATOR")
    RespApplication     Application Short Name (such as "FND")
    SecurityGroup     Security Group Key (such as "STANDARD")
    NLSLanguage     NLS Language (such as "AMERICAN")
    Org_Id     Org Id (such as "202")
    please assist resolve the error...

    Hi James,
    Thanks for the quick reply.
    We've tried to call that web service from an HTML designed in Visual Studios with the same username and password and its working fine.
    But on the BPEL console, we are getting the error as mentioned.
    Also if you can tell me how to set the user name and password in the header of the parter link.I could not find how to do it.
    Thanks,
    Saurabh

  • Security Error while invoking Webservice

    Hi,
    We have a BPEL flow that invokes a ADF BC webservice that is running in a different Weblogic instance.
    Getting the following error on invoke activity that call the ADF BC service.
    <remoteFault>
      <part  name="summary">
      <summary>InvalidSecurity : error in processing the WS-Security security header</summary>
      </part>
      <part  name="detail">
      <detail>oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client received SOAP Fault from server : InvalidSecurity : error in processing the WS-Security security header</detail>
      </part>
      <part  name="code">
      <code>{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}InvalidSecurity</code>
      </part>
    </remoteFault>
    Whereas, when I call the ADF service through Webservice Tester, the call goes through fine.
    Any additional settings has to be done on the SOA server for this work?
    Any pointers in solving this would be helpful.
    Thanks

    I hope the sun forum can help for me. Lets see

  • SECURITY - Error while trying to access a remote file

    Hello All,
    I've got a little issue !
    I've got two PCs on the network. On the first one there is a server running.
    This server has to read a textfile to add data in a database.
    The second one only contains textfile to transfer.
    When I try to read a textfile located one the same Pc as the server there is no problem.
    But when I try to read a textfile located on the second PC I've got an error
    FILE NOT FOUND :\\\\frc-pil_trieur\\Log_Trieur\\Log_Message.txt
    java.io.FileNotFoundException: \\frc-pil_trieur\Log_Trieur\Log_Message.txt (�chec d'ouverture de session : nom d'utilisateur inconnu ou mot de passe incorrect)
    at java.io.RandomAccessFile.open(Native Method)
    at java.io.RandomAccessFile.<init>(RandomAccessFile.java:212)
    at java.io.RandomAccessFile.<init>(RandomAccessFile.java:9 )
    at ressource.FileReaderThread.initFile(FileReaderThread.java:233)
    at ressource.FileReaderThread.run(FileReaderThread.java:114)
    at java.lang.Thread.run(Thread.java:595)
    I'm working on a windows environment.
    I think it's security problem but I don't what I can use to solve the issue
    Please help me...

    Hi ;
    pelase check below which could be similar error like yours
    Troubleshooting of Runtime Errors of Customer Intelligence Reports [ID 284829.1]
    Regard
    Helios

  • Reg : Getting error while approving leave request

    Hello Experts,
    Manger is getting and error message u2018Work item 000000000000 cannot be readu2019 while
    Approving the leave request of one his reportee. This error is triggering for only one
    Reportee. 
    Experts please kindly help us.
    Regards,
    Raj

    Hi Raj,
    There are a number of issues that could cause this.  Can you share your scenario (where is manager approving the request - via SAPGUI, ESS, MSS?)  Are you using an SAP standard workflow?
    Plus, there are lots of threads in SCN on this topic.  Have you checked any of these?
    Good luck,
    Sue

  • Reg. Error while Full load - process chain

    Hi,
    I am running a process chain, which is a full load. In Manage screen it is in RED status whereas, While i chekced in Monitor screen it is showing as "Missing messages" . While I checked in the error and warning messages, I found that the data packet should be run manually. So I tried Manual update option by killing the job manually. After doing this i tried to run the same process with "Back to Technical Status" option. While performin this again i got an error saying  "REQUXXXX terminated, as data packet 0000XX could not be locked"
    How this error can be rectified.
    Please advice.
    Thanks in advance!!!
    Regards,
    Melissa

    Hi Melissa.....
    While i chekced in Monitor screen it is showing as "Missing messages"........where did u got the message.............in the data packet.......right...........?..........
    I found that the data packet should be run manually. So I tried Manual update option by killing the job manually..................which job u hav killed........? Extraction Job?If u hav killed the Extraction job........then Manual update is not possible..............Manual update is only possible when the Extraction job will get completed successfully........
    Due to this u r getting the Error Message error saying "REQUXXXX terminated, as data packet 0000XX could not be locked"....................When the request itself does'nt exist............how could u do Manual update for that deletedrequuest........
    Then only option is..............make the QM status red.............delete the request from the target and repeat the load.........
    Hope this helps.......
    Regards,
    Debjani........

Maybe you are looking for

  • NULL and Empty String

    Hi There, As far as I know, Null is not the same as an empty string; however, when I try this out, I get some unexpected results (well, at least unexpected for my liking): SQL> CREATE TABLE TS (MID NUMBER,   2  MDESC VARCHAR2(20) DEFAULT '' NOT NULL)

  • Arabic characters are no longer displaying properly in NB 6.7

    Hello all - Up until NB 6.5.1, my GUI displayed Arabic characters properly as typed. As I shifted to NB 6.7 Beta today, all those Arabic characters are shown as funny binary-looking characters! But, this only occurs when I am running from within the

  • A form that displays calculated data

    Hi, I'm trying to insert a function from my database onto the webpage. I created a form, and on that form is a formula that adds to numbers together (for simplicity). I want to be able to insert these two numbers onto the webpage (which I can do) and

  • Clipping paths - outer and inner problem

    Mac G5 OS 10.4.11 CS4. - I have an image of a box shape paper clip I wish to have as transparent backgrounds and use in magazine articles. I make a clipping path on the outer shape and it works fine saved as a JPG (see attachment) but I also want the

  • UWL in CE: APIs and... DC(s) ???

    Please see my post [here|UWL in CE: APIs and... DC(s) ???;. Cross post is justified (read). Thanks Alessandro