Compiling Widgets in FlexViewer

I have downloaded some widgets and am viewing them in FlexViewer.
Does anyone know how to compile the widgets in Flash Builder and where does the compiled output go ?
Thanks

These widgets work best when you have a strong internet connection. You could try reloading the widgets by pressing Command-r.

Similar Messages

  • Using Google GWT to create (Dashcode) widgets for iBook Author  I would like to embed interactive widgets in iBooks using iBookAuthor. The widgets in question started life in Java but GWT has allowed them to be converted to javascript and to run on web pa

    I would like to embed interactive widgets in iBooks using iBookAuthor. The widgets in question started life in Java but GWT has allowed them to be converted to javascript and to run on web pages (for example, http://softoption.us/content/node/437 scroll to the bottom). In theory, iBookAuthor can bring in most html5, and much javascript. The technique is to wrap the html in a folder, with 2 extra files, a plist and a default png and then change the extension of the folder to ‘.wdgt’. This is the technique for making Dashboard widgets for the Mac, and Apple even have the Dashcode software to do it. So what you really do is to make a Dashboard widget, then iBookAuthor can import it.  So far, so good. And some  folk have been doing this, for example http://www.prweb.com/releases/2012/2/prweb9242432.htm http://www.panophoto.org/forums/viewtopic.php?f=64&t=10417&p=158330#p158423 However, if you start with GWT and create a single page with one button and a Hello World, compile it, and get the WAR file (I use Eclipse here)… the Safari browser and others will run it properly (even on an iPad). Then if you wrap it, a proper Dashboard widget is created, which runs properly on a Mac. Then if you go to iBookAuthor and put a custom widget in the Text, then drag it in. It is accepted by the text and shown as being there. However, if you use Preview to look at it on an iPad, it is gone (or was never there in the first place). Anyone any ideas on this? [And iBook Author seems to give no warnings.] The widget is at https://dl.dropbox.com/u/46713473/Test6.wdgt.zip I have bells and whistles that I’d like to get into an iBook!
    Thanks for any insights.
    Martin

    I do have a little to add, which might help someone. Indeed, opening a blank page and dragging the widget straight in seems good in difficult cases. But, actually, I was also able to insert successfully from the Toolbar especially to blank pages. So, it may have been something to do with the columns and stuff like that. Anyway back then the insertion would show in iBooks Author but not in the Preview on the iPad. I moved on to actual Google Web Toolkit output javascript. Basically I had three at hand to try: a Hello World with a button which went straight it, one of moderate complexity, (for example with a built in Lisp interpreter), which also went straight in, and finally a more complex one that initially was rejected by iBook Author. Author complained that there was an unsupported media file (of course, Author does not tell you which one it is, that would be too easy). [Remember, this was a proper working Dashboard widget which could be installed on a Mac]. Among other things I had read remarks about .gif files. When looking through the GWT war directory at the actual javascript etc files, I noticed there were two gifs there one called ‘clear.cache.gif ‘  and a second one called  ‘0F89659FF3F324AE4116F700257E32BD.cache.gif’. (Now, there is obfuscation so the numbers here may be different from case to case.) The clear.cache.gif did not seem to be anything special. But the other one is an animation. It is three little boxes that twinkle (rather like a waiting spinning cursor).  So, I opened that file and saved it to itself (that picks the top frame of the animation and saves only that, leaving you with an unanimated gif). The resulting widget drags and drops into iBooks Author (and seems to work properly at a quick glance). So, if you are having trouble with ‘unsupported media files’ converting animated gifs into unanimated gifs might help in some cases.

  • RE: Dynamically mapping data to widgets

    One quick and dirty solution would be something like this (though not
    terribly efficient):
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);for childWidget in newPanel.children do
    -- check if the childWidget field name matches field name to be
    set
    if childWidget.name.isEqual(source=<..FieldNameToSet..>,
    ignoreCase=TRUE) then
    dataWidget : dataField = dataField(childWidget);
    if dataWidget.textvalue = NIL then
    dataWidget.textvalue = new;
    end if;
    -- set the textvalue of the childWidget to required
    value
    dataWidget.textvalue.setvalue('WORKS !');
    end if;
    end for;
    Your problem would have been directly solved if the Forte library class
    CompoundField provided a SetDataObject( ) method corresponding to the
    GetDataObject( ) method.
    According to Forte Help - "The GetDataObject method returns the object
    that the compound field is mapped to. If the compound field is not
    mapped to an object, this method returns NIL."
    Maybe Forte could consider providing this in a future release.
    Another option would have been to use the GetFieldByName( ) method on
    the newly created panel to get at the child widgets directly.
    According to Forte help - "GetFieldByName is designed for use in dynamic
    applications. For example, you can use GetFieldByName to retrieve the
    names of dynamically created fields for immediate use in dynamic
    applications."
    This works fine for compile-time named widgets, but I couldn't get it to
    work for the newPanel child widgets using the code below, or maybe I am
    missing something here.
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);newPanel.name.setvalue('newPanel');
    newPanel.parent = <aGridField>;
    dataWidget : dataField = dataField(newPanel.getFieldByName('age'));
    (OR)
    dataWidget : dataField =
    dataField(<aGridField>.getFieldByName('newPanel.age'));
    (OR)
    dataWidget : dataField =
    dataField(self.window.getFieldByName('newPanel.age'));
    In all cases the return value was NIL.
    Maybe someone from Forte could shed more light on this.
    Hope this helps.
    Prashant.
    From: Richard Finegan[SMTP:[email protected]]
    Reply To: Richard Finegan
    Sent: Thursday, August 13, 1998 2:27 PM
    To: 'Forte Users Mailing List'
    Subject: Dynamically mapping data to widgets
    Here's what I'm trying to do:
    I have a panel with a bunch of data fields that I've mapped to an
    object.
    I want to replicate the panel several times to programmatically
    populate a
    TabFolder (although the TabFolder bit isn't really relevant here, I
    think).
    But I can't figure out how to get at the mapped data in the replicas
    of my
    object...
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);
    panelCreatedFromWindowWorkshop.anAttributeOfObjMappedToPanel =
    something;
    // tada! "something" appears in a data field of the original panel
    newPanel.? = something; // how to do the same thing with the new
    panel?
    How do I map an object to the replicated panel? I've experimented
    with
    assigning "Widget.AppData" to a new object, but I can't seem to get it
    to
    do anything...
    Thanks in advance for your help.
    Richard Finegan
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Michael,
    did you find any solution?
    I've the same problem.

  • Cs6 3D axis widget showing up blurry/fuzzy

    My 3D axis widget was showing fine( solid, clear, and visible in front of the mesh I was working on), but now It has started to switch between normal and Blurry/Fuzzy( as if it is sitting behind the mesh and the whole scene). It is very difficult to see sometimes and even more s to access it. Does anyone know of this problem,  and if so, how t correct it? Also any troubleshooting advice would be helpful too.
    Sys info:
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows NT
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:5, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2394 MHz
    Built-in memory: 7989 MB
    Free memory: 4517 MB
    Memory available to Photoshop: 7040 MB
    Memory used by Photoshop: 88 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Intel(R) HD Graphics
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1280
    Video Card Number: 1
    Video Card: Intel(R) HD Graphics
    OpenCL Unavailable
    Driver Version: 8.15.10.2858
    Driver Date: 20121009000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Video Mode:
    Video Card Caption: Intel(R) HD Graphics
    Video Card Memory: 3770 MB
    Video Rect Texture Size: 8192
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\RYANS_~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 341.9G, 82.7G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.3
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Collada 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Maximum 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mean 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Measurement Core 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Median 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mezzotint 13.0
       Minimum 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       MMXCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Picture Package Filter 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Pinch 13.0
       Pixar 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Range 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0.1
       Shear 13.0
       Skewness 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Sumi-e 13.0
       Summation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Variations 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       WIA Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash: NONE
    Installed TWAIN devices: NONE

    You probably have updated/ changed something in the driver. Undo those changes and everything will be back to normal. Otehr than that you could be working at a document size you haven't worked before or invoked some setting or tool you never used before that may trigger the behavior because it's beyond your graphics chip's limited capabilities...
    Mylenium

  • WAR - how to continue compiling even when compile fails for some jsp's

    i am trying to pre-compile all my jsp's and find out all the compilation
              errors in all the jsp's..
              i am defining a war app and i am making the weblogic server to precompile
              the jsp's.. i control this from web.xml
              the problem is
              weblogic starts compiling the jsp's and when it hits the first error it
              bails out.. i doesn't precompile the rest of the jsp's..
              how do i make weblogic server to continue compiling the rest of the jsp's??
              anyone??
              

    You sure can run a Windows Form and while it is visible, run code in the Powershell script, and communicate the information from the 'main' script  to the form.
    To do this you need create a separate Powershell runspace and dependent on situation either use shared memory and timer in the form or delegates to directly call form elements
    Please check my article at codeproject for extensive journey of using all core Windows Forms, WPF, Selenium with Powershell for tasks which often require various option prompts.
    http://www.codeproject.com/Articles/799161/Dealing-with-Powershell-Inputs-via-Basic-Windows-F
    You find there over 40 common Windows form patterns  ( prompts, grids, check/radio boxes, progress bars of many forms, tree views, item lists, passwords, tool tips, system tray widgets, browser controls, examples of using p/invoke, hosting custom controls,
    dealing with selenium webdriver, dealing with selenium-unfriendly file upload dialogs etc. ) all covered there - working code for every example is provided, and the code is hosted on github.
    Routine daily devops tasks of executing Powershell scripts in a complex environment suddenly become a less challenging task. Web scraping becomes more fun

  • Widgets in arrayfield

    Hello,
    I have a problem to organize widgets on the screen in an Arrayfield with
    Forte 3.0.L.2.
    Suppose I have a class called MyClass with 3 attributes called name,
    address, zip.
    I would like to have an arrayfield mapped on an array of MyClass. For
    each line, I would like to have "name" next to "address" and "zip"
    UNDER "address". The window workshop does not allow me to do it. All my
    widgets stay on one line. So I try to group address and zip into a
    gridfield (or a panel) without name. Now I can put zip under address in
    the gridfield, but the window does not compile because "address and zip
    are not atrributes from Framework.array".
    Can you solve my problem without changing the design MyClass.
    Thanks
    Eric Decossaux
    Cliniques Universitaires St Luc
    Informatique des Laboratoires
    +32+2+764 17 53

    These widgets work best when you have a strong internet connection. You could try reloading the widgets by pressing Command-r.

  • Trouble compiling a library

    Hi folks, I'm experiencing a trouble using forms & reports on two different platforms: Win XP Prof. SP2 for development and SuSe Ent. 9 Linux for deployment.
    I've inherited from another person an application with some forms, some reports and two libraries (one attached to the forms annd the other attacched to the reports).
    I've modified a function in the library attacched to the reports. It compiles ok on XP.
    Moved the library (.pll file) to Suse I tried to compile with:
    #!/bin/sh
    PATH_SAVE=$PWD
    ORACLE_HOME=/opt/oracle/app/oracle/product/frs10.1.2
    export ORACLE_HOME
    FORMS_PATH=/opt/csa/sw/webapp/FORMS:/opt/csa/sw/webapp/CSA_LIBS
    export FORMS_PATH
    REPORTS_PATH=/opt/csa/sw/webapp/REPORTS:/opt/csa/sw/webapp/CSA_LIBS
    export REPORTS_PATH
    TNS_ADMIN=$ORACLE_HOME/network/admin
    export TNS_ADMIN
    TWO_TASK=csa_v30/csa_v30@csa5i009
    export TWO_TASK
    ORACLE_SID=csa5i009
    export ORACLE_SID
    LD_LIBRARY_PATH=$ORACLE_HOME/jdk/jre/lib/i386/server:$ORACLE_HOME/jdk/jre/lib/i386/native_threads:$ORACLE_HOME/jdk/jre/lib/i386:$ORACLE_HOME/lib
    export LD_LIBRARY_PATH
    ORACLE_TERM=vt220
    export ORACLE_TERM
    # COMPILE LIBRARIES
    cd /opt/csa/sw/webapp/CSA_LIBS
    $ORACLE_HOME/bin/frmcmp_batch module=LIB_CSA_FORMS.pll userid=csa_v30/csa_v30@csa5i009 module_type=LIBRARY compile_all=YES logon=YES batch=YES
    # COMPILE FORMS and MENUS
    cd /opt/csa/sw/webapp/FORMS
    for file in *.fmb
    do
    $ORACLE_HOME/bin/frmcmp_batch module=$file userid=csa_v30/csa_v30@csa5i009 module_type=FORM compile_all=YES logon=YES batch=YES
    done
    for file in *.mmb
    do
    $ORACLE_HOME/bin/frmcmp_batch module=$file userid=csa_v30/csa_v30@csa5i009 module_type=MENU compile_all=YES logon=YES batch=YES
    done
    cd $PATH_SAVE
    unset PATH_SAVE
    and obtained:
    PL/SQL ERROR 201 at line 58, coloumn 5
    identifier 'SRW.SET_FOREGROUND_FILL COLOR' must be declared
    FRM-30312: Failed to compile the library
    Some useful data:
    Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    PL/SQL Version 10.1.0.4.2 (Production)
    Oracle Procedure Builder V10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 10.1.2.0.2 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.2 (Production)
    Oracle Tools GUI Utilities Version 10.1.2.0.2 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE     10.1.0.4.0     Production
    And:
    Report Builder 10.1.2.0.2
    ORACLE Server Release 10.1.0.4.2
    Oracle Procedure Builder 10.1.2.0.2
    Oracle ORACLE PL/SQL V10.1.0.4.2 - Production
    Oracle CORE     10.1.0.4.0     Production
    Oracle Tools Integration Services 10.1.2.0.2
    Oracle Tools Common Area 10.1.2.0.2
    Oracle Toolkit 2 for Windows 32-bit platforms 10.1.2.0.2
    Resource Object Store 10.1.2.0.2
    Oracle Help 10.1.2.0.2
    Oracle Sqlmgr 10.1.2.0.2
    Oracle Query Builder 10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle ZRC 10.1.2.0.2
    Oracle XML Developers Kit 10.1.0.4.2 - Production
    Oracle Virtual Graphics System 10.1.2.0.2
    Oracle Image 10.1.2.0.2
    Oracle Multimedia Widget 10.1.2.0.2
    Oracle Tools GUI Utilities 10.1.2.0.2
    Any advice will be welcome
    Thanx
    Rob

    This package currently compiles fine with the latest gcc (at least last time I checked), but still I'm having trouble making a package for it because I don't know how to get it to install to a custom location like the $startdir/pkg directory.

  • [SOLVED] Agar - OpenGL widget toolkit

    Agar is a set of cross-platform libraries written in C/C++/Ada for graphical applications. The main library of the distribution is a widget toolkit, Agar-GUI. Agar is open source, released under a revised BSD license.
    http://libagar.org/
    There is already an attempt for this package, but the maintainer himself admits that the compilation fails.
    http://aur.archlinux.org/packages.php?ID=24001
    would be nice if someone could fix this!
    Last edited by laplace (2009-04-25 14:47:43)

    thanks a lot!
    works for me under x86_64 as well
    Last edited by laplace (2009-04-25 14:49:11)

  • Dynamic PDF Creator Replacement Widget

    Hi,
    I'm trying figure out I can get a widget similar to Dynamic PDF Export that was sold by CaptivateDev.com - eLearning Development with Adobe Captivate
    Now that they closed there door...I'm stuck it's the exact widget I needed.
    My goal is to capture user input and compile a completed 'Take away Workbook" from the questions that were answered.
    Any other way to accomplish this?
    -Rob

    I'm pretty good with Captivate and advanced actions; but once java is involved I do get a little lost.
    Can you give me a little bit of direction on how to make the connection between the external library, captivate and the javascript pdf thing.
    I have an email out a web designer with our company but he won't know Captivate so I'll need to give them a little bit of support.
    Thanks
    Rob

  • [JSP compiler] How to change it

    Hi, I get an error when compiling a HUGE JSP page!!! Code is too large for try block!
    So, I just want to change the compiler ...
    I'm using the 10.1.3.1.0 and each time, I get that error:
    OracleJSP : oracle.jsp.provider.JspCompileException:
    I have try to use "javaccmd" param-init but it is deprecated (you can find it here: http://download-east.oracle.com/docs/cd/B32110_01/web.1013/b28951.pdf ).
    So I'm stuck, I get borring, nothing work... OC4J WON'T work!!! All others work.
    How can I change the JSP compiler please, it's the LAST THING I MUST DONE FOR SCHOOL!
    What must I use instead of "javaccmd" param-init ?
    Thanks very very very much...

    Here is the debug output... :
    OracleJSP : oracle.jsp.provider.JspCompileException:
    Erreurs de compilation :D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java
    [parsing started D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java]
    [parsing completed 641ms]
    [search path for source files: [C:\Java\jdk1.5.0_11\jre\lib\rt.jar, C:\Java\jdk1.5.0_11\jre\lib\jsse.jar, C:\Java\jdk1.5.0_11\jre\lib\jce.jar, C:\Java\jdk1.5.0_11\jre\lib\charsets.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\activation.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\clibwrapper_jiio.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\dnsns.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_codec.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_core.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_imageio.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-api.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-impl.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb1-impl.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-xjc.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jsr173_api.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\localedata.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\mlibwrapper_jai.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\sunjce_provider.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\sunpkcs11.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\which4j.jar, D:\oc4j_extended_101310\j2ee\home\oc4j-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-unsupported-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\activation.jar, D:\oc4j_extended_101310\j2ee\home\lib\mail.jar, D:\oc4j_extended_101310\j2ee\home\lib\persistence.jar, D:\oc4j_extended_101310\j2ee\home\lib\ejb30.jar, D:\oc4j_extended_101310\j2ee\home\lib\ejb.jar, D:\oc4j_extended_101310\j2ee\home\lib\javax77.jar, D:\oc4j_extended_101310\j2ee\home\lib\javax88.jar, D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar, D:\oc4j_extended_101310\j2ee\home\lib\jms.jar, D:\oc4j_extended_101310\j2ee\home\lib\jta.jar, D:\oc4j_extended_101310\j2ee\home\lib\jacc-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\connector.jar, D:\oc4j_extended_101310\j2ee\home\lib\jmx_remote_api.jar, D:\oc4j_extended_101310\j2ee\home\lib\jax-qname-namespace.jar, D:\oc4j_extended_101310\webservices\lib\jaxr-api.jar, D:\oc4j_extended_101310\webservices\lib\jaxrpc-api.jar, D:\oc4j_extended_101310\webservices\lib\saaj-api.jar, D:\oc4j_extended_101310\webservices\lib\jws-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-internal.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-oc4j.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-client.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-server.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-schemas.jar, D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j_orb.jar, D:\oc4j_extended_101310\j2ee\home\lib\iiop_support.jar, D:\oc4j_extended_101310\j2ee\home\lib\orbbase.jar, D:\oc4j_extended_101310\j2ee\home\iiop_gen_bin.jar, D:\oc4j_extended_101310\j2ee\home\lib\jmxcluster.jar, D:\oc4j_extended_101310\j2ee\home\jaccprovider.jar, D:\oc4j_extended_101310\j2ee\home\jacc-spi.jar, D:\oc4j_extended_101310\j2ee\home\jazncore.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\oraclepki.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\ojpse.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\ldapjclnt10.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\jssl-1_1.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\javax-ssl-1_1.jar, D:\oc4j_extended_101310\j2ee\home\..\..\lib\xmlparserv2.jar, D:\oc4j_extended_101310\j2ee\home\..\..\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\j2ee\home\..\..\lib\dms.jar, D:\oc4j_extended_101310\javavm\lib\jasper.zip, D:\oc4j_extended_101310\j2ee\home\lib\adminclient.jar, D:\oc4j_extended_101310\opmn\lib\optic.jar, D:\oc4j_extended_101310\j2ee\home\jazn.jar, D:\oc4j_extended_101310\jlib\ldapjclnt10.jar, D:\oc4j_extended_101310\jlib\jssl-1_1.jar, D:\oc4j_extended_101310\jlib\javax-ssl-1_1.jar, D:\oc4j_extended_101310\webservices\lib\wsserver.jar, D:\oc4j_extended_101310\webservices\lib\wsif.jar, D:\oc4j_extended_101310\webservices\lib\orawsmetadata.jar, D:\oc4j_extended_101310\webservices\lib\orajaxr.jar, D:\oc4j_extended_101310\webservices\lib\.\jaxr-api.jar, D:\oc4j_extended_101310\webservices\lib\.\orasaaj.jar, D:\oc4j_extended_101310\toplink\jlib\toplink-oc4j.jar, D:\oc4j_extended_101310\toplink\jlib\antlr.jar, D:\oc4j_extended_101310\diagnostics\lib\ojdl2.jar, D:\oc4j_extended_101310\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\xqs\lib\xqs-api.jar, D:\oc4j_extended_101310\xqs\lib\xds.jar, D:\oc4j_extended_101310\j2ee\home\lib\pcl.jar, D:\oc4j_extended_101310\webservices\lib\JMXSoapAdapterShared.jar, D:\oc4j_extended_101310\lib\dmsapp.jar, D:\oc4j_extended_101310\j2ee\home\applications\admin_ejb.jar, D:\oc4j_extended_101310\j2ee\home\lib\scheduler.jar, D:\oc4j_extended_101310\j2ee\home\connectors\datasources\datasources\datasources.jar, D:\oc4j_extended_101310\j2ee\home\connectors\OracleASjms\OracleASjms\gjra.jar, D:\oc4j_extended_101310\j2ee\home\applications\jmsrouter-ejb.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\design.model.ejb3.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.ejb3.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\enext.webtools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.corbatools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.framework.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.generic.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.idl.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.interfaces.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.mail.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.tools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.featureBridge.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.jaxb.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.generator.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.widget.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.tools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.wmt.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oracleDriver.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.ecw.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.feature.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.kernel.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.nis.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\ose.componentModel.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\wms.capabilities.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\catalog.ejb3.jar, D:\oc4j_extended_101310\lib\dms.jar, D:\oc4j_extended_101310\jdbc\lib\ojdbc14dms.jar, D:\oc4j_extended_101310\opmn\lib\ons.jar, D:\oc4j_extended_101310\jdbc\lib\ocrs12.jar, D:\oc4j_extended_101310\rdbms\jlib\aqapi.jar, D:\oc4j_extended_101310\j2ee\home\lib\ojms-provider.jar, D:\oc4j_extended_101310\jdbc\lib\orai18n.jar, D:\oc4j_extended_101310\lib\xmlparserv2.jar, D:\oc4j_extended_101310\lib\xml.jar, D:\oc4j_extended_101310\lib\xmlmesg.jar, D:\oc4j_extended_101310\lib\xsu12.jar, D:\oc4j_extended_101310\lib\xquery.jar, D:\oc4j_extended_101310\jlib\osdt_core.jar, D:\oc4j_extended_101310\jlib\osdt_cert.jar, D:\oc4j_extended_101310\jlib\osdt_xmlsec.jar, D:\oc4j_extended_101310\jlib\osdt_wss.jar, D:\oc4j_extended_101310\jlib\osdt_saml.jar, D:\oc4j_extended_101310\jlib\ojpse.jar, D:\oc4j_extended_101310\jlib\oraclepki.jar, D:\oc4j_extended_101310\toplink\jlib\toplink.jar, D:\oc4j_extended_101310\toplink\jlib\toplink-essentials.jar, D:\oc4j_extended_101310\webservices\lib\wsclient.jar, D:\oc4j_extended_101310\webservices\lib\orasaaj.jar, D:\oc4j_extended_101310\webservices\lib\xsdlib.jar, D:\oc4j_extended_101310\webservices\lib\relaxngDatatype.jar, D:\oc4j_extended_101310\webservices\lib\mdds.jar, D:\oc4j_extended_101310\javacache\lib\cache.jar, D:\oc4j_extended_101310\javacache\lib\..\..\lib\xmlparserv2.jar, D:\oc4j_extended_101310\javacache\lib\..\..\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\webservices\lib\soap.jar, D:\oc4j_extended_101310\sqlj\lib\runtime12.jar, D:\oc4j_extended_101310\sqlj\lib\translator.jar, D:\oc4j_extended_101310\webservices\lib\orawsdl.jar, D:\oc4j_extended_101310\j2ee\home\applib, D:\oc4j_extended_101310\j2ee\home\applib\jai_codec.jar, D:\oc4j_extended_101310\j2ee\home\applib\activation.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-awt-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-bridge.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-css.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-dom.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-ext.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-extension.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-gui-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-gvt.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-parser.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-script.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-svg-dom.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-svggen.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-swing.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-transcoder.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-xml.jar, D:\oc4j_extended_101310\j2ee\home\applib\Acme.jar, D:\oc4j_extended_101310\j2ee\home\applib\jai_core.jar, D:\oc4j_extended_101310\j2ee\home\applib\jai_imageio.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb1-impl.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-api.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-impl.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-xjc.jar, D:\oc4j_extended_101310\j2ee\home\applib\jsr173_api.jar, D:\oc4j_extended_101310\j2ee\home\applib\jdbcora10fixed.jar, D:\oc4j_extended_101310\j2ee\home\applib\JdbcOraWrapper.jar, D:\oc4j_extended_101310\j2ee\home\applib\mjdfotf.jar, D:\oc4j_extended_101310\j2ee\home\applib\pdf-transcoder.jar, D:\oc4j_extended_101310\j2ee\home\applib\sdoapifixed.jar, D:\oc4j_extended_101310\j2ee\home\jsp\lib\taglib, D:\oc4j_extended_101310\j2ee\home\jsp\lib\taglib\ojsputil.jar, D:\oc4j_extended_101310\lib\dsv2.jar, D:\oc4j_extended_101310\j2ee\home\lib\http_client.jar, D:\oc4j_extended_101310\j2ee\home\lib\jgroups-core.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\classes, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\aclibico-castrated.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-beanutils.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-collections.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-digester.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-fileupload.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-lang.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-logging.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-math-1.0.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-validator.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\design.apic2next.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\design.importPlugIn.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\designSource.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\ini4j-compat.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\ini4j.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jaas.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jakarta-oro.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\java_cup_10k.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jstl.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jta-spec1_0_1.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\mail.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\menu.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\relaxngDatatype.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\resolver.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\retroweaver-rt-1.2.1.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts-legacy.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\xmlsec.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\xsdlib.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Acme.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\antlr.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\sdoapifixed.jar]]
    [search path for class files: [C:\Java\jdk1.5.0_11\jre\lib\rt.jar, C:\Java\jdk1.5.0_11\jre\lib\jsse.jar, C:\Java\jdk1.5.0_11\jre\lib\jce.jar, C:\Java\jdk1.5.0_11\jre\lib\charsets.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\activation.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\clibwrapper_jiio.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\dnsns.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_codec.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_core.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_imageio.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-api.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-impl.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-xjc.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb1-impl.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jsr173_api.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\localedata.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\mlibwrapper_jai.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\sunjce_provider.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\sunpkcs11.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\which4j.jar, D:\oc4j_extended_101310\j2ee\home\oc4j-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-unsupported-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\activation.jar, D:\oc4j_extended_101310\j2ee\home\lib\mail.jar, D:\oc4j_extended_101310\j2ee\home\lib\persistence.jar, D:\oc4j_extended_101310\j2ee\home\lib\ejb30.jar, D:\oc4j_extended_101310\j2ee\home\lib\ejb.jar, D:\oc4j_extended_101310\j2ee\home\lib\javax77.jar, D:\oc4j_extended_101310\j2ee\home\lib\javax88.jar, D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar, D:\oc4j_extended_101310\j2ee\home\lib\jms.jar, D:\oc4j_extended_101310\j2ee\home\lib\jta.jar, D:\oc4j_extended_101310\j2ee\home\lib\jacc-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\connector.jar, D:\oc4j_extended_101310\j2ee\home\lib\jmx_remote_api.jar, D:\oc4j_extended_101310\j2ee\home\lib\jax-qname-namespace.jar, D:\oc4j_extended_101310\webservices\lib\jaxr-api.jar, D:\oc4j_extended_101310\webservices\lib\jaxrpc-api.jar, D:\oc4j_extended_101310\webservices\lib\saaj-api.jar, D:\oc4j_extended_101310\webservices\lib\jws-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-internal.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-oc4j.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-client.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-server.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-schemas.jar, D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j_orb.jar, D:\oc4j_extended_101310\j2ee\home\lib\iiop_support.jar, D:\oc4j_extended_101310\j2ee\home\lib\orbbase.jar, D:\oc4j_extended_101310\j2ee\home\iiop_gen_bin.jar, D:\oc4j_extended_101310\j2ee\home\lib\jmxcluster.jar, D:\oc4j_extended_101310\j2ee\home\jaccprovider.jar, D:\oc4j_extended_101310\j2ee\home\jacc-spi.jar, D:\oc4j_extended_101310\j2ee\home\jazncore.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\oraclepki.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\ojpse.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\ldapjclnt10.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\jssl-1_1.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\javax-ssl-1_1.jar, D:\oc4j_extended_101310\j2ee\home\..\..\lib\xmlparserv2.jar, D:\oc4j_extended_101310\j2ee\home\..\..\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\j2ee\home\..\..\lib\dms.jar, D:\oc4j_extended_101310\javavm\lib\jasper.zip, D:\oc4j_extended_101310\j2ee\home\lib\adminclient.jar, D:\oc4j_extended_101310\opmn\lib\optic.jar, D:\oc4j_extended_101310\j2ee\home\jazn.jar, D:\oc4j_extended_101310\jlib\ldapjclnt10.jar, D:\oc4j_extended_101310\jlib\jssl-1_1.jar, D:\oc4j_extended_101310\jlib\javax-ssl-1_1.jar, D:\oc4j_extended_101310\webservices\lib\wsserver.jar, D:\oc4j_extended_101310\webservices\lib\wsif.jar, D:\oc4j_extended_101310\webservices\lib\orawsmetadata.jar, D:\oc4j_extended_101310\webservices\lib\orajaxr.jar, D:\oc4j_extended_101310\webservices\lib\.\jaxr-api.jar, D:\oc4j_extended_101310\webservices\lib\.\orasaaj.jar, D:\oc4j_extended_101310\toplink\jlib\toplink-oc4j.jar, D:\oc4j_extended_101310\toplink\jlib\antlr.jar, D:\oc4j_extended_101310\diagnostics\lib\ojdl2.jar, D:\oc4j_extended_101310\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\xqs\lib\xqs-api.jar, D:\oc4j_extended_101310\xqs\lib\xds.jar, D:\oc4j_extended_101310\j2ee\home\lib\pcl.jar, D:\oc4j_extended_101310\webservices\lib\JMXSoapAdapterShared.jar, D:\oc4j_extended_101310\lib\dmsapp.jar, D:\oc4j_extended_101310\j2ee\home\applications\admin_ejb.jar, D:\oc4j_extended_101310\j2ee\home\lib\scheduler.jar, D:\oc4j_extended_101310\j2ee\home\connectors\datasources\datasources\datasources.jar, D:\oc4j_extended_101310\j2ee\home\connectors\OracleASjms\OracleASjms\gjra.jar, D:\oc4j_extended_101310\j2ee\home\applications\jmsrouter-ejb.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\design.model.ejb3.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.ejb3.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\enext.webtools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.corbatools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.framework.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.generic.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.idl.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.interfaces.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.mail.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.tools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.featureBridge.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.jaxb.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.generator.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.widget.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.tools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.wmt.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oracleDriver.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.ecw.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.feature.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.kernel.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.nis.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\ose.componentModel.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\wms.capabilities.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\catalog.ejb3.jar, D:\oc4j_extended_101310\lib\dms.jar, D:\oc4j_extended_101310\jdbc\lib\ojdbc14dms.jar, D:\oc4j_extended_101310\opmn\lib\ons.jar, D:\oc4j_extended_101310\jdbc\lib\ocrs12.jar, D:\oc4j_extended_101310\rdbms\jlib\aqapi.jar, D:\oc4j_extended_101310\j2ee\home\lib\ojms-provider.jar, D:\oc4j_extended_101310\jdbc\lib\orai18n.jar, D:\oc4j_extended_101310\lib\xmlparserv2.jar, D:\oc4j_extended_101310\lib\xml.jar, D:\oc4j_extended_101310\lib\xmlmesg.jar, D:\oc4j_extended_101310\lib\xsu12.jar, D:\oc4j_extended_101310\lib\xquery.jar, D:\oc4j_extended_101310\jlib\osdt_core.jar, D:\oc4j_extended_101310\jlib\osdt_cert.jar, D:\oc4j_extended_101310\jlib\osdt_xmlsec.jar, D:\oc4j_extended_101310\jlib\osdt_wss.jar, D:\oc4j_extended_101310\jlib\osdt_saml.jar, D:\oc4j_extended_101310\jlib\ojpse.jar, D:\oc4j_extended_101310\jlib\oraclepki.jar, D:\oc4j_extended_101310\toplink\jlib\toplink.jar, D:\oc4j_extended_101310\toplink\jlib\toplink-essentials.jar, D:\oc4j_extended_101310\webservices\lib\wsclient.jar, D:\oc4j_extended_101310\webservices\lib\orasaaj.jar, D:\oc4j_extended_101310\webservices\lib\xsdlib.jar, D:\oc4j_extended_101310\webservices\lib\relaxngDatatype.jar, D:\oc4j_extended_101310\webservices\lib\mdds.jar, D:\oc4j_extended_101310\javacache\lib\cache.jar, D:\oc4j_extended_101310\javacache\lib\..\..\lib\xmlparserv2.jar, D:\oc4j_extended_101310\javacache\lib\..\..\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\webservices\lib\soap.jar, D:\oc4j_extended_101310\sqlj\lib\runtime12.jar, D:\oc4j_extended_101310\sqlj\lib\translator.jar, D:\oc4j_extended_101310\webservices\lib\orawsdl.jar, D:\oc4j_extended_101310\j2ee\home\applib, D:\oc4j_extended_101310\j2ee\home\applib\jai_codec.jar, D:\oc4j_extended_101310\j2ee\home\applib\activation.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-awt-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-bridge.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-css.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-dom.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-ext.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-extension.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-gui-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-gvt.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-parser.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-script.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-svg-dom.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-svggen.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-swing.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-transcoder.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-xml.jar, D:\oc4j_extended_101310\j2ee\home\applib\Acme.jar, D:\oc4j_extended_101310\j2ee\home\applib\jai_core.jar, D:\oc4j_extended_101310\j2ee\home\applib\jai_imageio.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb1-impl.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-api.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-impl.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-xjc.jar, D:\oc4j_extended_101310\j2ee\home\applib\jsr173_api.jar, D:\oc4j_extended_101310\j2ee\home\applib\jdbcora10fixed.jar, D:\oc4j_extended_101310\j2ee\home\applib\JdbcOraWrapper.jar, D:\oc4j_extended_101310\j2ee\home\applib\mjdfotf.jar, D:\oc4j_extended_101310\j2ee\home\applib\pdf-transcoder.jar, D:\oc4j_extended_101310\j2ee\home\applib\sdoapifixed.jar, D:\oc4j_extended_101310\j2ee\home\jsp\lib\taglib, D:\oc4j_extended_101310\j2ee\home\jsp\lib\taglib\ojsputil.jar, D:\oc4j_extended_101310\lib\dsv2.jar, D:\oc4j_extended_101310\j2ee\home\lib\http_client.jar, D:\oc4j_extended_101310\j2ee\home\lib\jgroups-core.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\classes, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\aclibico-castrated.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-beanutils.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-collections.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-digester.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-fileupload.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-lang.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-logging.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-math-1.0.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-validator.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\design.apic2next.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\design.importPlugIn.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\designSource.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\ini4j-compat.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\ini4j.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jaas.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jakarta-oro.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\java_cup_10k.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jstl.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jta-spec1_0_1.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\mail.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\menu.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\relaxngDatatype.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\resolver.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\retroweaver-rt-1.2.1.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts-legacy.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\xmlsec.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\xsdlib.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Acme.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\antlr.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\sdoapifixed.jar]]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\oc4j-internal.jar(com/orionserver/http/OrionHttpJspPage.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/HttpJspPage.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspPage.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/Servlet.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Object.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/http/HttpServletRequest.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/http/HttpServletResponse.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/IOException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletException.class)]
    [checking _config]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Error.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Exception.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Throwable.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/RuntimeException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletResponse.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/String.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/PageContext.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspWriter.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspFactory.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletRequest.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/http/HttpSession.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspContext.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletContext.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletConfig.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/el/VariableResolver.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar(oracle/jsp/el/OracleVariableResolverImpl.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\oc4j-internal.jar(com/evermind/server/http/JspCommonExtraWriter.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/Writer.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Appendable.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/Closeable.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/Flushable.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/rt/core/SetTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar(oracle/jsp/runtime/OracleJspRuntime.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Class.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/Tag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/common/core/SetSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/BodyTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/TagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/IterationTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/FormTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/PanelTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/LabelledTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/LayoutTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/tab/TabsTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/BodyLayoutTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/tab/TabTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/GridLayoutTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/MessageTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/ImageTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/ActionTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/BaseHandlerTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts.jar(org/apache/struts/taglib/html/BaseHandlerTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/TextFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/AbstractFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/AbstractLayoutFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/AbstractModeFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/EmptyTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/CheckboxTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/SelectTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/OptionsTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/ColumnTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/LinkTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts.jar(org/apache/struts/taglib/bean/MessageTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/CellTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/rt/core/IfTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jstl.jar(javax/servlet/jsp/jstl/core/ConditionalTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/common/core/ChooseTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/rt/core/WhenTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/common/core/WhenTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/common/core/OtherwiseTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/RowTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/SubmitTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/TextareaFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/BodyTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/JspTag.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/Serializable.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Boolean.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar(oracle/jsp/jml/JmlFPNumber.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar(oracle/jsp/jml/JmlNumber.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/SkipPageException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspException.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/System.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/PrintStream.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/FilterOutputStream.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/OutputStream.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/UnsupportedEncodingException.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/InstantiationException.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/IllegalAccessException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/el/ELException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspTagException.class)]
    D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java:9941: code too large for try statement
    catch (Throwable e) {
    ^
    D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java:9946: code too large for try statement
    catch (Exception clearException) {
    ^
    D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java:40: code too large for try statement
    try {
    ^
    D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java:18: code too large
    public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException {
    ^
    [total 9424ms]
    4 errors

  • Spry Widgets...

    What is the overall impression of using spry widgets for web design.  I've used it to create a very nice menu/nav bar but with .css seeming so popular I was wondering from a developers and designers preference...  Is it a good choice to use?

    One should always try to use less scripts and more CSS because some users are paranoid about allowing any scripts to run on their system.
    JavaScript is relatively safe, have a look here from a Microsoft programming engineer.
    Also, in IE, the default configuration is not to allow any scripts to run and if a page contains such scripts, you normally get a frightening warning.  this alerts your users not to continue with your site unless you are some big boys like M$, Amazon, Adobe, Yahoo, Google etc.
    With the exception of browsing a website local to my system, I have not heard of IE blocking or warning of JavaScripts running in a program. After all DW makes grateful use of JavaScript to make it user friendly.
    Now you know this, Spry Widget is a nothing more than scripts pinched from open source distributors and put together by Adobe.
    The JavaScript that is used by Adobe's Spry widgets, has been compiled by some very smart, Donald Booth to name one, people. Spry is marketed as a JavaScript library.
    If it is true that JavaScript is dangerous, why does my bank choose to use JavaScript in their website? Why do Governments all over the world choose to use JavaScript? Why do widgets from Extend Studio, DMXZone, PVII, Webassist, Linecraft etc choose to use JavaScript? In fact this very page that you are viewing shows
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml">
    <head>
        <title>Adobe Forums: Spry Widgets...</title>
        <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
    <script type="text/javascript">
        if (top != self) {
            var isSafeTopUrl = false;
            try {
                var topUrl = top.location.href;
                var topUrlQsIdx = topUrl.indexOf('?');
                if (topUrlQsIdx > 0) {
                    topUrl = topUrl.substring(0, topUrlQsIdx);
                topUrl = topUrl.toLowerCase();
                var safeTopUrls = new Array(
                    'http://forums.adobe.com/skin-basic.jspa',
                    'http://forums.adobe.com/skin-advanced.jspa',
                    'http://forums.adobe.com/skin-advanced!UploadSkinZip.jspa',
                    'http://forums.adobe.com/skin-palette.jspa',
                    'http://forums.adobe.com/skin-palette!start.jspa'
                for (var i = 0; i < safeTopUrls.length; i++) {
                    if (safeTopUrls[i].toLowerCase() == topUrl) {
                        isSafeTopUrl = true;
                        break;
            } catch (err) {
            if (!isSafeTopUrl) top.location = location;
    </script>
    as the first 20 or so lines. Why would they if it is dangerous?
    Just a few ponderings and maybe to set the record straight.
    Gramps

  • JavaFX SDK - no tab widget?

    The previous JavaFX releases had somehow the possibility to use a tabbedPane and the tab widget.
    I don't see them back in the list of javafx.ext.swing widgets of the newly released javaFX SDK. Will they be added in a future SDK release
    or if not, does somebody has an example how to create a tabbedPane and tabs with the new SDK release?
    Appreciate any help.

    Here is an example of some [ UI components|http://fisheye4.atlassian.com/browse/~br=technology-preview-1/openjfx-compiler/branches/technology-preview-1/demos/Assortis/src/assortis/core/ui] implementation: MyTabbedPane, MyTab

  • The Case of the Missing Widgets

    I have two accounts on my home computer. On one the dashboard and all the widgets function perfectly. On the second account none of the widgets show up or are available in the drawer to add. I can't figure out why the base system widgets wouldn't be available accross different user accounts.
    Tried lots of stuff, looked up lots of forum discussions, nada helps.
    Any advice? Thanks!

    value = value;Oh, so you have one of those new compilers that reads your mind and knows which value is which in that statement, huh?
    Lucky.
    The rest of us are stuck doing this.value = value;so that the compiler can distinguish the member variable from the method parameter.

  • Is it possible to create Qt Widgets inside After Effects using the SDK?

    Hi,
    I would like to use Qt to create Dialogs and Widgets inside AfterEffects.
    I started out with the Panelator example in the SDK. I can include QtGui into the project, but as soon as I create any object with QObject as a base-class After Effects crashes immediately with the following error: '[...] could not be loaded (48::46)'
    When I try delay load QtCore.dll and QtGui.dll I can at least start the plugin and see, that the crash happens in the initializer of the QObject.
    I use
    VS 2010
    QT 4.8.5
    and my buildenvironment is x64
    I was wondering if there is any kind of incompatibility of embedding Qt in After Effects (due to linker/compiler setting or defines or something like this).
    This is the debugger output:
    Locals:
    Threads:
    My code in the Panel-constructor function:
        int argc = 0;
        char *argv[1] = {""};
        QApplication* a = new QApplication(argc, argv); // THE ERROR OCCURS IN THIS LINE. for a test I exchanged it to QWidget* w = new QWidget(); and it happens as well.
        QWidget* w = new QWidget();
        w->show();
        a->exec();
    Outside of AfterFX Qt works fine and I also can delay-load QtGui and QtCore.
    If anyone of you already has experience in using QT in AfterEffects, I would really appreciate your help!
    Thanks in advance.

    It finds QtGui and QtCore, it misses out some other dependencies further down in the hierarchy of USER32.DLL:
    Which doesn't seem to disturb if I don't include and use QT:

  • No Results in the Widget

    Hello All,
         I am trying my hand at the Yahoo widgets. I have download the latest version 2.8 by Prakash.
      I have activated the “/sap/bc/soap/rfc" web service in SICF as suggested in the blog /people/prakash.darji/blog/2007/03/23/bi-data-widget--weblog-series-pre-requisites
    I have a query which I am trying to launch in the widget. This query has one char row and one keyfigure in the cols. No structures, no variables. The result area should not have more than 30 rows. I have entered the query name, infocube name(multiprovider in my case), logon information, ABAP host and Java host with appropriate ports, etc in the widget preferences.
    Even then, I dont see any results being display in the widget, it just shows up as a blank widget. I tried to change the host and ports, but every time I got the message "404:not found, can't connect to system". Now I gave the correct host and port info and the message stopped showing up, but I dont see the results. Also,at the right bottom of the widget, I see the Connectivity icon with a red X which reads "Offline".
    Is it an authorization issue ? Please help.
    Thanks.
    Edited by: Ajax on May 8, 2008 4:35 PM

    Hi Willam,
    Sorry, not sure what happened with the previous post.
    That’s what I did to begin with. Since I knew that layout worked for me and took care of the issues with the corrupt (Theme1) layout for the other project, I imported that into the current project. There seems to be something wrong with the layout or the project itself, though, now. Whenever I compile the project I get multiple errors stating the Search result widget isn’t allowed in the Topic screen layout page. I even created a completely new project, imported all my topics from the previous project, and imported the layout again and still it keeps giving me the error that the Search result widget is not allowed in the Topic screen layout page.
    I don’t think this has anything to do with iOS, since I’m seeing the issues when viewing the help file on both a laptop and PC; haven’t even viewed it on a device yet. At any rate, I just don’t understand why I’m getting all these errors, having all these issues with the Responsive HTML5 format. It’s been especially frustrating since I thought I had already resolved the layout issue.
    Any other ideas??
    Thanks,
      Dave

Maybe you are looking for