Pop Up in Jdev 10.1.3.3

Hi all,
I have a requirement to display a pop up in oaf page
I saw sample declarative example in Developer Guide 1107973_1_OAF_Developer_Guide.
but i could not see any region of style Pop up in JDev 10.1.3.3
OAPopupBean also seems to be not there in my JDev 10.1.3.3
if it is there any such,then please say me how to show Pop up in JDev 10.1.3.3
Thanks
Manoj kumar

Which version of Oracle EBS you are using? If R12, use the latest version of JDev (compatible version with your EBS) and try using the OAF popups. Otherwise you have to go for javascript popups which is not the best option as you might not get desired behavior in some cases.
Thanks
Shree

Similar Messages

  • WSIL connection setup error in JDev

    Hi!
    I'm trying to add a WSIL connection to a SOA 11g server but, even if I enter the right credentials, when I press "test connection" a blank message window pops up and JDev hangs.
    I'm using FMW 11.1.1.2.
    Thanks in advance,
    Michael

    I resolved this problem (on Windows 7) by restarting the two management servers (soa_server and BAM server), but this time starting the CMD window AS ADMINISTRATOR. ie type CMD in the Search Programs and Files box, then hit Ctrl-Shift-Enter.
    Once the Managed Servers were restarted the WSIL connx succeeded in JDEV.

  • Parameter insight problem in Jdev 9032

    I'm probably being dumb here, but here goes. I've got a load of core classes with overloaded methods which I wrap up in a JAR and use as a library on other projects.
    Problem is when I make use of a method from the JAR in a new class, the parameter insight pops up in JDev, but only shows me the type of the parameter, not its name, e.g.:
    methodName(String, String)
    methodName(String, int, String)
    methodName(String, int, HashMap, String)
    I need to be able to see the parameter names as well. Do I need to add anything to the method defintions? I've tried putting in @param blocks, but it makes no difference.
    Any ideas?

    This is, I believe, a limitation of the way the insight item works. I'm guessing it's using the class reflection interface, which only returns the parameter types and not the names you have given them. The advantage is the method is fast, simple, and doesn't require source (the .class files don't keep the names, only the parameter types).

  • JDev 11g TP4: ADF tables and ADF form pop-ups PPR?

    I was hoping somebody could help me with the following please.
    I'm currently having a bit of an issue with ADF tables and ADF forms embedded in a pop-up, where the wrong record is shown in the popup. I suspect it's a PPR problem but am unsure. My scenario:
    1) I have the following table:
    CREATE TABLE "CHRIS_MUIR_DELETE_ME" (
    "ID" NUMBER(5,0)
    "SOME_COLUMN" VARCHAR2(20 BYTE)
    CONSTRAINT "CHRIS_MUIR_DELETE_ME_PK" PRIMARY KEY ("ID"));2) I have a default ADF BC EO/VO combination for this table.
    3) I have an ADF Faces RC page with a read-only table based on this VO:
    <af:table value="#{bindings.ChrisMuirDeleteMeView.collectionModel}" var="row"
       rows="#{bindings.ChrisMuirDeleteMeView.rangeSize}"
       emptyText="#{bindings.ChrisMuirDeleteMeView.viewable ? 'No rows yet.' : 'Access Denied.'}"
       fetchSize="#{bindings.ChrisMuirDeleteMeView.rangeSize}"
       selectedRowKeys="#{bindings.ChrisMuirDeleteMeView.collectionModel.selectedRow}"
       selectionListener="#{bindings.ChrisMuirDeleteMeView.collectionModel.makeCurrent}"
       rowSelection="single" partialTriggers="myDialog">
      <af:column sortProperty="Id" sortable="false"
        headerText="#{bindings.ChrisMuirDeleteMeView.hints.Id.label}">
         <af:outputText value="#{row.Id}">
            <af:convertNumber groupingUsed="false" pattern="#{bindings.ChrisMuirDeleteMeView.hints.Id.format}"/>
         </af:outputText>
      </af:column>
      <af:column sortProperty="SomeColumn" sortable="false"
         headerText="#{bindings.ChrisMuirDeleteMeView.hints.SomeColumn.label}">
        <af:outputText value="#{row.SomeColumn}"/>
      </af:column>
    </af:table>Note that rowSelection is set to "single".
    3) The page also includes a popup-dialog combo that shows the same data from the table (ie. they're based on the same VO) as an ADF Input Form:
    <af:popup id="myPopUp">
      <af:dialog type="okCancel" id="myDialog">
         <af:panelFormLayout>
            <af:inputText value="#{bindings.Id.inputValue}"
                label="#{bindings.Id.hints.label}"
                required="#{bindings.Id.hints.mandatory}">
               <f:validator binding="#{bindings.Id.validator}"/>
               <af:convertNumber groupingUsed="false" pattern="#{bindings.Id.format}"/>
            </af:inputText>
            <af:inputText value="#{bindings.SomeColumn.inputValue}"
                label="#{bindings.SomeColumn.hints.label}"
                required="#{bindings.SomeColumn.hints.mandatory}"/>
            </af:inputText>
         </af:panelFormLayout>
      </af:dialog>
    </af:popup>Note that the table's partialTriggers is set to the id of the dialog. This implies on return from the dialog, the table will update itself to reflect any changes.
    4) I have a data bound Create commandButton, + a simple Edit commandButton. The Edit button includes an <af:showPopupBehavior> to display the popup:
    <af:commandButton
        actionListener="#{bindings.Create.execute}" text="Create"
        disabled="#{!bindings.Create.enabled}"
        partialTriggers="table1"/>
    <af:commandButton text="Edit">
        <af:showPopupBehavior popupId="myPopUp"/>
    </af:commandButton>If you run the form with the following steps, you can reproduce my issue:
    1) Click the create button, this will create a blank record in the <af:table>
    2) Click the edit button and give the 2 fields values, press ok. Note this is reflected back in the table.
    3) Click the create button, you will now see another blank record in the <af:table>. Note that the current row selection highlight is on the new record.
    4) In the table select the original record, then the Edit button. Oddly the input form is showing the blank record, not the original record even though we selected it in the <af:table>
    This implies to me that I have to hook up a PPR event such that the fields on the popup know to update themselves when the user selects a new row in the table.
    I've tried setting the partialTriggers property for the popup, dialog and individual fields on the popup page to the table id, but this doesn't seem to work.
    Does anybody have any suggestions on how I'm meant to hook up the partialTriggers in this case? I'm at a bit of a loss to know what to do to solve this issue. Is it possible the table selectionListener isn't working?
    Thanks for your help in advance.
    Regards,
    CM.

    G'day gang
    This morning I had a chance to play with Pavle's suggestions, specifically the popup contentDelivery option, and it's solved the issue. Specifically changing the contentDelivery option to lazyUncached was the golden solution.
    As the popup component help states, the default functionality is: "lazy -- the default strategy described above. The content isn't loaded until you show the popup once, but then is cached."
    ....cached being the issue I was seeing.....
    While the lazyUncached options states: "lazyUncached -- the content isn't loaded until you show the popup, and then is re-fetched every subsequent time you show the popup. Use this strategy if the popup shows data that can become stale."
    The nasty thing about the lazy option is the fact that in the dialog it can show the previous cached result (even though you've selected a different record), and you can even appear to edit that cached result in the dialog, but when you press okay in the dialog and return to the previous table, it's updated the record you selected, not the cached result.
    Confusing, but not a bug if you understand the popup contentDelivery options.
    Frank, if you'd like it, I have the simple test case available to send you. But as it's not a bug I wont send it to you unless requested.
    Thanks to both of you for your assistance with this one. Once again your help is much appreciated! :)
    I'll take time out to blog about this in the next few weeks to assist others.
    Thanks & regards,
    CM.

  • Problem with BIBeans sample application in JDEV

    I have installed JDeveloper and BiBeans PlugIn. I did the steps from the tutorial and it all worked fine.
    Then I generated a sample UIX application with all the options - and while the navigation loading and saving from the Catalog and everything works, the data that is displayed in the presentations is the same everytime (6 rows and 8 columns with values btwn 0 and 100) and I don't think it is coming from the BIBDEMO schema.
    So I think it is able to connect to the BIBCAT schema but it does not connect to the BIBDEMO schema
    However in JDeveloper itself all the presentations display the correct data.
    There is no error message or anything indicating what the problem is.
    Please help - I'm doing a POC and would need to show some results asap.
    I included a Trace, maybe that helps:
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: Jdbc driver type is: thin
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: Host name is: dcaclust2
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: SID is: DEV3
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: Port number is: 1521
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: Jdbc driver type is: thin
    oracle.dss.datautil.client.XMLManagerFactory::parseMetadataManager: parsing MetadataManager tag
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnections: parsing OLAPConnection tag
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPDatabases: parsing Database tag
    oracle.dss.connection.client.Connection::connect: -ConnectionBean-Client: is going to connect
    oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-Server: is going to connect - (DriverType=MDM)
    oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-MDMDriver: Connected Successfully: Time=1063ms
    oracle.dss.connection.client.Connection::connect: -ConnectionBean-Client: is going to connect
    oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-Server: is going to connect - (DriverType=PERSISTENCE)
    oracle.dss.connection.server.drivers.persistence.PersistenceConnectionDriverImpl::connect: -ConnectionBean-PersistenceDriver is going to connect
    oracle.dss.connection.server.drivers.persistence.PersistenceConnectionDriverImpl::connect: (ServiceName=null; Prinicipal=BIBCAT; Username=null)
    oracle.dss.persistence.storagemanager.bi.BIStorageManagerImpl::init: [Initializing oracle.dss.persistence.storagemanager.bi.BIStorageManagerImpl, env:{SET_ON_MID_TIER=NO, port=1521, java.naming.security.principal=BIBCAT, hostname=dcaclust2, am=oracle.dss.appmodule.server.DSSApplicationModuleImpl@20c906, jdbctype=thin, java.naming.factory.initial=oracle.dss.persistence.persistencemanager.server.InitPersistenceManagerFactory, Connection Status=2, object_name=Connection_1, drivertype=thin, Driver Type=PERSISTENCE, securityDriverManager=oracle.dss.appmodule.server.DSSApplicationModuleImpl@20c906, dad=oracle.dss.security.DAD@6db33c, sid=DEV3, mm=true, global_environment={locale_helper=oracle.dss.persistence.LocaleHelper@1263db, persistence_errorhandler=oracle.dss.util.DefaultErrorHandler@59e6e8}}
    oracle.dss.persistence.storagemanager.bi.mapping.JdbcAdapter::JdbcAdapter.init(): Detected PLSQL version 2.7.0.13.1 and Java version Not known
    oracle.dss.persistence.storagemanager.bi.BIStorageManagerImpl::init: [init]2047ms
    oracle.dss.persistence.persistencemanager.server.PersistenceManagerImpl::init: SM: Loaded storagemanager, class= oracle.dss.persistence.storagemanager.bi.BIStorageManagerImpl
    oracle.dss.connection.server.drivers.persistence.PersistenceConnectionDriverImpl::connect: -ConnectionBean-PersistenceDriver: Connected Successfully: Time=2.0 seconds
    oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-MDMDriver: Connected Successfully: Time=2781ms

    Not sure quick what you are seeing in your UIX application, I think it is the default crosstab when the data source fails. However, I would expect to see some error messages from in the JDev log window or the UIX page itself.
    Are you running the application directly from JDeveloper? Or have you deployed the application to a middle-tier server?
    Check the BIDesigner 'Run Time' Settings. Make sure the 'Use Design Time Setting' is not checked. Ensure the correct connection details are set for both the database and CATALOG and the catalog connection user is set as BIBCAT.
    Make sure all your presentations, calculations and saved selections have been copied to the remote catalog. This can be done using the right mouse click pop-up menu on the BIDesigner.
    Test running the application with the new run time settings from JDeveloper before deploying the application. Then follow the instructions in the JDeveloper Help on deploying UIX applications.
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • ShowPopupBehavior: pop-up does not stay open

    I'm using an <af:showPopupBehavior> component with the triggerType set to "focus" inside an <af:inputText> to display a stylized tooltip.
    It works fine when I use the mouse to give the text field focus, but when I tab into the text field the pop-up briefly appears and then disappears again.
    Any ideas?
    Thanks.

    Hi Rune,
    I just tested this with JDev 11.1.1.1.0 and firefox 3.5 and it works with tab key the same way as with mouse click:
            <af:inputText label="Label 2" id="it2"/>
            <af:inputText label="Label 1" id="it1">
              <af:showPopupBehavior triggerType="focus" popupId="p1"/>
            </af:inputText>
            <af:popup id="p1">
              <af:outputText value="outputText1" id="ot1"/>
            </af:popup>regards,
    Branislav

  • How to open a pop up in a newly opened window

    Hi,
    I have a requirement where, upon a button click in Main.jsff page I am opening a PDF file in a new window in the same browser. As soon as the PDF file is opened in the new window I need to display a popup which has to come on top of the PDF window and blur the PDF file window.
    Currently I am using the below javaScript for doing this.
    FacesContext ctx = FacesContext.getCurrentInstance();
    ExtendedRenderKitService erks = org.apache.myfaces.trinidad.util.Service.getRenderKitService(ctx, ExtendedRenderKitService.class);;
    String script = "window.open('" + urlString + "', '', 'location=0, status=0, resizable=1, scrollbars=1');";
    erks.addScript(ctx, script);
    String toSetFocus = "window.focus()";
    erks.addScript(ctx, toSetFocus);
    getP2().show(hints);But the pop up is not opening on the pdf window. Its opening on the Main.jsff window. Can anyone let me know the right way to implement this ?
    I am using jdev version 11.1.2.0.0
    Thanks in advance,
    Kavitha

    this is the javascript i used to do this
    function showDoc(URL, aWinName, title) {
         var wOpen;
         var sOptions;
         var popupWindowWidth = 725;
         var popupWindowheight = 480;
         sOptions = 'status=no,menubar=no,scrollbars=yes,toolbar=no';
         sOptions = sOptions + ',width=' + (popupWindowWidth).toString();
         sOptions = sOptions + ',height=' + (popupWindowheight).toString();
         sOptions = sOptions + ',screenX=0,screenY=0,left=0,top=0';     
         globalHTML = "<html><head><title>"+title+"</title><meta charset=\"utf-8\"></head>"
                   + "<frameset rows='100%,*'><frame src='" + URL + "'></frame>"
                   + "</frameset></html>";
         wOpen = window.open("javascript:opener.globalHTML", aWinName, sOptions);     
         wOpen.focus();
         wOpen.moveTo((screen.availWidth - popupWindowWidth) / 2,
                   (screen.availHeight - popupWindowheight) / 2);     
         return wOpen;
    }

  • Exception While Opening a Pop Up From Pivot Table

    Hi,
    I actually created a pivot table which has the cell data filled with images. I would like to have these images to function as 'CommangImageLink' and onclick of the image ... should open a popup to display the details about that intersection.
    For ex : I have Products Vs State as Row & Column Header. For each intersection of Product Vs State .... depends upon the availability of the inventory should render an image. And on click of the image .. should display the details of the inventory for that intersection in a pop up.
    Does any one of you have any idea about this.
    FYI ... here is the piece of code which im using. When use this code ... getting the below mentioned exception.
    <dvt:pivotTable id="pt1" var="cellData" varStatus="cellStatus"
                          inlineStyle="width:800px;height:350px"
                          value="#{bindings.MecOverviewJobsVO.pivotTableModel}"
                          binding="#{backingBeanScope.backing_jsff_mecStatusview.pt1}"
                          sizing="auto" pivotLabelVisible="false">
            <dvt:dataCell>
              <!--af:activeImage source="#{cellData.dataValue == 0 ? '/images/green.jpg;':(cellData.dataValue == 1? '/images/yellow.jpg;':(cellData.dataValue == 2?'/images/red.jpg;':(cellData.dataValue == 3?'/images/blue.jpg;':'/images/white.JPG;')))}"
                              binding="#{backingBeanScope.backing_jsff_mecStatusview.ai1}"
                              id="ai1"/-->
                              <af:commandImageLink id="cil1" icon="#{cellData.dataValue == 0 ? '/images/green.jpg;':(cellData.dataValue == 1? '/images/yellow.jpg;':(cellData.dataValue == 2?'/images/red.jpg;':(cellData.dataValue == 3?'/images/blue.jpg;':'/images/white.JPG;')))}"
                                                   actionListener="#{backingBeanScope.backing_jsff_mecStatusview.imageClicked}"/>
              <af:popup id="showDetailsPopUp"
                        binding="#{backingBeanScope.backing_jsff_mecStatusview.showDetailsPopUp}">
                    <af:dialog id="d1" title="Hi..."/>
              </af:popup>
            </dvt:dataCell>
          </dvt:pivotTable>EXCEPTION ..........
    DCUtil> <findSpelObject> [7517] DCUtil, returning:oracle.adfinternal.view.faces.dvt.model.binding.pivotTable.FacesPivotTableBinding, for MecOverviewJobsVO
    <UIXRegion> <_warn> Error processing viewId: /mecui-flow/mecStatusview URI: /jsff/mecStatusview.jsff actual-URI: /jsff/mecStatusview.jsff.
    oracle.dss.util.transform.TransformRuntimeException: DVT-2015 Slice -1 exceeds boundary 9.
    oracle.dss.util.SliceOutOfRangeException: DVT-2015 Slice -1 exceeds boundary 9.
         at oracle.dss.util.transform.CubicDataAccess.getValue(CubicDataAccess.java:908)
         at oracle.dss.util.transform.CubicDataAccess.getValue(CubicDataAccess.java:1448)
         at oracle.adf.view.faces.bi.component.pivotTable.UIPivotTable.getCurrentCellContext(UIPivotTable.java:1202)
         at oracle.adf.view.faces.bi.component.pivotTable.UIPivotTable.getStamps(UIPivotTable.java:1113)
         at oracle.adf.view.faces.bi.component.pivotTable.UIGrid._restoreStampState(UIGrid.java:1362)
         at oracle.adf.view.faces.bi.component.pivotTable.UIGrid.postCellDataChange(UIGrid.java:830)
         at oracle.adf.view.faces.bi.component.pivotTable.UIPivotTable.postCellDataChange(UIPivotTable.java:1315)
         at oracle.adf.view.faces.bi.component.pivotTable.UIGrid.setCellKey(UIGrid.java:506)
    <DCIteratorBinding> <releaseDataInternal> [7527] Releasing iterator binding:MecOverviewJobsVOIterator
    <RegistrationConfigurator> <handleError> ADF_FACES-60096:Server Exception during PPR, #1
    oracle.dss.util.transform.TransformRuntimeException: DVT-2015 Slice -1 exceeds boundary 9.
    oracle.dss.util.SliceOutOfRangeException: DVT-2015 Slice -1 exceeds boundary 9.
         at oracle.dss.util.transform.CubicDataAccess.getValue(CubicDataAccess.java:908)
         at oracle.dss.util.transform.CubicDataAccess.getValue(CubicDataAccess.java:1448)
         at oracle.adf.view.faces.bi.component.pivotTable.UIPivotTable.getCurrentCellContext(UIPivotTable.java:1202)
         at oracle.adf.view.faces.bi.component.pivotTable.UIPivotTable.getStamps(UIPivotTable.java:1113)
         at oracle.adf.view.faces.bi.component.pivotTable.UIGrid._restoreStampState(UIGrid.java:1362)
         at oracle.adf.view.faces.bi.component.pivotTable.UIGrid.postCellDataChange(UIGrid.java:830)
         at oracle.adf.view.faces.bi.component.pivotTable.UIPivotTable.postCellDataChange(UIPivotTable.java:1315)
         Thanks & Regards,
    Kiran Konjeti

    Hi Frank,
    Thank you very much for your reply.
    Yes. The active image code was commented and we are not using it.
    And i tried with placing the pop up outside of pivot table but still getting the same issue.
    JDev Version : Build JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:dvt="http://xmlns.oracle.com/dss/adf/faces">
      <af:panelStretchLayout binding="#{backingBeanScope.backing_jsff_mecStatusview.psl1}"
                             id="psl1" bottomHeight="87px" startWidth="30px"
                             endWidth="30px">
        <f:facet name="center">
          <dvt:pivotTable id="pt1" var="cellData" varStatus="cellStatus"
                          inlineStyle="width:800px;height:350px"
                          value="#{bindings.MecOverviewJobsVO.pivotTableModel}"
                          binding="#{backingBeanScope.backing_jsff_mecStatusview.pt1}"
                          sizing="auto" pivotLabelVisible="false">
            <dvt:dataCell>
              <af:commandImageLink id="cil2" icon="/images/green.jpg" iconPosition="leading" rendered="#{cellData.dataValue == 0}" actionListener="#{backingBeanScope.backing_jsff_mecStatusview.imageClicked}"/>        
            </dvt:dataCell>
          </dvt:pivotTable>
        </f:facet>
        <f:facet name="bottom">
          <af:panelGroupLayout binding="#{backingBeanScope.backing_jsff_mecStatusview.pgl1}"
                               id="pgl1">
             <af:popup id="showDetailsPopUp"
                        binding="#{backingBeanScope.backing_jsff_mecStatusview.showDetailsPopUp}">
                    <af:dialog id="d1" title="Hi..."/>
              </af:popup>
         </af:panelGroupLayout >
       </f:facet >
      </af:panelStretchLayout>
    </jsp:root>Please let me know your comments.
    Thanks & Regards,
    Kiran Konjeti

  • How to stop loading of pop up in ADF

    Hi,
    I am using Jdev Studio Edition Version 11.1.1.7.0. I disabled a command menu button in jspx page which will trigger a popup. In the pop up I am calling some methods. The methods are being called even though the button is disable. I need to stop that popup method calls. Can anybody help me to resolve this issue.

    Hi,
    Have a condition like buttonbind.isDisabled() if it returns false executes your popup / render your popup.
    Thanks

  • Displaying pdf report in pop page by command button.

    Hi
    I am jdev 10.1.3.3 .I am displaying an pdf report on click of command button like this.
    FacesContext.getCurrentInstance().getExternalContext().redirect("http://www.acme.com/someCustomPath/myFantasticReport.pdf");
    But problem is this.It is displaying on same window.I want to display it in new window or pop window..Probelm is that i am redirecting the page.
    Is there any other way to display in new window.Please help
    any help would be helpful

    Hi,
    check this: http://thepeninsulasedge.com/frank_nimphius/2007/09/11/adf-faces-showing-reports/
    Frank

  • Http proxy authentication for JDev 10.1.3

    Hi,
    I found the http proxy settings in the "tools->preferences->Web Browser and Proxy" but there are no settings for the username and password. Is there some other way that I can add these.
    The problem is that whenver JDeveloper wants to do some http stuff it (or something else is doing it) asks me for the proxy user name & password - this happens over and over again. If JDev is doing this then surely it should remember the username & password.
    I sometimes get a JDeveloper dialog "waiting for the connection" come up over the proxy auth dialog and I have to cancel the function so I can authenticate, then re-request the function.
    I wish I didn't have the proxy authentication but I have no choice in this dev environment. I do get to choose JDeveloper at least.
    Regards,
    Simon.

    Hi,
    I get it when I 'check for updates' and I get it again when I 'go to JavaDoc' - and this is the one where the "waiting for connection dialog" pops on top of the proxy log in and I have to cancel it to log in. Then all subsequent 'go to JavaDoc' requests go straight through.
    I would prefer it if I could just configure (in proxy preferences) the username and password so it never asks me. I dont care if it less secure storing the password since I think authenticating proxies are a dumb idea anyway. If the password is not supplied then JDev can ask for it like it does now to keep the security-paranoid people happy.
    Also, this morning I got this Exception which appeared at the same time I got a proxy auth window. When JDev finally started all my previously open windows were lost. No real problem but unexpected. Here is the stack dump:
    java.lang.NullPointerException
         at oracle.jdevimpl.webdav.api.DAVAuthenticator.getPasswordAuthentication(DAVAuthenticator.java:79)
         at java.net.Authenticator.requestPasswordAuthentication(Authenticator.java:300)
         at sun.net.www.protocol.http.HttpURLConnection$1.run(HttpURLConnection.java:267)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.net.www.protocol.http.HttpURLConnection.privilegedRequestPasswordAuthentication(HttpURLConnection.java:263)
         at sun.net.www.protocol.http.HttpURLConnection.getHttpProxyAuthentication(HttpURLConnection.java:1427)
         at sun.net.www.protocol.http.HttpURLConnection.resetProxyAuthentication(HttpURLConnection.java:1246)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:950)
         at oracle.ide.net.HttpURLFileSystemHelper.exists(HttpURLFileSystemHelper.java:191)
         at oracle.jdevimpl.webdav.net.WebDAVURLFileSystemHelper.exists(WebDAVURLFileSystemHelper.java:423)
         at oracle.ide.net.URLFileSystem.exists(URLFileSystem.java:498)
         at oracle.ideimpl.editor.EditorUtil.getNode(EditorUtil.java:126)
         at oracle.ideimpl.editor.EditorUtil.loadContext(EditorUtil.java:91)
         at oracle.ideimpl.editor.TabGroupState.loadStateInfo(TabGroupState.java:950)
         at oracle.ideimpl.editor.TabGroup.loadLayout(TabGroup.java:1758)
         at oracle.ideimpl.editor.TabGroupXMLLayoutPersistence.loadComponent(TabGroupXMLLayoutPersistence.java:31)
         at oracle.ideimpl.controls.dockLayout.DockLayoutInfoLeaf.loadLayout(DockLayoutInfoLeaf.java:123)
         at oracle.ideimpl.controls.dockLayout.AbstractDockLayoutInfoNode.loadLayout(AbstractDockLayoutInfoNode.java:631)
         at oracle.ideimpl.controls.dockLayout.AbstractDockLayoutInfoNode.loadLayout(AbstractDockLayoutInfoNode.java:628)
         at oracle.ideimpl.controls.dockLayout.AbstractDockLayoutInfoNode.loadLayout(AbstractDockLayoutInfoNode.java:614)
         at oracle.ideimpl.controls.dockLayout.DockLayout.loadLayout(DockLayout.java:302)
         at oracle.ideimpl.controls.dockLayout.DockLayoutPanel.loadLayout(DockLayoutPanel.java:128)
         at oracle.ideimpl.editor.Desktop.loadLayout(Desktop.java:353)
         at oracle.ideimpl.editor.EditorManagerImpl.init(EditorManagerImpl.java:1824)
         at oracle.ide.layout.Layouts.activate(Layouts.java:758)
         at oracle.ide.layout.Layouts.activateLayout(Layouts.java:179)
         at oracle.ideimpl.MainWindowImpl$2.runImpl(MainWindowImpl.java:734)
         at oracle.javatools.util.SwingClosure$1Closure.run(SwingClosure.java:50)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:199)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

  • Upload  and download file in jdev adf

    hi,
    i'm still looking for upload and downlaod files in jdev adf
    any idea sir
    TQ

    Hi spnolin,
    Can u tell me how to download a file from server, so that the client can get the file. such as click on the link or button, and the pop up windows (save as) appear?
    Please tell me in details. if possible provide the example code as well and some explanations.
    Thx in advance
    FELIX

  • JDev 10.1.3 not responding upon start up.

    Hi,
    I've been using the new JDev 10.1.3 since it was released and I've enjoyed doing so except for one serious problem:
    Eventually, when I try to open JDeveloper it'll load, display the state I left it in when I last closed it, display "Building class list for project "<my project>"." in the status bar, and then stop responding.
    The only way I can resolve this is by reinstalling JDev 10.1.3. and lose all my settings. :(
    This time, I had 5 java class files open, and the CVS Pending Changes tab.
    Other things I have open are the Applications Navigator, Structure Pane, and Run Manager Pane. Hope this helps...
    -Chris

    Geoffrey,
    I reproduced the bug by closing JDev with the Pending Changes dockable open and restarting jdev using the jdev.exe in jdev/bin as you requested.
    I didn't see any "Found one Java-level deadlock:" but I'm pasting what I did see below.
    Here's a theory, though: Apparently I'm using a version of CVS that JDeveloper has known issues with, because whenever I first try to use CVS in JDev I get the following dialog window (pop-up):
    "Warning: JDeveloper has known issues with your CVS version on the Windows platform. For better compatibility download and configure CVSNT or elect to use the internal client in CVS preferences."
    Normally I just click OK and I'm still able to use CVS in JDev (sans browsing the CVS tree and viewing incoming changes, which I guess is what isn't supported). What I think is happening is that the dialog window (pop-up) is trying to display (or is displayed but I can't see it) and is waiting for me to click OK (which I can't); hence the lock-up.
    Hopefully that made sense. Thoughts? We can go into why I'm not using CVSNT or the internal CVS later...
    Full thread dump Java HotSpot(TM) Client VM (1.4.2_04-b05 mixed mode):
    "Pending Changes: Finding candidate files..." prio=7 tid=0x057fcc50 nid=0xa20 wa
    iting on condition [697f000..697fd8c]
    at java.lang.Thread.sleep(Native Method)
    at oracle.jdeveloper.vcs.changelist.ChangeListWindow$ChangeListProgressT
    ask.run(ChangeListWindow.java:1001)
    at java.lang.Thread.run(Thread.java:534)
    "Thread-6" daemon prio=7 tid=0x057fb350 nid=0x460 in Object.wait() [687f000..687
    fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x13000b80> (a java.awt.EventQueue$1AWTInvocationLock)
    at java.lang.Object.wait(Object.java:429)
    at java.awt.EventQueue.invokeAndWait(EventQueue.java:829)
    - locked <0x13000b80> (a java.awt.EventQueue$1AWTInvocationLock)
    at oracle.javatools.dialogs.BaseMessageDialog.doInvoke(BaseMessageDialog
    .java:410)
    at oracle.javatools.dialogs.BaseMessageDialog.runDialog(BaseMessageDialo
    g.java:390)
    at oracle.javatools.dialogs.MessageDialog.runDialog(MessageDialog.java:2
    06)
    at oracle.javatools.dialogs.MessageDialog.runDialog(MessageDialog.java:2
    12)
    at oracle.javatools.dialogs.MessageDialog.information(MessageDialog.java
    :542)
    at oracle.jdevimpl.vcs.cvs.CVSClient$7.run(CVSClient.java:823)
    at oracle.jdeveloper.vcs.util.VCSIdeEventRecorder.invokeAfterMainWindowO
    pened(VCSIdeEventRecorder.java:96)
    at oracle.jdevimpl.vcs.cvs.CVSClient.checkForClientNonCVSNTOnWindows(CVS
    Client.java:819)
    at oracle.jdevimpl.vcs.cvs.CVSClient.verifyClientState(CVSClient.java:76
    3)
    - locked <0x12cf5e60> (a oracle.jdevimpl.vcs.cvs.CVSClient)
    at oracle.jdevimpl.vcs.cvs.CVSFileURLFileSystemHelper.checkForCVS(CVSFil
    eURLFileSystemHelper.java:430)
    at oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$UpdateStatusTask.run(CVSC
    hangeListWindow.java:1460)
    at java.util.TimerThread.mainLoop(Timer.java:432)
    at java.util.TimerThread.run(Timer.java:382)
    "AuditExecutor-1" daemon prio=7 tid=0x057f3cb0 nid=0x1534 in Object.wait() [677f
    000..677fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12fab130> (a oracle.javatools.util.SynchronizedQueue)
    at java.lang.Object.wait(Object.java:429)
    at oracle.javatools.util.SynchronizedQueue.remove(SynchronizedQueue.java
    :61)
    - locked <0x12fab130> (a oracle.javatools.util.SynchronizedQueue)
    at oracle.jdevimpl.audit.util.SwingExecutor.run(SwingExecutor.java:467)
    at java.lang.Thread.run(Thread.java:534)
    "ShellIntegration" prio=5 tid=0x057ee610 nid=0x6b4 runnable [5b5f000..5b5fd8c]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
    - locked <0x12fa7138> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(ServerSocket.java:448)
    at java.net.ServerSocket.accept(ServerSocket.java:419)
    at oracle.ideimpl.shell.ShellIntegration$DaemonThread.run(ShellIntegrati
    on.java:189)
    "Version Control Changelist Updater" prio=2 tid=0x057b9da0 nid=0x1d4 waiting for
    monitor entry [605f000..605fd8c]
    at oracle.jdevimpl.vcs.cvs.CVSClient.isClientAvailable(CVSClient.java:72
    0)
    - waiting to lock <0x12cf5e60> (a oracle.jdevimpl.vcs.cvs.CVSClient)
    at oracle.jdevimpl.vcs.cvs.CVSStatusCache._getImpl(CVSStatusCache.java:5
    2)
    at oracle.jdevimpl.vcs.cvs.CVSStatusCache.getImpl(CVSStatusCache.java:38
    at oracle.jdeveloper.vcs.spi.VCSStatusCache.getValuesImpl(VCSStatusCache
    .java:30)
    at oracle.jdeveloper.vcs.spi.VCSURLBasedCache.getValuesImpl(VCSURLBasedC
    ache.java:135)
    at oracle.jdeveloper.vcs.changelist.MultiChangeListLocalStatusCache.getV
    aluesImpl(MultiChangeListLocalStatusCache.java:59)
    at oracle.jdeveloper.vcs.spi.VCSURLBasedCache.getValues(VCSURLBasedCache
    .java:70)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.filterByStatus(
    ChangeListEventQueue.java:455)
    at oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$CustomChangeListEventQueu
    e.filterByStatus(CVSChangeListWindow.java:1226)
    at oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$CandidatesChangeListEvent
    Queue.filterByStatus(CVSChangeListWindow.java:1366)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processRequeryE
    vent(ChangeListEventQueue.java:227)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvent(Ch
    angeListEventQueue.java:182)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvents(C
    hangeListEventQueue.java:550)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.eventLoop(Chang
    eListEventQueue.java:621)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.access$1000171(
    ChangeListEventQueue.java:48)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue$7.run(ChangeLis
    tEventQueue.java:487)
    at java.lang.Thread.run(Thread.java:534)
    "Version Control Changelist Updater" prio=2 tid=0x057b8980 nid=0xabc in Object.w
    ait() [5f5f000..5f5fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12eafba0> (a oracle.jdevimpl.vcs.cvs.CVSChangeListWindow
    $IncomingChangeListEventQueue)
    at java.lang.Object.wait(Object.java:429)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.awaitEvents(Cha
    ngeListEventQueue.java:599)
    - locked <0x12eafba0> (a oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$Inc
    omingChangeListEventQueue)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.eventLoop(Chang
    eListEventQueue.java:610)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.access$1000171(
    ChangeListEventQueue.java:48)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue$7.run(ChangeLis
    tEventQueue.java:487)
    at java.lang.Thread.run(Thread.java:534)
    "Version Control Changelist Updater" prio=2 tid=0x057b8e90 nid=0x17c0 waiting fo
    r monitor entry [5e5f000..5e5fd8c]
    at oracle.jdevimpl.vcs.cvs.CVSClient.isClientAvailable(CVSClient.java:72
    0)
    - waiting to lock <0x12cf5e60> (a oracle.jdevimpl.vcs.cvs.CVSClient)
    at oracle.jdevimpl.vcs.cvs.CVSStatusCache._getImpl(CVSStatusCache.java:5
    2)
    at oracle.jdevimpl.vcs.cvs.CVSStatusCache.getImpl(CVSStatusCache.java:38
    at oracle.jdeveloper.vcs.spi.VCSStatusCache.getValuesImpl(VCSStatusCache
    .java:30)
    at oracle.jdeveloper.vcs.spi.VCSURLBasedCache.getValuesImpl(VCSURLBasedC
    ache.java:135)
    at oracle.jdeveloper.vcs.changelist.MultiChangeListLocalStatusCache.getV
    aluesImpl(MultiChangeListLocalStatusCache.java:59)
    at oracle.jdeveloper.vcs.spi.VCSURLBasedCache.getValues(VCSURLBasedCache
    .java:70)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.filterByStatus(
    ChangeListEventQueue.java:455)
    at oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$CustomChangeListEventQueu
    e.filterByStatus(CVSChangeListWindow.java:1226)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processRequeryE
    vent(ChangeListEventQueue.java:227)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvent(Ch
    angeListEventQueue.java:182)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvents(C
    hangeListEventQueue.java:550)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.eventLoop(Chang
    eListEventQueue.java:621)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.access$1000171(
    ChangeListEventQueue.java:48)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue$7.run(ChangeLis
    tEventQueue.java:487)
    at java.lang.Thread.run(Thread.java:534)
    "WaitCursorTimer" daemon prio=5 tid=0x057b5d00 nid=0x1130 in Object.wait() [5d5f
    000..5d5fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12e9c5b0> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:429)
    at java.util.TimerThread.mainLoop(Timer.java:403)
    - locked <0x12e9c5b0> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:382)
    "Native Directory Watcher" prio=2 tid=0x057a1320 nid=0x125c runnable [5c5f000..5
    c5fd8c]
    at oracle.ide.natives.NativeHandler.enterWatcherThread(Native Method)
    at oracle.ide.natives.NativeHandler$2.run(NativeHandler.java:263)
    at java.lang.Thread.run(Thread.java:534)
    "IconOverlayTracker Timer" prio=5 tid=0x05795430 nid=0x958 in Object.wait() [595
    f000..595fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12dc4968> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:429)
    at java.util.TimerThread.mainLoop(Timer.java:403)
    - locked <0x12dc4968> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:382)
    "TimerQueue" daemon prio=5 tid=0x008a2150 nid=0xd88 in Object.wait() [49ef000..4
    9efd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12922ab0> (a javax.swing.TimerQueue)
    at javax.swing.TimerQueue.run(TimerQueue.java:231)
    - locked <0x12922ab0> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:534)
    "AWT-EventQueue-0" prio=7 tid=0x008662b0 nid=0x1514 waiting for monitor entry [4
    4df000..44dfd8c]
    at oracle.jdevimpl.vcs.cvs.CVSClient.isClientAvailable(CVSClient.java:72
    0)
    - waiting to lock <0x12cf5e60> (a oracle.jdevimpl.vcs.cvs.CVSClient)
    at oracle.jdevimpl.vcs.cvs.CVSController.updateImpl(CVSController.java:6
    5)
    at oracle.jdeveloper.vcs.spi.VCSController.update(VCSController.java:84)
    at oracle.jdevimpl.vcs.cvs.CVSController.update(CVSController.java:43)
    at oracle.ide.IdeAction.updateAction(IdeAction.java:699)
    at oracle.ide.IdeAction.updateAction(IdeAction.java:688)
    at oracle.ide.addin.AbstractView.updateToolbarActions(AbstractView.java:
    154)
    at oracle.jdeveloper.vcs.changelist.ChangeListWindow$PropertyListener.pr
    opertyChange(ChangeListWindow.java:830)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Swing
    PropertyChangeSupport.java:264)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Swing
    PropertyChangeSupport.java:232)
    at javax.swing.JComponent.firePropertyChange(JComponent.java:3954)
    at oracle.jdeveloper.vcs.changelist.ChangeList.setBusy(ChangeList.java:6
    51)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue$1.run(ChangeLis
    tEventQueue.java:173)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    "Java2D Disposer" daemon prio=10 tid=0x008637a0 nid=0x1050 in Object.wait() [43d
    f000..43dfd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x127cf2d0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
    - locked <0x127cf2d0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
    at sun.java2d.Disposer.run(Disposer.java:100)
    at java.lang.Thread.run(Thread.java:534)
    "AWT-Windows" daemon prio=7 tid=0x00858b10 nid=0xa48 runnable [3d9f000..3d9fd8c]
    at sun.awt.windows.WToolkit.eventLoop(Native Method)
    at sun.awt.windows.WToolkit.run(WToolkit.java:262)
    at java.lang.Thread.run(Thread.java:534)
    "AWT-Shutdown" prio=5 tid=0x00858ea0 nid=0x14a0 in Object.wait() [3c9f000..3c9fd
    8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x1279c908> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:429)
    at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
    - locked <0x1279c908> (a java.lang.Object)
    at java.lang.Thread.run(Thread.java:534)
    "Signal Dispatcher" daemon prio=10 tid=0x00841d20 nid=0xa08 waiting on condition
    [0..0]
    "Finalizer" daemon prio=9 tid=0x0083b060 nid=0x1020 in Object.wait() [348f000..3
    48fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12781a48> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
    - locked <0x12781a48> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x0083bd20 nid=0x41c in Object.wait() [33
    8f000..338fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12781ab0> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Object.java:429)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115)
    - locked <0x12781ab0> (a java.lang.ref.Reference$Lock)
    "main" prio=5 tid=0x008339e0 nid=0x12f4 waiting on condition [0..12f418]
    "VM Thread" prio=5 tid=0x008390b0 nid=0x808 runnable
    "VM Periodic Task Thread" prio=10 tid=0x008433d0 nid=0x968 waiting on condition
    "Suspend Checker Thread" prio=10 tid=0x00840880 nid=0x98c runnable

  • Install Issue with JDev 10.1.2

    JDev appeared to install correctly but when I launch the jdev.exe it get a pop up that says "Java Virtual Machine Launcher: could not find main class" - the app then opens but I can't seem to add any java source files to a project and I get a java.lang.NullPointerException at oracle.jdeveloper.model.JProjectConfiguration.getJdkClassPath
    Anyone have a clue? I did very the settings in the jdev.conf file to be accurately pointing the install location for my jdk.

    Yes, do not install it to the Desktop, because the path contains spaces, in 'Documents and Settings' part. ... I spent whole Saturday to solve that problem. If this product is so great then why does it treat the user this way? -- Thanks for who provided help. - Priit

  • Issue with running pages through jDev, wls starts but no target url is provided.

    Hi all,
    I recently downloaded an older version of jDev for a new assignment - Studio Edition Version 11.1.1.6.0 - Build JDEVADF_11.1.1.6.0CLOUD_GENERIC_121118.1600.6229.
    I created a basic wls domain and I've tried running simple jspx pages, at which point a weblogic appears to have started without issue. However, my page never runs and no target domain is provided. Below is how my log appears and it just seems to hang. I'm my experience a window always popped up in my default browser with the domain and it is also shown in the log. Going to my expected default domain (http://127.0.0.1:7101/Home.jspx for example) results in a 404. I sure its something stupid, but I'm not sure how to address this issue. Any advice would be appreciated.
    *** Using port 7101 ***
    <Jul 7, 2013 5:01:48 PM EDT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Jul 7, 2013 5:01:52 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Jul 7, 2013 5:01:52 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\dslack\AppData\Roaming\JDeveloper\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\dslack\AppData\Roaming\JDeveloper\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00017. Log messages will continue to be logged in C:\Users\dslack\AppData\Roaming\JDeveloper\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Jul 7, 2013 5:02:19 PM EDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    Regards - Dylan

    Hi dslack,
    Please delete the default domain from the following path. Close Jdev before deleting and restart , it will create a new domain.
    C:\Users\dslack\AppData\Roaming\JDeveloper\system11.1.1.6.38.62.29\DefaultDomain
    Thanks
    Sandeep

Maybe you are looking for

  • How to get a DDE advise link working on a DDE server with more than one topic on the same service, and with an equal item name?

    When I create a DDE server with serveral topics, all on the same service and with the same item name (different topic), it appears that an advise link does not function properly. It doesn't work at all, it update only when the advise link is terminat

  • "stopped (error = -34) " when downloading tv show

    I've bought every season of grey's anatomy on itunes so I can watch it on my computer. For some reason there are three specific episodes from season two that won't download. Each time I try a window comes up saying "there was a problem downloading "n

  • Execution Time & Explain Plan Variations

    I have a scenario here. I have 2 schemas; schema1 & schema2. I executed a lengthy SELECT statement of 5 TABLE JOIN in these 2 schemas. I am getting totally different execution time (one runs at 0.3 seconds & the other at 4 seconds) and a different Ex

  • MSync numeric overflow

    One of our clients is using Ora 9i Lite. It has worked perfectly well so far but they are now unable to MSync due to a numeric overflow error that occurred at the start of the Receiving phase. We suspected some rogue value exceeding the permitted ran

  • Add drop shadow with css?

    is there a way to add a dropshadow with css? (specifically to a label component) Thanks!