Urgent: client_ole2 fails where ole2 succeeds

I have a forms proc which works fine using OLE2 calls under Forms 6i, but which fails using CLIENT_OLE2 calls under Forms 9i.
All I did to upgrade the proc was a global search and replace ('ole2.' becoming 'client_ole2.').
The call which fails is:
client_ole2.invoke_num(v_ole_userproperty,'Value',v_ole_arglist);
I have recompiled both webutil.pll and my fmb using 'compile all' and rebuilt both.
This is urgent, so just in case webutil is now supported (!) I will also post on Metalink.
Please assist.
John D

Hello,
I have found that when you pass a NULL value it fails.
So I had to modify my code to put a condition before writing into a cell for example to check whether it is NULL and in that case, I don't call the CLIENT_OLE2 function. Or you can also to a NVL(your_variable, ' ') that way, you won't pass NULL values to CLIENT_OLE2.
Hope this helps.
MJH

Similar Messages

  • Mail fails where others succeed

    I'm trying to connect to one of my accounts, which is based on my university's exchange server and deployed via IMAP. When I give the credentials to Mail, it fails each time, insisting that the account doesn't exist or can't be connected to or something. Worryingly though, using exactly the same settings, programs like Thunderbird and the horrible Entourage succeed with no hitch whatsoever.
    I think the problem might be in the fact that the username has two backslashes ... possibly. Does Mail have problems with specials?
    If anyone could possibly shed light on this I'd really appreciate it ... because to be frank it drives me barmy!

    this same thing is happening at my company as of tuesday oct 10th. entourage vX and OS X's mail program will not allow users to check their email, its states their username/password is incoorect. all other users that run entourage2004 are fine. any advice ? we turned strong passwords ON at the domain level last week.

  • Lms reporting success status=pass/fail, where it should give unknown while running on saba 5.3

    I am trying to run my content on SABA 5.3 , After exiting the content the lms displays success status as Pass or Fail where it should show Unknown. My content does not contain any quiz, so on which basis lms is calculating the success status.

    Yes I know you said your content had no quiz, but please try to remember that we answer hundreds of these enquiries and it's not uncommon for people to tell us one thing when their settings say another.  So I have the habit of asking to see the actual screenshot.
    Each LMS interprets the SCORM standard a little differently.  In SCORM 2004 a course module can have both a status for Complete or Incomplete, as well as a separate status for Pass or Fail. (Under SCORM 1.2 the overall status was tracked by a single element - cmi.core.lesson_status - allowing for only a single status value that would boil down to Complete vs Incomplete or Pass vs Fail values.
    Under SCORM 2004 there are two separate elements tracking completion and success.
    The SCORM 2004 element cmi.completion_status is designed to indicate whether the learner has completed the SCO and can take the following status values:
    completed,
    incomplete,
    not attempted,
    unknown
    Your Pass/Fail status in SCORM 2004 falls under the element called cmi.success_status. This one indicates whether the learner has mastered the objective and can take the following values:
    passed,
    failed,
    unknown
    So while it is possible for a value of "unknown" to be set for either cmi.completion_status or cmi.success_status, I don't think this would be very commonly done for a Captivate module that actually has interaction data being sent to the LMS.  If the user is interacting with the content at all it would seem more likely that you'd be getting a 'completed' or 'incomplete' status value in the completion element and a 'pass' or 'fail' value in the success_status element.
    The bit I don't understand is why are you particularly keen to see a value of 'unknown' showing up here?
    Check this page for information about getting SABA to work with Captivate: http://www.infosemantics.com.au/adobe-captivate-learning-managment-system-lms-guide/saba
    Perhaps one of the threads it links to will provide more help for you.

  • WLW deployment of WebApp fails, where manual deployment succeeds

    Hi,
    I have installed WL Platform 8.1 SP4 on W/XP Professional.
    I am attempting to do the most introductory task... i.e. deploy a web application consisting of two pages using WLW. The files are:
    <pre>SimpleForm.html</pre>
    <pre>SimpleFormHandler.jsp</pre>
    I wanted to access the web app as follows:
    http://localhost:7001/TestProj/SimpleForm.html
    The <pre>SimpleFormHandler.jsp</pre> is registered as the form's action method. When the form is submitted, the JSP simply displays the form data.
    It works as expected when I build the WAR file manually and deploy it by copying the file to the 'application' directory for autodeployment.
    But I am baffled how to do this using WLW. Which is really the purpose of my experiment.
    Hopefully, you can guide me here. I have listed the steps I've taken so maybe you can identify my misstep and set me back on the right path.
    To keep things <i>real</i> simple, here is my Domain configuration, HTML form and JSP file.
    <pre>-- TestDomain: Basic WebLogic Server Domain Template -----------
    Custom: The only thing I customise is the Name = "adminserver".
    I select JRockit and Development Mode.
    Configuration Name: TestDomain
    ----------------------------------------------------------------</pre>
    <pre>-- SimpleForm.html -----------------------------------------------
    <html>
    <head>
    </head>
    <body>
    <h1>This is a test html file</h1>
    <form action="SimpleFormHandler.jsp" method="get">
    Enter first name: <input type="text" name="firstName">
    <input type="submit">
    </form>
    </body>
    </html>
    -------------------------------------------------------------------</pre>
    <pre>-- SimpleFormHandler.jsp ------------------------------------------
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <html>
    <head>
    <title>
    Web Application Page
    </title>
    </head>
    <body>
    <p>
    New Web Application Page
    <% String firstName=request.getParameter("firstName");
    out.println("Your first name is: " + firstName); %>
    </p>
    </body>
    </html>
    --------------------------------------------------------------------</pre>
    Here is the steps I followed.
    <b>01) WLW Menu: File->New->Application...</b>
    -> Empty Application (I also tried "Default Application")
    -> Directory: <devel_path> \TestApp
    -> Server: <domain_path> \TestDomain
    -> >>Create<<
    <b>02) WLW Menu: File->New->Project...</b>
    -> Web Project
    -> Project name : TestProj
    -> >>Create<<
    <b>03) WLW Menu: File->New->JSP File</b>
    -> JSP File
    -> File name: SimpleFormHandler.jsp
    -> >>Create<<
    Edit the file to look like the file above.
    <b>04) WLW Menu: File->New->JSP File</b>
    -> HTML File
    -> File name: SimpleForm.html
    -> >>Create<<
    Edit the file to look like the file above.
    <b>05) WLW Menu: File->Save</b>
    <b>06) WLW Menu: Tools->Weblogic Server->Server Properties...</b>
    -> Hostname: localhost
    -> Use credentials below:
    Username: system
    Password: weblogic
    All other fields are correct.
    This immediately results in a deployment error.
    <pre>"ClassNotFoundException: weblogic.servlet.WlwJSPServlet"</pre>
    This is the result of a bogus entry in weblogic.xml.
    Edit <pre>weblogic.xml</pre> to comment out the WlwJSPServlet, so it becomes:
    <pre> <!--
    <jsp-param>
    <param-name>jspServlet</param-name>
    <param-value>weblogic.servlet.WlwJSPServlet</param-value>
    </jsp-param>
    --></pre>
    <b>07) WLW Menu: File->Save</b>
    F7 (to rebuild and redeploy)
    More deployment errors, since web.xml also defines Listeners, Filters, and ....
    <b>08) WL Builder: Open TestApp</b>
    Servlets: Delete 'action'
    Filters: Delete 'PageFlowJspFilter'
    Listeners: Delete '...WebappContextListener'
    Tag Libraries: Delete netui-tags-[html,databinding,template].tld
    File->Save
    <b>09) WLW Menu: F7 (to rebuild and redeploy)</b>
    This time I get a new warning:
    <pre><The current version 0 for DataIdentifier DataIdentifierID: 1 does not match with incoming version 4 for a one-phase update.></pre>
    <b>10) Check the WLS Console</b> <pre>http://localhost:7001/console</pre>
    Deployments -> General
              TestApp EXPLODED EAR
    Deployments -> Descriptors -> application.xml
    <pre> <application>
    <display-name>TestApp</display-name>
    <module>
    <web>
    <web-uri>TestProj</web-uri>
    <context-root>TestProj</context-root>
    </web>
    </module>
    </application></pre>
    <b>11) Now try to access the web application:</b>
    http://localhost:7001/TestProj/SimpleForm.html
         -> Enter first name: Artimus
         -> >> SUBMIT QUERY <<
    This causes the following page to attempt to open:
    http://localhost:7001/TestProj/SimpleFormHandler.jsp?firstName=Artimus
    Back on the WLS console the following error:
    <pre>NoClassDefFoundError: com/bea/wlw/runtime/core/debug/DebugContext</pre>
    The full details:
    <pre>-- ERROR LOG ---
    <29/08/2005 08:47:11 PM EST> <Error> <HTTP> <BEA-101017> <[ServletContext(id=548
    7457,name=TestProj,context-path=/TestProj)] Root cause of ServletException.
    java.lang.NoClassDefFoundError: com/bea/wlw/runtime/core/debug/DebugContext
    -----------------------------------------------------------------------</pre>
    <b>12) WLW Menu: Tools->Weblogic Server->Deployment->Undeploy</b>
    Verified no apps deployed via http://localhost:7001/console
    <b>13) Now test a manual deployment:</b>
    cd {TestProj}\
    jar -cf TestProj.war *
    copy TestProj.war (domain}\applications
    <b>14) Verified TestProj deployed as Web Application via</b>
         http://localhost:7001/console
    <b>15) Access the web application from browser with:</b>
    http://localhost:7001/TestProj/SimpleForm.html
         -> Enter first name: Bach
         -> >> SUBMIT QUERY <<
    <b>16) This opens the following page:</b>
    http://localhost:7001/TestProj/SimpleFormHandler.jsp?firstName=Bach
    <b>17) The JSP displays the following in the browser window:</b>
    "New Web Application Page Your first name is: Bach "
    So manual deployment succeeded!
    --- end ---
    I would really appreciate some suggestions.
    Regards,
    Matt.

    Thanks for the response.
    I find that if I don't perform step 8, (i.e. remove the action, filter, servlets, and pageflows), then the deployment fails, since it is expecting to find modules that perform these functions.
    I am a little surprised that the Default Application, doesn't also provide default entries for these functions.
    For instance, I naively (and wrongly) anticipated that if I create a Default Application and make no changes, then I should be able to immediately deploy it. Unfortunately, this is not possible, since it complains about the entries in web.xml and weblogic.xml.
    Perhaps the minimum WebApp deployment requires that I provide the modules in the default descriptors?
    I am beginning to wonder what the absolute minimum application is that WLW can be used to deploy.
    Regards,
    Matt.

  • Reducing size of datatype involved in index fails where as increasing size work

    This question is related to my question in SO Database
    events that will cause deletion of index
    For example if i create a table like
    CREATE TABLE dbo.Customers (ID INT IDENTITY(1,1) PRIMARY KEY CLUSTERED, CustomerName NVARCHAR(200));
    CREATE INDEX IX_CustomerName ON dbo.Customers(CustomerName);
    And then try to change column datatype like shown below to 230 from 200.
    alter table Customers
    alter column CustomerName nvarchar(230) null
    The above alter command runs successfully and index IX_CustomerName is not dropped.
    But if i try to reduce the size of column to 150 from 200 then it shows error.
    alter table Customers
    alter column CustomerName nvarchar(150) null
    I get error like
    Msg 5074, Level 16, State 1, Line 1
    The index 'IX_CustomerName' is dependent on column 'CustomerName'.
    Msg 4922, Level 16, State 9, Line 1
    ALTER TABLE ALTER COLUMN CustomerName failed because one or more objects access this column.
    So reducing the size(data may loss) of a column does not work if index is present on a column where as if the index not present then above
    query works successfully. So why does it does not allow reducing the column when index present where as increasing size does not show any problem and works?

    Hello,
    Indeed, a little bit strange even because in BOL it's documented for a different behaviour, see
    ALTER TABLE (Transact-SQL) => Remarks =>
    "Changing the Size of a Column
    You can change the length, precision, or scale of a column by specifying a new size for the column data type in the ALTER COLUMN clause. If data exists in the column, the new size cannot be smaller than the maximum size of the data. Also, the column cannot
    be defined in an index, unless the column is a varchar, nvarchar, or varbinary data type and the index is not the result of a PRIMARY KEY constraint. See example P."
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • HT1346 My Battery Keeps failing Where do I get a replacement?

    My Battery on my Raid card keeps failing.
    Where do I get a replacement?
    is there any model specifics I should look for?
    Thanks

    The "simply little sleeve" that came with the iPod is a case. No, Apple does not sell those cases. They come with your iPod, I doubt that you can find one on ebay.
    If your looking for something that will protect your iPod from scratches then you should check out the Invisible Shield. It protects your iPod from any scratches! Here is the site....
    Invisible Shield

  • Urgent: CLIENT_OLE2.CREATE_OBJ('Excel.Application') get error

    My OS is Window server 2003, Office 2003, Oracle Form 10G
    I have installed Webutil successfully.
    Before using webutil I had tried this command: OLE2.Create_Obj('Excel.Application'). It had worked fine but when I using webutil. I replace above command with this command: Client_OLE2.Create_Obj('Excel.Application')I have gotten error.
    I don't know why. Could you help me, plz.
    Thank so much.

    More information, I see this exception in java console:
    Exception occurred during event dispatching:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.jacob)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkLink(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at com.jacob.com.Dispatch.<clinit>(Dispatch.java)
         at oracle.forms.webutil.ole.OleFunctions.create_obj(OleFunctions.java:513)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(OleFunctions.java:218)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

  • Mavericks Internet connected printer filter failed - where

    Help!!
    Until Mavericks I printed from my macbook pro laptop to a HP1100c (parallel-port interface) internet connected on my old generic laptop running Ubuntu
    Been doing this since Leopard and worked through OS updates since then without any problems. Now on Mavericks I get "Filter failed"
    I can't remember exactly how it runs - I know at one point I was using Gutenberg and I have Gutenprint 5.2 installed in /usr/share and these libs
    /usr/lib/libgutenprint.1.1.1.dylib
    /usr/lib/libgutenprint.1.dylib
    /usr/lib/libgutenprint.2.0.3.dylib
    /usr/lib/libgutenprint.a
    /usr/lib/libgutenprint.la
    /usr/libexec/cups/driver/gutenprint.5.2
    /usr/libexec/cups/filter/rastertogutenprint.5.2
    but I also have some guten stuff under macports. I long since stopped maintaining macports and it would be a major effort for me to delve into updating it.
    Anyone point me in a good direction - like everyone I need a quick fix that doesn't involve delving into how to update macports (is it even running that subsystem - I don't know now). Sure I can deal with these low level things but I have a life too - I just want it to work - understanding macports etc. again is dead time.
    Come to that I lost track of how to configure printing on  the ubuntu half of this too (though that didn't change).  It would help enormously if I knew where it was failing - what does "Filter failed" mean. It might mean some shell script somewhere failing - if so where, what subsystem ?
    andy

    Have you tried using GutenPrint 5.2.9?
    Hope this helps.

  • Export failed, where is the temp file?

    I am on version 6 of Premiere.  A media export failed in the middle due to insufficient space.  Before the export the hard drive has about 1GB of free space.  After the failed export the drive is left with 10MB of free space.  I am suspecting there might be some temporary and intermediate files created during the export process.  I checked the output folder and removed the temp file there. But the space has not been reclaimed.  Does anyone where else I should check?

    1 gig of space is bound to make the export faile.
    You need adequate space, Your disk needs to be empty for at least 25%.
    Empty your Media Cache in your prefereces/Media
    Also clean the path mentioned at the top.

  • GX620 HDD failed, where to find machine image as download?

    My neighbor's hard drive failed (or it's the controller, but the HDD just clicks and the BIOS won't see it and I get a PXE-E61: Media test failure) and they did not make backups of the machine images from the image partition (at least, Google leads me to believe that's where it's at).
    Where/how can I download the image for them so I don't have to go through the grind of reinstalling EVERYTHING for them? It's Christmas, someone take pity on the nice guy!
    Thanks in advance,
    Eric

    Thanks, dude, I'm with you.
    For my own machines, they get wiped and reinstalled. I've upgraded many Vista machines to XP after fighting with Vista all the way through SP1. Someone remind me why I waited so long again?    I'd upgrade my wife's too if I had a license of XP Tablet laying around.
    http://dotnet.org.za/codingsanity/archive/2007/12/14/review-windows-xp.aspx
    However, this is my neighbors' machine, they're far from power users, and predominately surf the web and run MS Office apps, so the default image should be fine and will save me chasing down any drivers (google seems to indicate some of the drivers are elusive - we'll see). Not sure I want to invest 3-5 hours customizing it for them, as much as I love them.
    They didn't get any discs, just the machine, the backpack, etc.
    I'll have to borrow a buddy's MSDN to get the OEM version of Vista and use the SerNo on the bottom of the machine since all my other machines came with images and not the real dealio. I have tons of original XP, NT, 95, etc. disks in the library, but no Vista.
    No response from support yet. Never heard of MSI before my neighbors asked me to look at it last night, we'll see where we end up. Looks like a decent machine, found it interesting the BIOS' minimum overclocking was 15%. LOL

  • LDAP Authentication - 8 digit username FAILS lastName\, firstName SUCCEEDS

    Hi All,
    If I use the below with the LDAP_DBMS it SUCCEEDS!
    l_ldap_user:=
    'cn=lastName\, firstName,OU=U.S. Nationals,OU=Accounts,dc=myworksite,dc=com';
    But if I use the syntax for our 8 digit username it FAILS!
    l_ldap_user:=
    'sAMAccountName=myusernm,OU=U.S. Nationals,OU=Accounts,dc=myworksite,dc=com';
    I need to use the 8 digit username and not the cn=lastName\, firstName because that is how all our users logon.. Any ideas?
    declare
    l_retval pls_integer;
    l_retval2 pls_integer;
    l_session dbms_ldap.session;
    l_ldap_host varchar2(256);
    l_ldap_port varchar2(256);
    l_ldap_user varchar2(256);
    l_ldap_passwd varchar2(256);
    l_ldap_base varchar2(256);
    begin
    dbms_output.enable(1000000);
    l_retval := -1;
    dbms_ldap.use_exception := TRUE;
    l_ldap_host := 'ds.myworksite.com';
    l_ldap_port := '389';
    l_ldap_user := 'sAMAccountName=myusernm,OU=U.S. Nationals,OU=Accounts,dc=myworksite,dc=com';
    l_ldap_passwd := 'mypsswd';
    l_session := dbms_ldap.init( l_ldap_host, l_ldap_port );
    l_retval := dbms_ldap.simple_bind_s( l_session, l_ldap_user, l_ldap_passwd );
    dbms_output.put_line( 'Return value: ' || l_retval );
    l_retval2 := dbms_ldap.unbind_s( l_session );
    exception when others
         then
              dbms_output.put_line (rpad('ldap session ',25,' ') || ': ' ||
                   rawtohex(substr(l_session,1,8)) || '(returned from init)');
              dbms_output.put_line( 'error: ' || sqlerrm||' '||sqlcode );
              dbms_output.put_line( 'user: ' || l_ldap_user );
              dbms_output.put_line( 'host: ' || l_ldap_host );
              dbms_output.put_line( 'port: ' || l_ldap_port );
              l_retval := dbms_ldap.unbind_s( l_session );
    end;

    Success!
    l_ldap_user := '[email protected]'; SUCCESS!
    APEX Authentication
    LDAP Host ds.myworksite.com
    Port 389
    LDAP DN String %LDAP_USER%@myworksite.com
    Username myusername
    declare
    l_retval pls_integer;
    l_retval2 pls_integer;
    l_session dbms_ldap.session;
    l_ldap_host varchar2(256);
    l_ldap_port varchar2(256);
    l_ldap_user varchar2(256);
    l_ldap_passwd varchar2(256);
    l_ldap_base varchar2(256);
    begin
    dbms_output.enable(1000000);
    l_retval := -1;
    dbms_ldap.use_exception := TRUE;
    l_ldap_host := 'ds.myworksite.com';
    l_ldap_port := '389';
    l_ldap_user := '[email protected]';
    l_ldap_passwd := 'mypsswd';
    l_session := dbms_ldap.init( l_ldap_host, l_ldap_port );
    l_retval := dbms_ldap.simple_bind_s( l_session, l_ldap_user, l_ldap_passwd );
    dbms_output.put_line( 'Return value: ' || l_retval );
    l_retval2 := dbms_ldap.unbind_s( l_session );
    exception when others
         then
              dbms_output.put_line (rpad('ldap session ',25,' ') || ': ' ||
                   rawtohex(substr(l_session,1,8)) || '(returned from init)');
              dbms_output.put_line( 'error: ' || sqlerrm||' '||sqlcode );
              dbms_output.put_line( 'user: ' || l_ldap_user );
              dbms_output.put_line( 'host: ' || l_ldap_host );
              dbms_output.put_line( 'port: ' || l_ldap_port );
              l_retval := dbms_ldap.unbind_s( l_session );
    end;

  • Urgent :Authentication fails for Policy Agent on weblogic 8 SP3

    Hi
    I am using policy agent for perimeter authentication for an application deployed on weblogic.When i try and access the application using any user which exists on Identity server i get the following exception in the amRealm log.
    09/20/2005 06:17:07:378 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    AmMappingRealm: authenticateAndFetchAllRoles amAdmin, ...) = []
    09/20/2005 06:17:07:378 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    WARNING: AmLoginModule.login() : Empty list of principals for user = amAdmin
    09/20/2005 06:17:07:379 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    AmLoginModule.abort()
    09/20/2005 06:17:12:505 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    AmLoginModule.authenticate() Initialized callback handler for Subject:
    09/20/2005 06:17:12:506 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    AmLoginModule.login()
    09/20/2005 06:17:12:506 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    AmLoginModule.login() : User name from Callback amAdmin
    09/20/2005 06:17:12:506 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    WARNING: SSOTokenValidator failed with exception
    [AgentException Stack]
    com.sun.identity.agents.arch.AgentException: Invalid transport string version
    at com.sun.identity.agents.util.TransportToken.initializeFromString(Unknown Source)
    at com.sun.identity.agents.util.TransportToken.<init>(Unknown Source)
    at com.sun.identity.agents.common.SSOTokenValidator.validate(Unknown Source)
    at com.sun.identity.agents.realm.AmMappingRealm.authenticateAndFetchAllRoles(Unknown Source)
    at com.sun.identity.agents.weblogic.AmLoginModule.login(Unknown Source)
    at weblogic.security.service.DelegateLoginModuleImpl.login(DelegateLoginModuleImpl.java:71)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
    at weblogic.security.service.PrincipalAuthenticator.authInternal(PrincipalAuthenticator.java:326)
    at weblogic.security.service.PrincipalAuthenticator.authenticate(PrincipalAuthenticator.java:279)
    at weblogic.servlet.security.internal.SecurityModule.checkAuthenticate(SecurityModule.java:389)
    at weblogic.servlet.security.internal.SecurityModule.checkAuthenticate(SecurityModule.java:296)
    at weblogic.servlet.security.internal.BasicSecurityModule.checkUserPerm(BasicSecurityModule.java:125)
    at weblogic.servlet.security.internal.SecurityModule.beginCheck(SecurityModule.java:199)
    at weblogic.servlet.security.internal.BasicSecurityModule.checkA(BasicSecurityModule.java:47)
    at weblogic.servlet.security.internal.ServletSecurityManager.checkAccess(ServletSecurityManager.java:145)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3568)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2630)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    09/20/2005 06:17:12:507 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    AmMappingRealm: authenticateAndFetchAllRoles amAdmin, ...) = []
    09/20/2005 06:17:12:507 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    WARNING: AmLoginModule.login() : Empty list of principals for user = amAdmin
    09/20/2005 06:17:12:507 PM IST: Thread[ExecuteThread: '14' for queue: 'weblogic.kernel.Default',5,Thread Group for Queue: 'weblogic.kernel.Default']
    AmLoginModule.abort()

    Hi,
    I have not set it up as a window service but can try to help. for one thing, this step is not permanent and if it does not work then you can undo this step by re-editting the script to remove the line you added. This step has you change the bea startup script for that domain to call the agent script setAgentEnv_AdminServer(it ws copied into bea domain directory during installation of agent) which just sets some agent resources in the classpath. If you start bea and those things are not in the classpath etc then agent wont work. So no permanent damage, you can change it if it doesnt work.
    I suggest you try it out and start the bea server as a service and see if it works - if not try again.
    I am not sure what the windows service would use to start the app server, but somehow it must specify some environment properties and things in its classpath, so if this script doesnt work then you can just do the things in the setAgentEnv_AdminServer script like setting those things in classpath.
    Please let us know if it works and if any extra steps required? Would be helpful to others to know how to configure as a windows service.
    hth,
    Sean

  • Urgent !! - Where can I download Timeten 6.0.2 (For development)

    Dear all,
    Does anyone know where to download timeten database version 6.0.2 for solaris(sparc)
    In OTN, they only provided 6.0.4 and 6.0.3 only, but I must to use 6.0.2 version.
    So, please help me to find the older one..
    Thanks in advance
    Patchara

    If you have a support contract you can file a Service Request to ask for the media.

  • Cisco ISE: Dot1x failing and MAB succeeded (Intermittent) /or Posture Delay

    Hi,
    We are running the cisco ise 1.1.3 and configured for the Dot1x and MAB authentications. PC's are getting access through MAB while Dot1x failing again and again. But, sometime, same PC is getting authenticating  via Dot1x. Connectivity is intermittent. Also, sometimes, stucks longer in Posture
    We have three different switches at the moment with the latest IOS version.
    1) WS-C4507R-E    =  15.1(2)SG,
    2) WS-C3560-48PS = 12.2(55)SE7
    3) WS-C3750X-24P = 15.0(2)SE1
    Could you anyone pitch the idea? or advise about the latest IOS for the switches.
    Let me know, if you need more information.
    Thanks,
    Regards,
    Mubahser

    It seems your PCs are failing dot1x and also failing MAB authentication, the switch by default will start the process again and will again fail dot1x and MAB authentication, and so on.
    It will be helpful to see the logs from both the switch and the radius servers (i take it is ACS or ISE). Also the configuration of the radius server.

  • Urgent: MAC fails issue

    Hi ,
    I would like to ask this question again to oaf top users/gurus( Tapash Ray ,Shiv Saroj,Mukul Gupta,Ramkumar Sekar,Sumit Sharma, avajain, Srinath Mani) to put some light on this issue. Many thanks!
    <br><br>
    Hi OAF Guru's
    <br><br>
    My goal is to communicate between projects screen and ESRI MAP.
    If I want to click on a button in the projects screen then I want to zoom in to a group of geometry regions in the ESRI MAP.
    If I want to click in the ESRI MAP in a region then I want to do something in projects screen such as navigating to another projects screen etc.
    <br><br>
    To realize this goal: <br>
    I have extended a standard Projects page and add a region to show a ESRI GIS map.
    <br><br>
    To be exact:
    <br><br>
    ProjectSetDetailsPG
    PA_PROJECT_SET_DETAILS_LAYOUT: (Region Style: PageLayout)<br>
    ......<br>
    <my additions><br>
    GisMapHdrRN: (Region Style: header)<br>
    GisMapRN: (Region Style: messageComponentLayout)<br>
    messageLayout1(type:)<br>
    MapRawText (type: rawText<br>
    <br><br>
    Behind the GisMapRN I have added a Controller. <br>
    <br>
    In the Controller I do the next:<br>
    <br>
    .....<br>
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)<br>
    {<br>
    super.processRequest(oapagecontext, oawebbean);<br>
    prepareEsriMap(oapagecontext, oawebbean);<br>
    }<br>
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)<br>
    {<br>
    super.processFormRequest(oapagecontext, oawebbean);<br>
    }<br>
    private void prepareEsriMap(OAPageContext oapagecontext, OAWebBean oawebbean)<br>
    {<br>
    String project_set_id = oapagecontext.getParameter("paProjectSetId");<br>
    String url = "OA.jsp?akRegionCode=PA_PROJECT_HOME_LAYOUT&akRegionApplicationId=275&addBreadCrumb=RS&paProjectId=\"+projectId+\"&retainAM=Y";<br>
    OAUrl urlObject = new OAUrl(url);<br>
    OARenderingContext renderingcontext = oapagecontext.getRenderingContext();<br>
    String destURL = urlObject.createURL(renderingcontext);<br>
    StringBuffer stringbuffer = new StringBuffer();<br>
    stringbuffer.append("<HTML xmlns='http://www.w3.org/1999/xhtml' xmlns:v='urn:schemas-microsoft-com:vml'> \n");<br>
    stringbuffer.append(" <HEAD> \n");<br>
    stringbuffer.append(" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/> \n");<br>
    stringbuffer.append(" <script type=\"text/javascript\" src=\"http://serverapi.arcgisonline.com/jsapi/arcgis/?v=1\"></script> \n");<br>
    stringbuffer.append(" <script type=\"text/javascript\" src=\"http://dbr4004v.dbr.agro.nl:8080/ebs/javascript/ebs.js\"></script> \n");<br>
    stringbuffer.append(" <script type=\"text/javascript\"> \n");<br>
    stringbuffer.append(" function getProject(projectId) { \n");<br>
    stringbuffer.append(" window.location=\"").append(destURL).append("\"; \n");<br>
    stringbuffer.append(" } \n");<br>
    stringbuffer.append(" </script> \n");<br>
    stringbuffer.append(" </HEAD> \n");<br>
    stringbuffer.append(" <BODY> \n");<br>
    stringbuffer.append(" <input type=\"button\" value=\"Show Projects\" onclick=\"zoomToProjectSet(").append(project_set_id).append(");\"/> \n");<br>
    stringbuffer.append(" <br /> \n");<br>
    stringbuffer.append(" <div id=\"mapDiv\" style=\"width:1000px; height:500px; border:1px solid #000;\"></div> \n");<br>
    stringbuffer.append(" </BODY> \n");<br>
    stringbuffer.append("</HTML> \n");<br>
    .....<br>
    <br>
    If I navigate via responsibility: Project Super User and via the path: Project Sets > Click one of the Project Set Name > then I can see the adapted Project Sets screen with stadard Projects region and below that the new added ESRI map region.<br>
    The new region has a button to zoom in in the ESRI map and the ESRI map itself with some geometry information.<br>
    The functionality of button is as working expected: (zoomToProjectSet(project_set_id) ).<br>
    But when I click one of the geometry region to call for example Project Overview screen then I get the error message:<br>
    "You have insufficient privileges for the current operation. Please contact your System Administrator.
    You cannot run a page which is not SelfSecured when the MAC fails."
    <br><br>
    It is remarkable if I click the Project Name links in the Project Overview screen these have all different oas text <br>
    OA_HTML/OA.jsp?_rc=PA_PROJECT_HOME_LAYOUT&_ri=275&addBreadCrumb=RS&paProjectId=4832&_ti=2094430068&oapc=3&oas=l305LKdSwzg9iJqy8q00ew..<br>
    OA_HTML/OA.jsp?_rc=PA_PROJECT_HOME_LAYOUT&_ri=275&addBreadCrumb=RS&paProjectId=4869&_ti=2094430068&oapc=3&oas=xO_5dM4O-mKT38E1En5Msg..<br>
    OA_HTML/OA.jsp?_rc=PA_PROJECT_HOME_LAYOUT&_ri=275&addBreadCrumb=RS&paProjectId=4850&_ti=2094430068&oapc=3&oas=u_yW8yP1uMTQoffa7Vy2hA..<br>
    <br>
    When click the ESRI map region which try to reproduce same action as Project Name links in the Project Overview screen then I get almost the same URL but the value for oas is same for all different paProjectId's:<br>
    OA_HTML/OA.jsp?_rc=PA_PROJECT_HOME_LAYOUT&_ri=275&addBreadCrumb=RS&paProjectId=4832&_ti=2094430068&oapc=3&oas=7XDzPk3HK9fR2emiJYeO9Q..<br>
    OA_HTML/OA.jsp?_rc=PA_PROJECT_HOME_LAYOUT&_ri=275&addBreadCrumb=RS&paProjectId=4869&_ti=2094430068&oapc=3&oas=7XDzPk3HK9fR2emiJYeO9Q..<br>
    OA_HTML/OA.jsp?_rc=PA_PROJECT_HOME_LAYOUT&_ri=275&addBreadCrumb=RS&paProjectId=4850&_ti=2094430068&oapc=3&oas=7XDzPk3HK9fR2emiJYeO9Q..<br>
    <br>
    I know the issue lie on oas value but I could NOT get the right value for this parameter in the above URLs. <br>
    <br>
    Has someone some idea how to solve this issue.<br>
    <br>
    Many thanks,<br>
    <br>
    Cafer

    Cafer,
    If you see old threads i have explained that the three profiles Kali mentioned... is basically to bypass the MAC key validation in Apps.If you don't want to change these profiles, you would need to use bound values api's to attach js function with onclick attribute of button.
    If you are new to bound values concept, this is what u need to do:
    1)In process request, use
    pagecontext.putJavaScriptFunction();
    2)Make a PVO with transient attribute say x whose query can be like
    select 'javascript:<function name>' from dual
    3) Use bound value view object api to attach with ON_CLICK_ATTR of button.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • IWork '09 not working on Lion after restore

    Hello everybody, iWork '09 on Lion 10.7.5 -- The HD died on me, I had to replace it, reinstall Lion 10.7.5 using the Recovery partition and restore everything else from a backup.  After that, iWork '09 refuses to start, displaying the message "You ca

  • Billing document automatically archiving

    this is the error comming wen i m creating the billing and saving it its automatically archiving how to solve this issu please help if ned i ll provide more information.... Billing document 90000022 does not exist Message no. VF041 Diagnosis The bill

  • Java.sql.SQLDataException, msg=ORA-01882: timezone region not found

    Hi, I am new to ADF. I am using Jdev 11.1.1.1 version. I created sample application , in that i added one jspx AM, VO and droppping the VO to the jspx file. when i try to run the page i am getting the following error. " java.sql.SQLDataException, msg

  • Cloning the hardrive?

    Got a read failing hardrive message so I replaced the 250gb hd with a 300gb hd in my iMac G5. I now have a new drive and the old still functioning drive in an external HD caddie USB'd to my Imac. I want to transfer the old drive to the new drive as i

  • Will there be a security fix for my Mac ?

    Will there be a security fix for my iMac ?