An Immediate Window in JDeveloper

Dear All,
I'd like to mention that I came from using Microsoft Tools and Microsoft Products has some sort of Immediate Window
where you can type something and see the result during debugging. Instead of coding it and rerunning the code, you can
use of this immediate window.
Does JDev has this feature also. This will surely help in debugging since I often find myself using java at the binding layer.
Thanks

Run in debug mode if you have modified any class file just right-click and click "make" then refresh your page. You will no need to re-run.

Similar Messages

  • Weird thing about the structure window in JDeveloper

    Hi !. My name is Agustin and I live in Cordoba, Argentina !. My doubt is the following one: I don't know the reason but I can't see my Structure Window, although I have clicked several times in the View > Structure menu item. Is there any option in JDeveloper to reset the panels as it would be done If I erase my domain ?. Thank you very much !.

    You didn't mention your JDev version.
    Here is a solution for older JDevs: https://blogs.oracle.com/shay/entry/where_did_that_jdeveloper_wind
    For newer ones it would be similar approach of finding and deleting the file from the system directory.

  • "Windowing" with JDeveloper 11

    Hi,
    As a new JDeveloper user I would like to know if it is possible with the upcoming new version to easily create a "windowing" system. I mean having a component like a PanelWindow and allowing a user to customize its page layout with drag`n`drop functionality on the PanelWindow. This is similar to google`s personalized home or meebo websites. If it is already possible, could someone give me a hint about how to do this ?
    Thank you very much.
    Jean-Philippe
    P.S.: The documentation is incomplete as I am wrinting this message and I am very enthusiast about reading it ;)

    Hi,
    this will be possible in the combination of ADF Faces and Webcenter. ADF Faces provides windowing support, but customization is through MDS and Webcenter
    Frank

  • Class window in JDeveloper 10.1.3.3.0

    Hello
    i am developring javabeans such as validator, textbox with password-numeric-alphabetics .
    in the documentation they have mension about class editor i can't find it
    in developer blog i read that for class window i have to update.after updating also i can't found class editor
    please give me information

    If you are talking about Swing development then this tutorial can get you started:
    http://www.oracle.com/technology/obe/obe1013jdev/10131/adf%20swing/master_detail_page_adfswing_bc.htm
    If you are just looking for things like generating accessors for variables have a look at this tutorial:
    http://www.oracle.com/technology/obe/obe1013jdev/10131/introide/introjdevide.htm

  • Immediate window close when trying to change wallpaper

    Hello there, I have been trying to change the wallpaper on my computer for several days but whenever i hit the button for change picture it immediately closes the window and i am stuck on the same picture and i dont know how to fix it. i also dont know how to change the screensaver and it is getting really anoying. Thanks in advance.

    Try deleting the Desktop settings file. First, open Finder, select Go menu > Go to Folder, and type ~/Library/Preferences. Then, delete "com.apple.desktop.plist" and "com.apple.systempreferences.plist", and restart.
    After restarting, open System Preferences > Desktop & Screen Saver, and you should be able to change your wallpaper and screensaver

  • Crystal Report Windows Forms Viewer - No Error Popup

    Similar to this post:  Error message that says "No Error" from CR Viewer, I have just upgraded by Application to .net 4.0 and Crystal Reports 2010. The report viewer works fine the first time a report is loaded, but when I change the parameters on the report, and put the updated report back into the report viewer, I get the message shown above.  The report does not change its parameters and the updated report is not displayed.  The code in question is setting the date parameters for the report.  The user can select new date parameters from the form that encloses the report viewer.  The code subclasses the Report Object code to add additional functions through interfaces.  The IDateRange interface provides a starting and ending date range for the report using a property on the report class as follows:
        Public Property EndingDate() As Date Implements IDateRange.EndingDate
            Get
                Return _endingDate
            End Get
            Set(ByVal value As Date)
                _endingDate = value
                Me.SetParameterValue("EndingDate", value)
            End Set
        End Property
    In addition, the immediate Window shows the following message:
    A first chance exception of type 'System.Runtime.InteropServices.COMException' occurred in CrystalDecisions.CrystalReports.Engine.dll
    The code in the Report Viewer looks like this, see line marked in blue for when pop-up appears:
    ''' <summary>
    ''' Sets the report period and displays it.
    ''' </summary>
    ''' <param name="Report">The Report.</param>
    ''' <param name="Refresh">if set to <c>true</c> force a refresh.</param>
    Private Function PFSetReportPeriod(ByVal Report As Object, Optional ByVal Refresh As Boolean = True) As Boolean
        Dim fld As FormulaFieldDefinition
        Dim bRefresh As Boolean = False
        Dim rpt As ReportClass = CType(Report, ReportClass)
        Try
            If CRV.ReportSource IsNot Nothing Then
                rpt = CType(CRV.ReportSource, ReportClass)
            End If
    If TypeOf rpt Is IDateRange Then
        With DirectCast(rpt, IDateRange)
    .        StartingDate = dtpFromDate.Value
    .        EndingDate = dtpToDate.Value
        End With
        SetTitleLine2(DirectCast(Report, ReportClass), bRefresh)
        bRefresh = True
    Else
        If TypeOf rpt Is ReportClass Then
           fld = rpt.DataDefinition.FormulaFields("FromDate")
           If Not fld Is Nothing Then
                fld.Text = "Date(" & dtpFromDate.Value.Year & "," & dtpFromDate.Value.Month & "," & dtpFromDate.Value.Day & ")"
                bRefresh = True
            End If
            fld = rpt.DataDefinition.FormulaFields("ToDate")
            If Not fld Is Nothing Then
                fld.Text = "Date(" & dtpToDate.Value.Year & "," & dtpToDate.Value.Month & "," & dtpToDate.Value.Day & ")"
                bRefresh = True
            End If
            SetTitleLine2(rpt, bRefresh)
        End If
    End If
        If Refresh And bRefresh Then
            If dtpToDate.Value <> CDate(dtpToDate.Tag) OrElse _
               dtpFromDate.Value <> CDate(dtpFromDate.Tag) Then
                    System.Windows.Forms.Application.DoEvents()
                If CRV.Visible Then CRV.ReportSource = rpt ' The popup appears when this statement is executed.
                If CRV.Visible = True Then CRV.Refresh()
                dtpToDate.Tag = dtpToDate.Value
                dtpFromDate.Tag = dtpFromDate.Value
               Return True
            End If
        End If
    Catch ex As Exception
        DisplayException(ex)
    End Try
    Return False
    End Function

    Problem has been resolved.  I downloaded Support Pack 8 (v.13.0.8.1216) from this location.  I then applied the fix from the entry above:
    With CRV ' Report Viewer Control
        If .Visible Then
            If .ParameterFieldInfo IsNot Nothing Then .ParameterFieldInfo.Clear()
            .ReportSource = rpt
            .Refresh()
        End If
    End With
    And no more annoying "No Error" messages.

  • Can you create a default profile on a single PC with multiple users? Firefox 3.6.10 running on Windows 7.

    We have about 15 users sharing the same computer. I would like to create a default firefox profile, so that no matter who logs in, they see the same home page, bookmarks, add ons and so forth. We are running windows 7. Is this possible? It would also be helpful when setting up new computers. This way it is consistent.
    Thank you for your time,
    Sherry

    hey jan :
    I have another issue : I would like to use in jdeveloper JSF and primefaces, which is a component library.
    but if JSF works well, I can't install primefaces : I right-click on the properties of my project, add the primefaces jar in the libraries, and add a taglib (<%@ taglib uri="http://primefaces.prime.com.tr/ui" prefix="p" %>) in my JSF page.
    but I have an arror while deploying the project.
    and (is it a clue?) there is no completion of the "<p: ..." tags;
    but there is a window in jdeveloper : http://www.imageshotel.org/images/lolveley/apturede769cran20101017a76813.png that I can't fill ; could you help me by telling me whatr to do?
    please
    olivier

  • Opening large ant xml build file(70KB+) hangs JDeveloper 11.1.2.1.0

    Hey everyone!
    I've been using JDeveloper for about 6 months and I've loved it from the beginning. Everythings seems to be where it's supposed to be and the visual editor greatly speeds up the development. And it's free - amazing. But the team I work with... all of them use IDEA/Eclipse, that is what people got used to - those monstrous IDE's that I'm not realy into - ...So all my persuasions to migrate to JDeveloper crash on one point: when opening large(70KB+) ant xml build files the JDeveloper seems to be doing some syntax checking and just hangs without saying anything. The strange thing is that these files open OK in IDEA/Eclipse.
    I use the latest version of JDeveloper 11g Release 2 11.1.2.1.0 on Windows7-64 and 1.6.0_30 java. Can I get some help on this one to increase the JDevelper popularity among fellow java developers? :)
    Thanks in advance!
    Edited by: 924380 on 29.03.2012 15:30

    Do you have access to Oracle Support to file an SR?
    Can you post your build.xml file somewhere, and I'd be happy to test?
    Another thing to try: run jdev.exe/jdev64.exe (assuming you're on windows) from jdeveloper\jdev\bin. This will open JDev in a command prompt window, and any stack traces that jdev might throw internally would be displayed in the console window. Not that this would help you fix anything, but might give Oracle a clue as to where the issue lies.
    John

  • How to Use AccessibleObjectFromWindow API in VBA to Get Excel Application Object from Excel Instance Window Handle

    I need to get the Excel.application object from a window handle using AccessibleObjectFromWindow. I can't seem to make the code work. First, I successfully search for the XLMAIN windows. Then, when I get a handle, I execute the AccessibleObjectFromWindow
    function. It seems to return a value of -2147467262 in all cases. Therefore, I believe that it is returning an error value. I can't figure out how to determine the meaning of this value.
    If it is an error value, I believe that one or more arguments are in error. My best guess at present is that the GUID argument is incorrect. I have tried two GUID values: {00020400-0000-0000-C000-000000000046} and {90140000-0016-0409-0000-0000000FF1CE}.
    I have seen both used in conjunction with OBJID_NATIVEOM. Neither one seems to work. I really would prefer not to use the second one as it has an Excel major and minor version number. I would hate to have to change this code, if a new minor version appeared.
    The attached code has been commented to show which parts have been shown to work and which not. I'm at my wits end and really need help.
    Thanks
    'This module is located in Access 2010, but this is an Excel question.
    Option Compare Database
    Option Explicit
    ' Module-Level Declarations
    'The GetDesktopWindow function and FindWindowEx function work just fine.
    Public Declare Function GetDesktopWindow Lib "user32" () As Long
    Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, _
    ByVal hWnd2 As Long, _
    ByVal lpsz1 As String, _
    ByVal lpsz2 As String) _
    As Long
    'I'm not getting the expected output from this function (see below)
    Private Declare Function AccessibleObjectFromWindow& Lib "oleacc.dll" _
    (ByVal hwnd&, _
    ByVal dwId&, _
    riid As GUID, _
    xlwb As Object)
    Type GUID
    lData1 As Long
    iData2 As Integer
    iData3 As Integer
    aBData4(0 To 7) As Byte
    End Type
    Function ExcelInstances() As Long
    ' Procedure-Level Declarations
    ' Value of OBJID_NATIVEOM verified by checking list of Windows API constants _
    on this site: http://www.lw-tech.com/q1/base.htm
    Const OBJID_NATIVEOM = &HFFFFFFF0
    Dim hWndDesk As Long 'Desktop window
    Dim hWndXL As Long 'Child window
    Dim objExcelApp As Object 'Final result wanted: Excel application object
    'Following variable (xlapp) to be set by AccessibleObjectFromWindow function
    Dim xlapp As Object
    Dim IDispatch As GUID 'GUID used in call to AccessibleObjectFrom Window function
    'Set up GUID to be used for all instances of Excel that are found
    Dim tmp1 As Variant 'Return value from AccessibleObjectFromWindow
    ' Executable Statements
    SetIDispatch IDispatch
    IDispatch = IDispatch
    'Get a handle to the desktop
    hWndDesk = GetDesktopWindow 'This seems to work
    Do
    'Get the next Excel window
    'The following statement seems to work. We are finding and counting _
    correctly all the instances of Excel. hWndXL is non-zero for each _
    instance of Excel
    hWndXL = FindWindowEx(GetDesktopWindow, hWndXL, "XLMAIN", vbNullString)
    'If we got one, increment the count
    If hWndXL > 0 Then
    'This works. We correctly count all _
    instances of Excel
    ExcelInstances = ExcelInstances + 1
    'Here is the problem. The following statement executes and returns a value of _
    -2147467262. xlapp, which is passed by reference to AccessibleObjectFromWindow, _
    is set to nothing. It should be set to the object for Excel.application. _
    I believe that this value is not an object. I tried to reference tmp1. in the _
    immediate window. There was no Intellisense.
    'I think that the function in returning an error value, but I can't figure _
    out what it is. I believe that AccessibleObjectFromWindow returns error _
    values, but I don't know where to find their values so I can interpret the _
    function's results.
    'As best I can tell, the hWndXL parameter is correct. It is the handle for _
    an instance of Excel. OBJID_NATIVEOM is set correctly (see constant declaration _
    above). xlapp is passed by reference as a non-initialized object variable, which _
    will be set by AccessiblObjectFromWindow. IDispatch may be the problem. It is set _
    as shown below in the procedure SetIDispatch(ByRef ID As GUID). This procedure _
    appears to work. I can see that IDispatch is set as I intended and correctly _
    passed to AccessibleObjectFromWindow.
    tmp1 = AccessibleObjectFromWindow(hWndXL, OBJID_NATIVEOM, IDispatch, xlapp)
    'Need to write code to test tmp1 for error. If none, then set objExcelApp = _
    object. Also, I exect xlapp to be set to Excel.application
    End If
    'Loop until we've found them all
    Loop Until hWndXL = 0
    End Function
    Private Sub SetIDispatch(ByRef ID As GUID)
    'Defines the IDispatch variable. The interface _
    ID is {90140000-0016-0409-0000-0000000FF1CE}.
    'NOT USING {00020400-0000-0000-C000-000000000046}, _
    which could be the problem
    '9 is release version - first version shipped (initial release)
    '0 is release type - retail/oem
    '14 is major version
    '0000 is minor version
    '0016 is product ID - MS Excel 2010
    '0409 is language identifier - English
    '0 is x86 or x64 - this is x86
    '000 reserved
    '0 is debug/ship
    '000000FF1CE is office family ID
    With ID
    .lData1 = &H90140000
    .iData2 = &H16
    .iData3 = &H409
    .aBData4(0) = &H0
    .aBData4(1) = &H0
    .aBData4(2) = &H0
    .aBData4(3) = &H0
    .aBData4(4) = &H0
    .aBData4(5) = &HF
    .aBData4(6) = &HF1
    .aBData4(7) = &HCE
    End With
    End Sub
    DaveInCalabasas

    I don't think you can return a reference to Excel's main window like that as you are attempting to do.
    Ref:
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd317978(v=vs.85).aspx 
    It's relatively straightforward to return any workbook's window in any given instance, and in turn it's parent Excel app. Try the following and adapt as required (and include error handling) -
    Option Explicit
    Private Declare Function FindWindowEx Lib "User32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, _
    ByVal lpsz2 As String) As Long
    Private Declare Function IIDFromString Lib "ole32" _
    (ByVal lpsz As Long, ByRef lpiid As GUID) As Long
    Private Declare Function AccessibleObjectFromWindow Lib "oleacc" _
    (ByVal hWnd As Long, ByVal dwId As Long, ByRef riid As GUID, _
    ByRef ppvObject As Object) As Long
    Private Type GUID
    Data1 As Long
    Data2 As Integer
    Data3 As Integer
    Data4(7) As Byte
    End Type
    Private Const S_OK As Long = &H0
    Private Const IID_IDispatch As String = "{00020400-0000-0000-C000-000000000046}"
    Private Const OBJID_NATIVEOM As Long = &HFFFFFFF0
    Sub test()
    Dim i As Long
    Dim hWinXL As Long
    Dim xlApp As Object ' Excel.Application
    Dim wb As Object ' Excel.Workbook
    hWinXL = FindWindowEx(0&, 0&, "XLMAIN", vbNullString)
    While hWinXL > 0
    i = i + 1
    Debug.Print "Instance_" & i; hWinXL
    If GetXLapp(hWinXL, xlApp) Then
    For Each wb In xlApp.Workbooks
    Debug.Print , wb.Name
    Next
    End If
    hWinXL = FindWindowEx(0, hWinXL, "XLMAIN", vbNullString)
    Wend
    End Sub
    'Function GetXLapp(hWinXL As Long, xlApp As Excel.Application) As Boolean
    Function GetXLapp(hWinXL As Long, xlApp As Object) As Boolean
    Dim hWinDesk As Long, hWin7 As Long
    Dim obj As Object
    Dim iid As GUID
    Call IIDFromString(StrPtr(IID_IDispatch), iid)
    hWinDesk = FindWindowEx(hWinXL, 0&, "XLDESK", vbNullString)
    hWin7 = FindWindowEx(hWinDesk, 0&, "EXCEL7", vbNullString)
    If AccessibleObjectFromWindow(hWin7, OBJID_NATIVEOM, iid, obj) = S_OK Then
    Set xlApp = obj.Application
    GetXLapp = True
    End If
    End Function
    Note as written if an instance does not have any loaded workbooks a reference will not be returned (though a workbook can be added using DDE, but convoluted!)
    FWIW there are two other very different approaches to grab all running Excel instances though something along the lines of the above is simplest.
    Peter Thornton

  • JDeveloper 9.0.2 crash on Linux

    Hi
    Just Downloaded JDeveloper 9.0.2 for my Linux box (Debian 2.2R0
    gcc 2.95.4)
    and after unziping JDevXXX.zip in /usr/local/JDEV9 and configuring
    jdev.conf to point to JAVA_HOME /usr/local/jbuilder6/jdk1.3.1
    After ./jdev when main window shows JDeveloper just crashes with message in xterm:
    java: ../../../src/share/native/sun/awt/font/fontmanager/fontobjects/fontObject.cpp:298: void fileFontObject::readBlock(size_t, size_t, char *): Assertion `size > 0' failed.
    ./jdev: line 31: 11581 Aborted ${JAVA} ${JDEV_VM_OPTS} ${JDEV_NATIVE_PATH} ${JDEV_USER_HOME} ${JDEV_ENV_VARS} -classpath ${JDEV_CLASSPATH} ${JDEV_MAIN_CLASS} ${JDEV_APP_OPTS}
    any idea?
    Is it Sun Bug or What?
    JBuilder works good (K6-II 400 + 384 Mb RAM), but Together5.5 got sam problem with their own jdk.

    Hi
    Just Downloaded JDeveloper 9.0.2 for my Linux box (Debian 2.2R0
    gcc 2.95.4)
    and after unziping JDevXXX.zip in /usr/local/JDEV9 and configuring
    jdev.conf to point to JAVA_HOME /usr/local/jbuilder6/jdk1.3.1
    After ./jdev when main window shows JDeveloper just crashes with message in xterm:
    java: ../../../src/share/native/sun/awt/font/fontmanager/fontobjects/fontObject.cpp:298: void fileFontObject::readBlock(size_t, size_t, char *): Assertion `size > 0' failed.
    ./jdev: line 31: 11581 Aborted ${JAVA} ${JDEV_VM_OPTS} ${JDEV_NATIVE_PATH} ${JDEV_USER_HOME} ${JDEV_ENV_VARS} -classpath ${JDEV_CLASSPATH} ${JDEV_MAIN_CLASS} ${JDEV_APP_OPTS}
    any idea?
    Is it Sun Bug or What?
    JBuilder works good (K6-II 400 + 384 Mb RAM), but Together5.5 got sam problem with their own jdk.
    Looks like its the same issue as sun bug 4599491. There is something in the fonts file for your OS which Java doesn't like. You might want to pull down 1.3.1_04 from Sun and install it in a seperate home (not sure if Borland changed anything in the JDK) and try that out.
    Apart from that, look at your font configuration files ( not sure where on Linux ) and see if something looks out of line.
    Hope this helps,
    Rob

  • Fusion Order Demo zip file which works with JDeveloper 11.1.1.3.0

    Hi,
    Please can anyone tell me where to find the Fusion Order Demo zip file that will work with JDeveloper 11.1.1.3.0 (latest version 13/5/10).
    I have downloade OracleXE 10g for Windows on my laptop and now want to create the Fusion Schemas (Tables/Schemas/Procedures etc) for the Demos.
    I have downloaded FOD_11.zip, FusionOrderDemo_R1.zip and tryed the instructiion for running Fusion Order Demo here http://www.oracle.com/technology/documentation/jdev.html but each time I get the error
    "oracle.javacache_11.1.1 not found"
    How can I fix this?
    I want to learn Jdeveloper works and use it for Logical and Physical Schema mapping....
    Thanks
    BP

    Hey John,
    Thanks for the quick reply, and yes sir, I did follow those instructions.
    Let me describe what all I have done so far, maybe someone can figure out where I need to fix anything:
    I installed JDeveloper version 11.1.1.3.0, which came with its own WebLogic server, on my windows xp professional OS on my laptop.
    I then downloaded the zip file, FusionOrderDemo_R1PS2.zip.
    I encountered a problem while unzipping the file, where it was asking me some password for a few files, but Lynn from Oracle helped me figure that out....i had to use 7-zip utility to uninstall....windows default built-in unzip utility does not work.
    After unzipping all files, I followed the instructions given on http://www.oracle.com/technetwork/developer-tools/jdev/index-095536.html to import, build and run the application....
    And now when it runs....it just open my browser window (IE 7), and shows a "loading..." image in the center of the page....nothing happens after that.
    Any idea what might be missing?
    a few major errors I see in the wls log window of jdeveloper are:
    1) <DCBindingContainer><reportException> [3952] oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.sql.SQLDataException, msg=ORA-01882: timezone region not found
    2) <DCBindingContainer><reportException> [3958] oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NullPointerException, msg=null
    3) <UIXInclude><tearDownVisitingContext> Tear down of include component context failed due to an unhandled exception.java.util.NoSuchElementException
    Please help!
    Regards,
    Hemant

  • How to make fileDownloadActionListener to open pdf file in new window

    Hi all ,
    i used the component [ fileDownloadActionListener ] to make download pdf file ,
    my question is
    How make this components to download and open file in new window ?
    Jdeveloper version 11.1.2.3

    Here is a sample http://technology.amis.nl/2011/07/28/adf-11g-show-pdf-in-a-popup/
    or http://mahmoudoracle.blogspot.de/2012/06/genius-adf-buttons.html#.UZygjrVM_Lk
    in General you can use the technique described here http://tompeez.wordpress.com/2011/12/16/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-3/ and configure hte browser to püen the doenloaded file using the configured application (pdf reader in your case).
    Timo

  • SQL not showing in Embedded OC4J Server window

    Previously, when we'd run a page through JDeveloper, the sql statements that were used to execute the query would appear in the Embedded OC4J Server window in JDeveloper. Now they no longer appear (along with a lot of other logging data that used to appear). Is there a configuration setting somewhere to make this info appear again?

    There is no such setting for OC4J log. Are you sure that you are looking at the right tab because there are generally 3 tabs on the bottom most log window which are Messages, Compiler and Embedded OC4J Server.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • (mac,jdeveloper 11g) can't create a default domain on weblogic - NEWBIE

    hello,
    I would like tu use jdeveloper so I created a generic project with the purpose of create a jsf page in it.
    but I can't deploy it on the weblogic server as I can't create a default domain; here is the log for the error :
    Log File: /Users/lolveley/.jdeveloper/system11.1.1.3.37.56.60/o.j2ee.adrs/CreateDefaultDomain.log
    Label: JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660
    Product Home: /Users/lolveley/Oracle/Middleware/jdeveloper/jdev/
    Domain: /Users/lolveley/.jdeveloper/system11.1.1.3.37.56.60/DefaultDomain
    "/Users/lolveley/Oracle/Middleware/oracle_common/common/bin/wlst.sh" "/Users/lolveley/.jdeveloper/system11.1.1.3.37.56.60/o.j2ee.adrs/CreateDefaultDomain.py"
    Process started
    wlst > CLASSPATH=/Users/lolveley/Oracle/Middleware/patch_wls1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/Users/lolveley/Oracle/Middleware/patch_jdev1111/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/tools.jar:/Users/lolveley/Oracle/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/Users/lolveley/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/Users/lolveley/Oracle/Middleware/modules/features/weblogic.server.modules_10.3.3.0.jar:/Users/lolveley/Oracle/Middleware/wlserver_10.3/server/lib/webservices.jar:/Users/lolveley/Oracle/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/Users/lolveley/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar::/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf-api.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/jrf-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.odl_11.1.1/ojdl2.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.dms_11.1.1/dms.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.dconfig-infra_11.1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.fabriccommon_11.1.1/fabric-common.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.xdk_11.1.0/xml.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-pmlib.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-policy-core.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-secpol.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-dependencies.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.policies_11.1.1/wsm-seed-policies.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.webservices_11.1.1/orawsdl.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.webservices_11.1.1/mdds.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.webservices_11.1.1/ws_confmbeans.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/org.apache.commons.digester_1.8.jar:/Users/lolveley/Oracle/Middleware/oracle_common/../modules/javax.xml.bind_2.1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/../modules/javax.activation_1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/../modules/javax.xml.stream_1.1.1.0.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.http_client_11.1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.dconfigbeans_11.1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-ca.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/adflogginghandler.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/adfsharembean.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/jsp-el-api.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/oracle-el.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/auditwlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/sslconfigwlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/oamap_help.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/ossoiap_help.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/jps-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.auditprovider_11.1.1/jps-wls-auditprovider.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-manifest.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-mbeans.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-upgrade.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-patching.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/lib/adf-share-mbeans-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/lib/mdswlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/auditwlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/jps-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/jrf-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/oamAuthnProvider.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/oamap_help.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/ossoiap.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/ossoiap_help.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/sslconfigwlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/wsm-wlst.jar
    wlst >
    wlst > PATH=/Users/lolveley/Oracle/Middleware/wlserver_10.3/server/bin:/Users/lolveley/Oracle/Middleware/modules/org.apache.ant_1.7.1/bin:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/jre/bin:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/bin:/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
    wlst >
    wlst > Your environment has been set.
    wlst >
    wlst > CLASSPATH=/Users/lolveley/Oracle/Middleware/patch_wls1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/Users/lolveley/Oracle/Middleware/patch_jdev1111/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/tools.jar:/Users/lolveley/Oracle/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/Users/lolveley/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/Users/lolveley/Oracle/Middleware/modules/features/weblogic.server.modules_10.3.3.0.jar:/Users/lolveley/Oracle/Middleware/wlserver_10.3/server/lib/webservices.jar:/Users/lolveley/Oracle/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/Users/lolveley/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar::/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf-api.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/jrf-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.odl_11.1.1/ojdl2.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.dms_11.1.1/dms.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.dconfig-infra_11.1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.fabriccommon_11.1.1/fabric-common.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.xdk_11.1.0/xml.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-pmlib.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-policy-core.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-secpol.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-dependencies.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.wsm.policies_11.1.1/wsm-seed-policies.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.webservices_11.1.1/orawsdl.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.webservices_11.1.1/mdds.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.webservices_11.1.1/ws_confmbeans.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/org.apache.commons.digester_1.8.jar:/Users/lolveley/Oracle/Middleware/oracle_common/../modules/javax.xml.bind_2.1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/../modules/javax.activation_1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/../modules/javax.xml.stream_1.1.1.0.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.http_client_11.1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.dconfigbeans_11.1.1.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-ca.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/adflogginghandler.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/adfsharembean.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/jsp-el-api.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/oracle-el.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/auditwlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/sslconfigwlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/oamap_help.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/ossoiap_help.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/jps-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.auditprovider_11.1.1/jps-wls-auditprovider.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-manifest.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-mbeans.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-upgrade.jar:/Users/lolveley/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-patching.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/lib/adf-share-mbeans-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/lib/mdswlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/auditwlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/jps-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/jrf-wlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/oamAuthnProvider.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/oamap_help.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/ossoiap.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/ossoiap_help.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/sslconfigwlst.jar:/Users/lolveley/Oracle/Middleware/oracle_common/common/wlst/resources/wsm-wlst.jar:/Users/lolveley/Oracle/Middleware/utils/config/10.3/config-launch.jar::/Users/lolveley/Oracle/Middleware/wlserver_10.3/common/derby/lib/derbynet.jar:/Users/lolveley/Oracle/Middleware/wlserver_10.3/common/derby/lib/derbyclient.jar:/Users/lolveley/Oracle/Middleware/wlserver_10.3/common/derby/lib/derbytools.jar::
    wlst >
    wlst > Initializing WebLogic Scripting Tool (WLST) ...
    wlst >
    wlst > Welcome to WebLogic Server Administration Scripting Shell
    wlst >
    wlst > Type help() for help on available commands
    wlst >
    wlst > Error: ADRS_DOMAIN_PASSWORD environment variable not set.
    wlst >
    wlst >
    wlst > Exiting WebLogic Scripting Tool.
    wlst >
    Elapsed time: 5019 ms
    could you help me please?
    olivier.

    hey jan :
    I have another issue : I would like to use in jdeveloper JSF and primefaces, which is a component library.
    but if JSF works well, I can't install primefaces : I right-click on the properties of my project, add the primefaces jar in the libraries, and add a taglib (<%@ taglib uri="http://primefaces.prime.com.tr/ui" prefix="p" %>) in my JSF page.
    but I have an arror while deploying the project.
    and (is it a clue?) there is no completion of the "<p: ..." tags;
    but there is a window in jdeveloper : http://www.imageshotel.org/images/lolveley/apturede769cran20101017a76813.png that I can't fill ; could you help me by telling me whatr to do?
    please
    olivier

  • Jdeveloper 10.1.3.4 doesn't start

    Hello,
    When I start Jdeveloper 10.1.3.4 after consuming about 42 Mb Jdeveloper stops loading.
    When I click on the splash screen the application crashes and disappears in the Taskmanager
    Jdeveloper 10.1.3.3 works fine, no problems at all.
    Is there someone who has a solution for this?
    It runs on Windows XP Sp2
    Thanks in advance.
    Jan.

    Hi Frank,
    Sorry for the late respond.
    I start jDeveloper form the command line but nothing happends.
    After enter the next line is empty and de start window of jDeveloper pops-up.
    After a while 42 Mb of memory consuming it stops.
    When I click on the start window the window disappears and the process kills in the task manager.
    Jan

Maybe you are looking for