Page Book Component Error

I keep getting the following error:
1046: Type was not found or was not a complie-time constant:
BookEvent
for the code below
private function onPageTorn (event:BookEvent):void {
if (myBook.pages.getItemIndex(tearablePage1) == -1){
tearBtnVisible = true;
Can anyone help me with this error.

Okay, based upon a sample method found (
http://www.rubenswieringa.com/code/as3/flex/Book/docs/)
Here is the BookEvent class, which did fix those previous
errors, but I do not know what or how to make this funciton
correct.
Sample function:
public function BookEvent():void{
if (type:String, book:PageManager, page:Page = null,
bubbles:Boolean = false,
cancelable:Boolean = false);
}

Similar Messages

  • Flipping Book Component zoom in page question

    Hello,
    I have a flipping book component that works well. It has also a zoom button and function that also works but too well. It zooms too much.
    I would like to have it zoom in less, but I cant find out how to adjust the zoom percent.
    Can anyone help with this? Here is the "START ZOOM Function" code...
    // Zooming settings
    zooming = false;
    zoom_panel_mc.zoom_btn.onPress = startZoomingMode;
    myBook.onClick = bookClick;
    function startZoomingMode() {
    myBook.flipOnClickProp = false;
    myBook.autoFlipProp = 0;
    showZoomPointer();
    zooming = true;
    function bookClick(pageNumber, page_mc, isCornerClick) {
    if (!zooming) {
    return;
    var page_url = page_mc.URL;
    if (page_url != undefined) {
    open_popup(page_url, pageNumber);
    } else {
    zooming = false;
    myBook.flipOnClickProp = true;
    myBook.autoFlipProp = 50;
    hideZoomPointer();
    function open_popup(page_url, pageNumber) {
    if (zoom_win != undefined) {
    return;
    hideZoomPointer();
    zoom_win = mx.managers.PopUpManager.createPopUp(_root, Window, true, {title:"Page Number: " + pageNumber, closeButton:true});
    zoom_win.createObject("ScrollPane", "zoom_pane", 0, {contentPath:page_url, _x:3, _y:31});
    zoom_win.setSize(popup_width, popup_height);
    zoom_win.zoom_pane.setSize(popup_width-6, popup_height-31);
    listenerObject = new Object();
    listenerObject.click = closeWindow;
    zoom_win.addEventListener("click", listenerObject);
    zoom_win._x = Stage.width/2-popup_width/2;
    zoom_win._y = Stage.height/2-popup_height/2;
    function closeWindow(eventObject:Object) {
    zoom_win.deletePopUp();
    zooming = false;
    delete zoom_win;
    myBook.flipOnClickProp = true;
    myBook.autoFlipProp = 50;
    function showZoomPointer() {
    Mouse.hide();
    attachMovie("ZoomIcon", "zoom_icon_mc", 0);
    zoom_icon_mc.onEnterFrame = function() {
    this._x = _xmouse;
    this._y = _ymouse;
    function hideZoomPointer() {
    Mouse.show();
    delete zoom_icon_mc.onEnterFrame;
    zoom_icon_mc.removeMovieClip();

    The lack of formatting (indentations) makes that much code very difficult to both read and follow logically, and with the amount of it, I decided it was better for you to try to find it than me after a quick glance failed to locate it.  That said... the function was just a line away from the line that prompted me to want to see it...
    zoom_panel_mc.zoom_btn.onPress = startZoomingMode;  // this is why I wanted to see it
    myBook.onClick = bookClick;
    function startZoomingMode() {             // this is where it is hiding
    myBook.flipOnClickProp = false;
    myBook.autoFlipProp = 0;
    showZoomPointer();
    zooming = true;

  • Extendscript - Book component type - ES bug or doc error?

    Hi,
    (FM 11, Win XP)
    When you query ComponentType for an FM document book component, you get hexadecimal 0x200 which happens to equal Constants.FV_BK_FILE. However, the documentation says that this property should return one of:
    • Constants.FV_BK_FOLDER (0x02) - Folder
    • Constants.FV_BK_GROUP (0x40) - Group
    • Constants.FV_BK_FM (0x8) - FrameMaker document
    • Constants.FV_BK_MIF (0x10) - MIF document
    • Constants.FV_BK_XML (0x20) - XML document
    Given the supposed MIF and XML options, I'm not sure if there is a bug in ES or if the documentation is just wrong. An XML component also returns 0x200. Any thoughts?
    Thanks,
    Russ

    Hi Russ,
    same issue here (FM 11, Win7). I'm not sure, but in my opinion it's an error in the documentation. The values for ComponentType should be:
    Constants.FV_BK_FOLDER (0x2): Folder
    Constants.FV_BK_GROUP (0x40): Group
    Constants.FV_BK_FILE (0x200): File
    Additionally you could check the sort of file type via BookComponentFileType (FM, MIF, XML, Ditamap).
    In a short test script for traversing a hierarchical book the BookComponentFileType has some more values:
    Constants.FV_BK_FOLDER (0x2): Folder
    Constants.FV_BK_BOOK (0x4): Book (inside another book)
    Constants.FV_BK_FM (0x8): FrameMaker document
    Constants.FV_BK_MIF (0x10): MIF document
    Constants.FV_BK_XML (0x20): XML document (also Ditamap and Bookmap)
    Constants.FV_BK_GROUP (0x40): Group
    The main difference between ComponentType and BookComponentFileType seems to be the more detailed information about the file type.
    Best Regards, Andreas
    Message was edited by: justBE

  • Flipping Book Component page turning button

    Hello,
    I have a flipping book component. It come with the basic page turning function where the user can turn each page manually. Because there are many chapters,I created buttons under the pages so that the user can navigate directly to specific pages. I can not find and create the code
    to attach to each button to make the pages flip directly to the indicated page? The component uses AS2, im sure this is helpful.
    Here is main code that appears at frame 1.
    import mx.containers.Window;
    // Popup size
    popup_width = 900;
    popup_height = 600;
    // Zooming settings
    zooming = false;
    zoom_panel_mc.zoom_btn.onPress = startZoomingMode;
    myBook.onClick = bookClick;
    function startZoomingMode() {
    myBook.flipOnClickProp = false;
    myBook.autoFlipProp = 0;
    showZoomPointer();
    zooming = true;
    function bookClick(pageNumber, page_mc, isCornerClick) {
    if (!zooming) {
    return;
    var page_url = page_mc.URL;
    if (page_url != undefined) {
    open_popup(page_url, pageNumber);
    } else {
    zooming = false;
    myBook.flipOnClickProp = true;
    myBook.autoFlipProp = 50;
    hideZoomPointer();
    function open_popup(page_url, pageNumber) {
    if (zoom_win != undefined) {
    return;
    hideZoomPointer();
    zoom_win = mx.managers.PopUpManager.createPopUp(_root, Window, true, {title:"Page Number: " + pageNumber, closeButton:true});
    zoom_win.createObject("ScrollPane", "zoom_pane", 0, {contentPath:page_url, _x:3, _y:31});
    zoom_win.setSize(popup_width, popup_height);
    zoom_win.zoom_pane.setSize(popup_width-6, popup_height-31);
    listenerObject = new Object();
    listenerObject.click = closeWindow;
    zoom_win.addEventListener("click", listenerObject);
    zoom_win._x = Stage.width/2-popup_width/2;
    zoom_win._y = Stage.height/2-popup_height/2;
    function closeWindow(eventObject:Object) {
    zoom_win.deletePopUp();
    zooming = false;
    delete zoom_win;
    myBook.flipOnClickProp = true;
    myBook.autoFlipProp = 50;
    function showZoomPointer() {
    Mouse.hide();
    attachMovie("ZoomIcon", "zoom_icon_mc", 0);
    zoom_icon_mc.onEnterFrame = function() {
    this._x = _xmouse;
    this._y = _ymouse;
    function hideZoomPointer() {
    Mouse.show();
    delete zoom_icon_mc.onEnterFrame;
    zoom_icon_mc.removeMovieClip();

    Nope... I worked my way up to what I know by digging in and learning as I go.  There is no "Limitless" pill you can take to get you there quickly.  MAke a copy of what you have and dig in and learn how it works.

  • JSP - LoadBundle and Component Error in Visual Design Editor

    Hi.
    I've tried to make simple international JSF application. So the first thing to do was to externalize strings from JSP to resources. According to instructions from Java Studio Creator Field Guide Chapter 13:
    http://developers.sun.com/members/promo/jscreator/bookshelf/fieldguide2_preview_13_customizing.pdf
    I added LoadBundle component to my JSP page:
    <f:loadBundle basename="myApp.Bundle" var="messages1"/>
    and set a text property of label component like this:
    <ui:label binding="#{Page1.label1}" id="label1" labelLevel="1"
    style="position: absolute; left: 144px; top: 48px; width: 240px; height: 24px" text="#{messages1.title}"/>
    There is a line in myApp.Bundle.properties file:
    title = Title from resource bundle
    After changing text property of label component to #{messages1.title} I've got a message:
    Component Error
    Cannot display label component in the Visual Design editor.
    Error message from the component: javax.faces.el.PropertyNotFoundException: Error testing property 'title' in bean of type null.
    Exception message:
    javax.faces.el.PropertyNotFoundException: Error testing property 'title' in bean of type null
         at com.sun.faces.el.PropertyResolverImpl.getType(PropertyResolverImpl.java:342)
         at com.sun.rave.web.ui.faces.UIComponentPropertyResolver.getType(UIComponentPropertyResolver.java:298)
         at com.sun.rave.web.ui.faces.DataProviderPropertyResolver.getType(DataProviderPropertyResolver.java:264)
         at com.sun.jsfcl.data.ResultSetPropertyResolver.getType(ResultSetPropertyResolver.java:141)
         at com.sun.rave.jsfsupp.container.DesignTimePropertyResolver.getType(DesignTimePropertyResolver.java:169)
         at com.sun.faces.el.impl.ArraySuffix.getType(ArraySuffix.java:240)
         at com.sun.faces.el.impl.ComplexValue.getType(ComplexValue.java:208)
         at com.sun.faces.el.ValueBindingImpl.getType(ValueBindingImpl.java:350)
         at com.sun.rave.web.ui.renderer.ValueHolderDesignTimeRenderer.encodeBegin(ValueHolderDesignTimeRenderer.java:59)
         at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:683)
    The same problem appears when I open example project from this book:
    Login2I18N-Alt
    It is a bug or am I doing something wrong?
    greatings
    znienacka

    go to Tools/Update Center and download the latest
    version of the components. It will solve the
    problem.Thanks, it works. But there is still one drawback - Visual Designer doesn't show any text inside label. If I remove all strings from JSP to resource file I will get an empty page!
    Is there any solution of this problem?
    znienacka

  • SSIS PACKAGE MIGRATION FROM 2005 to 2008 - Script task/component errors

    HI All,
    We have to migrate ssis packages (about 300) from ssis 2005 to 2008 .
    1. I understand that the major concern is regarding the script component/tasks.
    I searched a lot about this and also consulted with many friends , all of them are aware of this issue but not able to provide what could be the issues and the solution.
    Can some one help me with the common script issues that can happen during migration and the solution for the same.
     2. I do have one more question.
    As per my understanding given in the below link 
    http://blogs.msdn.com/b/mattm/archive/2008/03/21/package-upgrade-wizard.aspx
    there is this part which says ... 
    Once the packages have been chosen, the next page asks you to pick the output location. This can be:
    Same as the source location
    File System
    SSIS Service (Package Store)
    SQL Server 
    Does this mean I can deploy in sql server directly on fly while upgrading ?
    Any help highly appreciated .
    Regards
    Praveen..

    Hi Praveen,
    Question 1: The error may occur if there are duplicate input columns in the Script Task/Component or the current user cannot access the C:\Windows\Temp directory. Except for the link provided by SanBhaumik, you can also refer to the following
    threads:
    http://www.sqlservercentral.com/Forums/Topic811208-148-1.aspx 
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/5c11eb57-59d6-4f81-bfdc-13bd6489a0ac/sql-server-2008-ssis-package-script-component-error?forum=sqlintegrationservices 
    Question 2: We can directly save the package to the File System, SSIS Package Store, or SQL Server by selecting the proper destination during the package upgrade. However, this operation is not equal to the package install operation identically.
    For example, if we have enabled package configurations for a package, the package configurations won’t be upgraded or installed during the package upgrade.
    Regards,
    Mike Yin
    TechNet Community Support

  • FM 12: How do I create a .ps file of a book? (errors prevent PDF generation)

    FM 12: How do I create a .ps file of a book? (errors prevent PDF generation)

    There's probably a graphic on one of your pages that is causing a postscript division error (i.e. divide by zero?) See also: PostScript error offending command div
    As Jeff suggests, track down the errant graphic to see what's wrong. If you print to file, you should get an idea of roughly where in the docs the error occurs by watching the print thermometer display.

  • Page-Flip component: Varying page sizes?

    Hi all, I have a question for you about the page-flip
    component. Is it possible to make the pages within a single book
    different sizes? In other words, could I have a cover page that's
    500 x 500, and behind it a page that's 550 x 500, and behind that
    one a 600 x 500 page, and so on? The idea would be that you could
    see a bit of some of the pages before actually reaching them.
    According to the manual, there seems to be some kind of page
    height and page width functions, but I'm not sure how to use them.
    Any advice?
    Thanks!

    Not quite sure about Page Flip component,
    See example05, is that something you need?
    http://blog.ggshow.com/index.php/extensions/2007/04/02/gg_book_pf2

  • I ve got this page (Internal Server Error ) when try to open htmldb 2.0

    i install htmldb 2.0 sucssefully but when try to open with this path
    http://hostname:7777/pls/htmldb/htmldb
    it gives me this page
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    Oracle-HTTP-Server/1.3.28 Server at <hostname> Port 7777
    any help

    i know it is silly question but where can i find server error log
    this is my dad.conf
    Alias /i/ "D:\htmldb\Apache\Apache\images/"
    AddType text/xml xbl
    AddType text/x-component htc
    <Location /pls/htmldb>
         SetHandler pls_handler
         Order deny,allow
         Allow from all
         AllowOverride None
         PlsqlDatabaseUsername HTMLDB_PUBLIC_USER
         PlsqlDatabasePassword sys
         PlsqlDatabaseConnectString myhostname:1521:orcl1
         PlsqlDefaultPage htmldb
         PlsqlDocumentTablename wwv_flow_file_objects$
         PlsqlDocumentPath docs
         PlsqlDocumentProcedure wwv_flow_file_manager.process_download
         PlsqlAuthenticationMode Basic
         PlsqlNLSLanguage AMERICAN_AMERICA.UTF8
    </Location>

  • Just louded new version cat print from quick books internal error message coms up

    just louded new version cat print from quick books internal error message coms up  

    I don't have a link handy, but as far as I know, the Acrobat 9 user guide is available online as a (guess what!) PDF you may download... or is on the disc if you bought physical media
    Go to that PDF and search for compatibility
    The PDF for version 8 covers setting the options to a previous version on pages 102-103
    The words may (or may not) be different for v9
    Adobe PDF settings
    The Adobe PDF Settings dialog box in Acrobat Distiller contains panels of options that you can select to customize your PDF output.
    General panel options
    Use this panel to select a version of Acrobat for file compatibility and other file and device settings. (The panel appearance differs in Windows and Mac OS.)
    Compatibility Sets the compatibility level of the PDF. Use the most recent version (in this case, version 1.7) to include all the latest features and functionality. If youre creating PDFs that will be distributed widely, choose an earlier level, to ensure that all users can view and print the document.

  • Project Server 2010 Task page - An unknown error has occurred

    Hi All,
    I have searched inside the forum for similar problems but i didn't find any solution.
    We have Project Server 2010 with December CU installed and
    we are
    experiencing
    a serious
    problem with two enterprise resources.
    They can login to pwa succesfully but when they enter in the Task page the following error is raised:
    An unknown error has occurred
    There are no errors reported in the event viewer while in the ULS Log I found only this entry but i don't know if it's related with this issue:
    Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them, but not before. Stack trace:
    at Microsoft.SharePoint.SPWeb.get_CurrentUser()
    at Microsoft.Office.Project.PWA.PJContext.get_RegionalSettings()
    at Microsoft.Office.Project.PWA.PJContext.get_LocaleCulture()
    at Microsoft.Office.Project.PWA.WCFContext.AuthenticateUser(Message message, WCFContext& wcfContext, String userName, Boolean isWindowsUser)
    at Microsoft.Office.Project.PWA.WCFContext.GetContext(Message message, String userName, Boolean isWindowsUser, Boolean newCookie, Uri originalTargetUri)
    at Microsoft.Office.Project.Server.ProjectServerRouter.Microsoft.Office.Project.Server.IProjectServerRouter.ProcessMessage(Message message)
    at SyncInvokeProcessMessage(Object , Object[] , Object[] )
    at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)
    at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)
    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc)
    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage4(MessageRpc& rpc)
    at System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)
    at System.ServiceModel.Dispatcher.ChannelHandler.DispatchAndReleasePump(RequestContext request, Boolean cleanThread, OperationContext currentOperationContext)
    at System.ServiceModel.Dispatcher.ChannelHandler.HandleRequest(RequestContext request, OperationContext currentOperationContext)
    at System.ServiceModel.Dispatcher.ChannelHandler.AsyncMessagePump(IAsyncResult result)
    at System.ServiceModel.Diagnostics.Utility.AsyncThunk.UnhandledExceptionFrame(IAsyncResult result)
    at System.ServiceModel.AsyncResult.Complete(Boolean completedSynchronously)
    at System.ServiceModel.Channels.InputQueue`1.AsyncQueueReader.Set(Item item)
    at System.ServiceModel.Channels.InputQueue`1.EnqueueAndDispatch(Item item, Boolean canDispatchOnThisThread)
    at System.ServiceModel.Channels.InputQueue`1.EnqueueAndDispatch(T item, ItemDequeuedCallback dequeuedCallback, Boolean canDispatchOnThisThread)
    at System.ServiceModel.Channels.InputQueueChannel`1.EnqueueAndDispatch(TDisposable item, ItemDequeuedCallback dequeuedCallback, Boolean canDispatchOnThisThread)
    at System.ServiceModel.Channels.SingletonChannelAcceptor`3.Enqueue(QueueItemType item, ItemDequeuedCallback dequeuedCallback, Boolean canDispatchOnThisThread)
    at System.ServiceModel.Channels.SingletonChannelAcceptor`3.Enqueue(QueueItemType item, ItemDequeuedCallback dequeuedCallback)
    at System.ServiceModel.Channels.HttpChannelListener.HttpContextReceived(HttpRequestContext context, ItemDequeuedCallback callback)
    at System.ServiceModel.Activation.HostedHttpTransportManager.HttpContextReceived(HostedHttpRequestAsyncResult result)
    at System.ServiceModel.Activation.HostedHttpRequestAsyncResult.BeginRequest()
    at System.ServiceModel.Activation.HostedHttpRequestAsyncResult.OnBeginRequest(Object state)
    at System.ServiceModel.PartialTrustHelpers.PartialTrustInvoke(ContextCallback callback, Object state)
    at System.ServiceModel.Activation.HostedHttpRequestAsyncResult.OnBeginRequestWithFlow(Object state)
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.WorkItem.Invoke2()
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.WorkItem.Invoke()
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.ProcessCallbacks()
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.CompletionCallback(Object state)
    at System.ServiceModel.Channels.IOThreadScheduler.CriticalHelper.ScheduledOverlapped.IOCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* nativeOverlapped)
    at System.ServiceModel.Diagnostics.Utility.IOCompletionThunk.UnhandledExceptionFrame(UInt32 error, UInt32 bytesRead, NativeOverlapped* nativeOverlapped)
    at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP)
     It's not a task related errors because i have alredy done an analysis of the resorce's assignments.
    I have also verified IIS authentication settings as described in this
    post but all had been alredy correctly configured.
    We have a farm installation with two physical server:
    Application Server with Windows 2008 R2, SharePoint 2010 Enterprise, Project Server 2010
    Database Server with Windows 2008 R2 and SQL Server 2008 SP2
    Any help would be greatly appreciated!
    Thanks in advance.
    Raffaele

    Hi,
    I faced exactly the same problem: some resources try to connect to My Tasks, and get an Unknown error. No error message in ULS or Eventlog.
    I hope I solved the problem, and want to share the experience here.
    First, by reading this article,
    http://www.projectserverexperts.com/ProjectServerFAQKnowledgeBase/Unknown%20Error%20My%20Tasks%20Page.aspx: even if the SQL Query returns me no records, it gives me the idea to delete (unpublish) some tasks (i managed to identify some tasks which raised
    the problem, by assigning a test account on them, and see that the pb happened).
    So I decided to delete my project from the Published Database (and keep it in the Draft of course). Than in Project Pro, I opened and Published: the problem seem to be solved.
    I don't know the root cause of the pb: maybe some SQL data were corrupted for an unknown reason.
    Hope it could help some one ! Don't hesitate to give feedback if you solved this pb with this solution, or workaround.
    Sylvain

  • How can i set a global error page for all error cod

    how can i set a global error page for all error code?
    i don't want to leave a long list in the web.xml file.could any one help me?
    thanks

    If u have a common Error JSP named as ErrorPage.jsp
    You need to have the following piece of code in the JSP as :
    <%@ page isErrorPage ="true"%>
    This makes it as the Common Error Page for the Application. Now all you need to do is from other JSP's throw the Exception to teh container. The container will redirect to this Page and process accordingly.
    Thanks and regards,
    Pazhanikanthan. P

  • Page not found error getting while access endeca application

    Hi All,
    I am trying to create an application in endeca. Created application , ran neccessary scripts and created pages in experience manager.
    but when i try to call the application in browser . i am getting page not found error. There are some other application which is created by copying discover electronics ,
    which works fine. Please help me how can i resolve this issue. I am using endeca 3.1.0.
    Thanks
    Mark

    There's not much to go on here, but it sounds like you're trying to view changes in a "live" application. To confirm this, you should execute the configuration promotion script and then check the same application URL. You can run the promote script from inside workbench. Log in as admin, then look under "Workbench Home > Administration > Admin Console > Scripts." You should execute the "PromoteAuthoringToLive" script. Once this script is complete, then test your page again.
    If this works, then it means that your application is configured such that it doesn't get immediately notified of new configuration changes, i.e. it's configured in "live" mode.

  • Page not found error in webdynpro Application

    Hi All,
    While we are opening a links getting Page not found error. This is  webdynpro ABAP application ,through Launch pad it is configured.
    We have recently upgarded our portal , previously it was working fine.
    R/3 is not upgraded .
    Regards,
    Krishna.

    Hi Krishna,
    Hope you are doing good.
    Kindly run the web diag tool as outlined in  note 1045019 or SAP Note No. 1332726 (depending on your version) and reproduce the issue.
    This will give you the exact reason why the issue occurs. Attach it here if you have any issues.
    Thank you!
    Kind Regards,
    Hemanth
    SAP AGS

  • "Page not found" error while trying to run a page

    Hello all,
    I tried to run a page in JDeveloper(9.0.6.6_606) and after the browser page pops up, it is displaying "HTTP 404 : Page not found" error.
    Please find the log below:
    C:\jdevbin\jdk\bin\javaw.exe -ojvm -classpath C:\jdevbin\j2ee\home\oc4j.jar -mx256m -Dhttp.proxyHost=proxy -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=10.200.152.236|localhost -Xverify:none com.evermind.server.OC4JServer -config C:\jdevhome\jdev\system9.0.3.1.1107\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    Embedded OC4J startup time: 7047 ms.
    Oracle9iAS (9.0.3.0.0) Containers for J2EE initialized
    Embedded OC4J startup time: 16 ms.
    Target URL -- http://10.200.152.236:8988/OA_HTML/runregion.jsp?page=%2Foracle%2Fapps%2Fpos%2Faccount%2Fwebui%2FNonPoInvCreatePG&akAppShortName=POS&akDbcFile=FIN1DEV2&akDevMode=1&akDiag=1&akPassword=pwd4dev2&akRespKey=ISUPPLIER_PORTAL_RESP&akUsername=dpsdx48&JRAD_XML_PATH=C%3A%5Cjdevhome%5Cjdev%5Cmyclasses%5CJRADXML%5C&JRADStartTime=1152606872484
    ApplicationServer: appName = bc4j
    ApplicationServer: appName = current-workspace-app
    ApplicationServer: appName = soap
    Error creating the ORB :
    Starting an OA Core session ...
    ICX DIAGNOSTIC: application_id = 177
    ICX DIAGNOSTIC: responsibility_id = 23075
    ICX DIAGNOSTIC: security_group_id = 0
    ICX DIAGNOSTIC: APPS Web agent = http://app-fin1dev2.albertsons.com:15160/pls/FIN1DEV2/
    FIN1DEV2=C384A6C2A84C8E63FAA51365BA91681A;path=/;domain=.albertsons.com
    ICX DIAGNOSTIC: mCookieHeader = FIN1DEV2=C384A6C2A84C8E63FAA51365BA91681A;path=/;domain=.albertsons.com
    ICX_DIAGNOSTIC: mEncryptedSessionID = C384A6C2A84C8E63FAA51365BA91681A
    ICX_DIAGNOSTIC: mSessionID = 687703439
    TIME: runregion.sessionBean.createSession [87296 ms]
    ICX_DIAGNOSTIC: mTransactionID = 78453
    ICX_DIAGNOSTIC: encryptedTransactionID = C974A13EBB894B23
    TIME: runregion.sessionBean.createTransaction [9672 ms]
    TIME: runregion.rest [0 ms]
    Is there anything you think I am missing in the configurations?
    Kindly help.

    I am also using OA Framework Jdeveloper....for ADF BC development.. Please find the log below:-
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    E:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.39.81\embedded-oc4j\config>
    E:\jdeveloper\jdevbin\jdk\bin\javaw.exe -client -classpath E:\jdeveloper\jdevbin\j2ee\home\oc4j.jar;E:\jdeveloper\jdevbin\jdev\lib\jdev-oc4j-embedded.jar
    -Xverify:none -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true
    -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config
    E:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.39.81\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    Oct 18, 2007 11:56:47 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Oct 18, 2007 11:56:47 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    WARNING: Code-source E:\jdeveloper\jdevbin\jdev\appslibrt\xml.jar (from <library> in
    /E:/jdeveloper/jdevhome/jdev/system/oracle.j2ee.10.1.3.39.81/embedded-oc4j/config/application.xml) has the same filename but is not identical to
    /E:/jdeveloper/jdevbin/lib/xml.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in E:\jdeveloper\jdevbin\j2ee\home\oc4j.jar). If it
    contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source E:\jdeveloper\jdevbin\jdev\appslibrt\jazn.jar (from <library> in
    /E:/jdeveloper/jdevhome/jdev/system/oracle.j2ee.10.1.3.39.81/embedded-oc4j/config/application.xml) has the same filename but is not identical to
    /E:/jdeveloper/jdevbin/j2ee/home/jazn.jar (from <code-source> in META-INF/boot.xml in E:\jdeveloper\jdevbin\j2ee\home\oc4j.jar). If it contains different
    versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source E:\jdeveloper\jdevbin\jdev\appslibrt\jazncore.jar (from manifest of /E:/jdeveloper/jdevbin/jdev/appslibrt/jazn.jar) has the same
    filename but is not identical to /E:/jdeveloper/jdevbin/j2ee/home/jazncore.jar (from <code-source> in META-INF/boot.xml in
    E:\jdeveloper\jdevbin\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the
    search path of loader default.root:0.0.0.
    WARNING: Code-source E:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.39.81\embedded-oc4j\applications\datatags\webapp\WEB-INF\lib\uix2.jar (from
    WEB-INF/lib/ directory in E:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.39.81\embedded-oc4j\applications\datatags\webapp\WEB-INF\lib) has the same
    filename but is not identical to /E:/jdeveloper/jdevbin/jdev/appslibrt/uix2.jar (from <library> in
    /E:/jdeveloper/jdevhome/jdev/system/oracle.j2ee.10.1.3.39.81/embedded-oc4j/config/application.xml). If it contains different versions of the same classes, it
    will be masked as the latter is already visible in the search path of loader datatags.web.webapp:0.0.0.
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 19594 ms.
    Target URL--- http://hydhtcl33997.ad.infosys.com:8988/SRTutorialADFBC-UserInterface-context-root/faces/app/SRList.jspx
    07/10/18 11:56:56 Oracle Containers for J2EE 10g (10.1.3.1.0) initialized

Maybe you are looking for

  • Why leopard DVD not installing to powerbook G4 with Mac OS X 10.3.9? Help.

    I'm trying to install leopard DVD to my daughter's powerbook G4 with os x 10.3.9. During the installation process, it says unable to install 10.5, mac os x 10.4 or later could not be found.....how am I gonna do this. Please help...

  • Bring folder to front of projecter when opening via BuddyAPI

    I have a projector which fills the screen when opened.In my projector I have a simple menu with clickable events. When you click on each event it opens a folder (used baOpenFile with BuddyAPI). My problem is, when on a Mac, these files open behind th

  • Customizing Purchase Group Pull Down List in EBP portal

    Hi, Does anyone know how to modify the pull down list (Purchasing Group) in the portal. My functional told me PPOMA_BBP unable to achieve her requirement. I found FM BBP_PGRP_ASSIGN_BADI but this BADI is normally for assignment... what I need is modi

  • Multiple AP1252AG without WLC

    Hi, Last year I remember reading that it is possible to configure multiple AP1252AG (running in autonomous mode) to work together so that devices seemlessly pass between each AP without disconnection. No seperate WLC required. Unfortunately I cannot

  • Unable to view the details of BAdi method

    Guys, Using SE18, I was able to view the different methods inside a particular BAdi. I had double clikced on a Method name and was able to view method parameters. However, I am not able to view the details of this method by double clikcing on it.Can