Flex datagrid not populating anymore

Original CF server version:
7,0,1
Flash version:
9
After installing ColdFusion MX 7 Updater 2, I am unable to
populate a SWF datagrid that was compiled from Flex 1.5.
We call a ColdFusion CFC by passing in 4 arguments to the
cffunction. The function then returns a struct that looks like:
myStruct[n]["something"].
On a ColdFusion MX server that is running version 7,0,0 AND
7,0,1 the flash debugger tells me that the CFC is returning an
Array (when in actuality, it's a Struct) and the datagrid works
great. However, after installing Updater 2, without making any code
changes, the flash debugger tells me that the CFC is returning an
Object of objects (i.e., the new untyped object) and so the
datagrid is never populated (but data IS being passed back).
I did find a solution that required a code change to both the
compiled Flex SWF and the CFC via the following website:
http://www.cflex.net/showFileDetails.cfm?ObjectID=303&Object=File&ChannelID=1
I work with 2 other developers who actually wrote all of the
code and they are against the idea of having to change our code in
both areas because we have over 20 client's that each have their
own compiled SWF. It would take WAY too long to have to recode and
recompile each SWF.
I was wondering if it would be possible to solve this problem
by installing a different version of the Flash Remoting components
(the version that is installed from CFusion 7,0,0 or 7,0,1). If so,
which version? I don't know exactly what was installed by Updater 2
but I read that the Flash Remoting services was also updated to
support AS3.
What solution(s) is/are available to me that doesn't require
a complete rewrite of our Flex code?

Thank you Nick for your reply. You're not going to believe
this but....I did try that and after the rollout and confirming I
uninstalled 7,0,2 properly (back to version 7,0,1) my flex apps
still didn't populate the datagrid like before. That's why I was
wondering if I could install a different version of the flash
remoting components after installing the updater. It appears that
after that flash remoting files are overwritten during the
installation of Updater 2 but are not reverted back to their
original state after the uninstall of Updater 2.
Right now I have 7,0,2 on my local development computer,
7,0,1 on our production server and 7,0,0 (after the reinstall) on
our dev server.
I ended up having to reinstall ColdFusion MX 7 in order for
my Flex apps to work properly.

Similar Messages

  • Position key flex filed not populating in Position Flexfiled Structure

    I have created a Position Key Flex field. While Creating Business Group Organization, Position key Flex Field is not populating in Position Flexfiled Structure Field.
    Work Structure > Organization > Description
    Org Classification : Business Group

    check below -
    Unable to Select new Flexfield Structure for the Business Group [ID 390314.1]
    Also, did you check if your Position flexfield is compiled saved properly ?

  • DropDownList ItemRenderer within Flex Datagrid Not Refreshing

    I have a datagrid which contains a Spark dropdownlist that needs to  obtain dynamic data.
    The datagrid uses a separate dataProvider.
    When I use a static ArrayCollection within my ItemRenderer, it works (please see listing 1).
    However, when I use Swiz to mediate a 'list complete' event to load  the ArrayCollection, the dropdownlist does not show the new data (please  see listing 2).
    Using the debugger, I inspected the dropdownlist ItemRenderer and  have confirmed the new data is being loaded into the ArrayCollection.
    The new data is not shown in the UI control. I have tried  invalidateProperties() + validateNow() and dispatching events on both  the control and the renderer (this), but nothing seems to make the new  data appear in the control on the datagrid.
    Please help !!!
    Listing 1: Datagrid and static ArrayCollection (this works)
    <mx:DataGrid x="10" y="25" width="98%" id="dgInventory" paddingLeft="25" paddingRight="25" paddingTop="25" paddingBottom="25"
                         editable="true"
                         itemClick="dgInventory_itemClickHandler(event)" dataProvider="{acInventory}"
                         creationComplete="dgInventory_creationCompleteHandler(event)"
                         height="580">
                <mx:columns>
                    <mx:DataGridColumn headerText="Item" dataField="itemName" itemRenderer="components.ItemRendererItem"
                                       rendererIsEditor="true" editorDataField="selection" editable="true"/>
                    <mx:DataGridColumn headerText="Quantity Required" dataField="quantityReq" itemRenderer="components.ItemRendererQuantityRequired"
                                       rendererIsEditor="true" editorDataField="selection" editable="true"/>
                </mx:columns>
    </mx:DataGrid>
    <fx:Script>
        <![CDATA[      
            import mx.collections.ArrayCollection;
            import spark.events.IndexChangeEvent;
            public var selection:int;
            [Bindable]
            protected var acItem:ArrayCollection = new ArrayCollection(
                [   { itemName: "Item1"},
                    { itemName: "Item2"},
                    { itemName: "Item3"},
            protected function dropdownlist1_changeHandler(e:IndexChangeEvent):void
                selection = e.newIndex;
        ]]>
    </fx:Script>
    <s:DropDownList id="ddlItem" prompt="Select Item" dataProvider="{acItem}" labelField="itemName"
                    selectedIndex="{int(dataGridListData.label)}"
                    change="dropdownlist1_changeHandler(event)"
                    width="80%" top="5" bottom="5" left="5" right="5"/>
    Listing 2: Dynamic ArrayCollection (does not work):
    <?xml version="1.0" encoding="utf-8"?>
    <s:MXDataGridItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
                              xmlns:s="library://ns.adobe.com/flex/spark"
                              xmlns:mx="library://ns.adobe.com/flex/mx"
                              focusEnabled="true">
        <fx:Script>
            <![CDATA[      
                import event.ItemEvent;
                import mx.collections.ArrayCollection;
                import mx.events.FlexEvent;
                import spark.events.IndexChangeEvent;
                public var selection:int;
                [Bindable]
                protected var acItem:ArrayCollection = new ArrayCollection();
                protected function dropdownlist1_changeHandler(e:IndexChangeEvent):void
                    selection = e.newIndex;
                protected function ddlItem_creationCompleteHandler(event:FlexEvent):void
                    var eve : ItemEvent = new ItemEvent( ItemEvent.LIST_ITEM_REQUESTED );
                    dispatchEvent( eve );
                [Mediate( event="ItemEvent.LIST_ITEM_COMPLETE", properties="acItem" )]
                public function refreshness( _acItem : ArrayCollection ):void
                    acItem.removeAll();
                    var len:int = _acItem.length;
                    if (len > 0)
                        for (var i:int=0; i < len; i++)
                            var newItem:Object = new Object;
                            newItem["itemName"] = _acItem[i].itemName;
                            acItem.addItem(newItem);
                    this.invalidateProperties();
                    this.validateNow();
                    //dispatchEvent(new FlexEvent(FlexEvent.DATA_CHANGE));
            ]]>
        </fx:Script>
        <s:DropDownList id="ddlItem" prompt="Select Item" dataProvider="{acItem}" labelField="itemName"
                        selectedIndex="{int(dataGridListData.label)}"
                        creationComplete="ddlItem_creationCompleteHandler(event)"
                        change="dropdownlist1_changeHandler(event)"
                        width="80%" top="5" bottom="5" left="5" right="5"/>
    </s:MXDataGridItemRenderer>

    After re-reading Peter Ent's ItemRenderer series, this turned out to be quite simple.
    I extended DataGrid to have the ArrayCollection property I needed, then added this to my renderer:
    [Bindable]
                protected var acItem:ArrayCollection = new ArrayCollection();
                override public function set data( value:Object ) : void
                    super.data = value;
                    acItem = (listData.owner as MyDataGrid).itemList; // get the data from the renderer's container (by extending it to add a property, if necessary)

  • Popup datagrid not populating data from xml

    hey guys,
    im having trouble creating a datagrid within a popup. i
    created the datagrid on a normal panel and everything worked fine.
    then i tried to recreate it within a popup and now im having
    trouble getting the xml data onto the datagrid. i think the problem
    is that the xml is not a variable within the function but ive tried
    multiple methods and i have not gotten it to work.
    whenever it runs it just says TypeError: Error #1009: Cannot
    access a property or method of a null object reference. yet when i
    remove the dg.dataProvider = list.michigan.venue; line the datagrid
    works but there is no data obviously... how do i define the xml
    dataprovider within the function??? also, i need the name of the
    state to be dynamic... how could i make it so that the datagrid
    uses the selected state within the xml file? i imagine i would be
    passing a variable through the function that would be called when i
    select the path within the xml. THX GUYS!
    <venuelist>
    <michigan>
    <venue>
    <name>Location Name</name>
    <address>This is the address</address>
    <city>Detroit</city>
    <state>MI</state>
    <zip>48209</zip>
    <phone>(313)555-5555</phone>
    </venue>
    </michigan>
    <illinois>
    <venue>
    <name>Location Name</name>
    <address>This is the address</address>
    <city>Detroit</city>
    <state>MI</state>
    <zip>48209</zip>
    <phone>(313)555-5555</phone>
    </venue>
    </illinois>
    </venuelist>
    here is the code im using to get the xml file...
    <mx:XML id="list"/>
    <mx:HTTPService id="getXML" url="VenueList/list.xml"
    resultFormat="e4x" result="list = XML(event.result);"/>
    here is the code for the popup
    <mx:Script>
    <![CDATA[
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.collections.ArrayCollection;
    import mx.containers.Panel;
    import mx.controls.Button;
    import mx.controls.DataGrid;
    import mx.controls.dataGridClasses.DataGridColumn
    import mx.managers.PopUpManager;
    private var panel:Panel;
    private function init():void {
    var dg:DataGrid = new DataGrid();
    var dgc:Array = dg.columns;
    var d1:DataGridColumn = new DataGridColumn;
    var d2:DataGridColumn = new DataGridColumn;
    var d3:DataGridColumn = new DataGridColumn;
    var d4:DataGridColumn = new DataGridColumn;
    var d5:DataGridColumn = new DataGridColumn;
    var d6:DataGridColumn = new DataGridColumn;
    dg.width = 638
    dg.height = 163
    dg.dataProvider = list.michigan.venue;
    d1.width = 150;
    d1.headerText = "Venue Name";
    d1.dataField = "list.michigan.venue.name";
    d2.width = 150;
    d2.headerText = "Address";
    d2.dataField = "address";
    d3.width = 100;
    d3.headerText = "City";
    d3.dataField = "city";
    d4.width = 50;
    d4.headerText = "State";
    d4.dataField = "state";
    d5.width = 50;
    d5.headerText = "Zip";
    d5.dataField = "zip";
    d6.width = 100;
    d6.headerText = "Phone";
    d6.dataField = "phone";
    dgc.push(d1);
    dgc.push(d2);
    dgc.push(d3);
    dgc.push(d4);
    dgc.push(d5);
    dgc.push(d6);
    dg.columns = dgc;
    panel = new Panel();
    panel.title = "Here are our venues:";
    panel.width = 658;
    panel.height = 203;
    panel.addChild(dg);
    private function closePopUp(evt:MouseEvent):void {
    PopUpManager.removePopUp(panel);
    private function createPopUp():void {
    PopUpManager.addPopUp(panel, this, true);
    PopUpManager.centerPopUp(panel);

    hey guys,
    im having trouble creating a datagrid within a popup. i
    created the datagrid on a normal panel and everything worked fine.
    then i tried to recreate it within a popup and now im having
    trouble getting the xml data onto the datagrid. i think the problem
    is that the xml is not a variable within the function but ive tried
    multiple methods and i have not gotten it to work.
    whenever it runs it just says TypeError: Error #1009: Cannot
    access a property or method of a null object reference. yet when i
    remove the dg.dataProvider = list.michigan.venue; line the datagrid
    works but there is no data obviously... how do i define the xml
    dataprovider within the function??? also, i need the name of the
    state to be dynamic... how could i make it so that the datagrid
    uses the selected state within the xml file? i imagine i would be
    passing a variable through the function that would be called when i
    select the path within the xml. THX GUYS!
    <venuelist>
    <michigan>
    <venue>
    <name>Location Name</name>
    <address>This is the address</address>
    <city>Detroit</city>
    <state>MI</state>
    <zip>48209</zip>
    <phone>(313)555-5555</phone>
    </venue>
    </michigan>
    <illinois>
    <venue>
    <name>Location Name</name>
    <address>This is the address</address>
    <city>Detroit</city>
    <state>MI</state>
    <zip>48209</zip>
    <phone>(313)555-5555</phone>
    </venue>
    </illinois>
    </venuelist>
    here is the code im using to get the xml file...
    <mx:XML id="list"/>
    <mx:HTTPService id="getXML" url="VenueList/list.xml"
    resultFormat="e4x" result="list = XML(event.result);"/>
    here is the code for the popup
    <mx:Script>
    <![CDATA[
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.collections.ArrayCollection;
    import mx.containers.Panel;
    import mx.controls.Button;
    import mx.controls.DataGrid;
    import mx.controls.dataGridClasses.DataGridColumn
    import mx.managers.PopUpManager;
    private var panel:Panel;
    private function init():void {
    var dg:DataGrid = new DataGrid();
    var dgc:Array = dg.columns;
    var d1:DataGridColumn = new DataGridColumn;
    var d2:DataGridColumn = new DataGridColumn;
    var d3:DataGridColumn = new DataGridColumn;
    var d4:DataGridColumn = new DataGridColumn;
    var d5:DataGridColumn = new DataGridColumn;
    var d6:DataGridColumn = new DataGridColumn;
    dg.width = 638
    dg.height = 163
    dg.dataProvider = list.michigan.venue;
    d1.width = 150;
    d1.headerText = "Venue Name";
    d1.dataField = "list.michigan.venue.name";
    d2.width = 150;
    d2.headerText = "Address";
    d2.dataField = "address";
    d3.width = 100;
    d3.headerText = "City";
    d3.dataField = "city";
    d4.width = 50;
    d4.headerText = "State";
    d4.dataField = "state";
    d5.width = 50;
    d5.headerText = "Zip";
    d5.dataField = "zip";
    d6.width = 100;
    d6.headerText = "Phone";
    d6.dataField = "phone";
    dgc.push(d1);
    dgc.push(d2);
    dgc.push(d3);
    dgc.push(d4);
    dgc.push(d5);
    dgc.push(d6);
    dg.columns = dgc;
    panel = new Panel();
    panel.title = "Here are our venues:";
    panel.width = 658;
    panel.height = 203;
    panel.addChild(dg);
    private function closePopUp(evt:MouseEvent):void {
    PopUpManager.removePopUp(panel);
    private function createPopUp():void {
    PopUpManager.addPopUp(panel, this, true);
    PopUpManager.centerPopUp(panel);

  • How to disaply multiple column of a table in a single flex datagrid column

    Hi,
    I have a table in my database which has say 3 column (Firstname,LastName,Location). I wanted to display these 3 different values in a single column in flex datagrid.
    Could you please help me out in this
    Thanks,
    Pratik

    Generally, in such scenarios each column is made corresponding to the column in database only and not single column.
    However, we can setStyle of a datagrid to make it appear as if all three  columns have been populated in single.
    set verticalGridLines="false" for dataGrid. Further cosmetic changes can be made to realise the required look.
    In some cases, labelFunction of a datagridColumn also suffices the need.
    Tanu

  • Flex datagrid borders off by 1px?

    Is there a way to extend the datagrid component or any to her way to avoid this?
    Flex datagrid column header borders and column borders keep going off by 1px... and they randomly alternate when resized.
    I have no idea how to fix this, and it to me looks like a problem with flex, not so much what i coded
    http://screencast.com/t/NmI3Zjk0NmU
    http://screencast.com/t/YzE0NDk5 - resized
    It's like it's going off by 1px because of some rounding error... no idea why this is happening, and I'm using
    Code I'm using (a bit sloppy but still)
    http://pastebin.ca/1888773

    I could use someone's help on this... Every single datagrid i create (at least with a custom header gradient, I think), has borders off by 1px, what can I do to fix this?  I've even seen this happening on other sample flex projects. No idea how to fix this

  • Flex Datagrid Issue

    Hi
    I am using a flex datagrid component which has around 48 columns.
    There is a option for the user to select which columns he wish to see.
    Based on the user's selection the visible columns will be 1-50.
    The Datagrid is inside a Vbox container.
    The issue is, based on the screen resolution and the number of columns selected extra scroll bars(horizontal and vertical) appears
    for the whole Vbox in addition to the Datagrid's scrollbars.
    i.e if resolution is high and user selects more than 46 columns extra scroll bar appears.
    If resolution is low the extra scroll bars appears as soon as the visible columns is more than 20.
    Please help me if there is any resolution in preventing the extra scroll bars from appearing.Ideally, Since datagrid has its own scroll bars making more columns visible should not increase the width of datagrid.
    Any help will be appreciated

    Have you hard-coded the height and width of both the VBox and the Datagrid? If you set the datagrid height and width 40 pixels or so less than the VBox it should solve that problem, I'd think.
    Or, you could set your DataGrid height and width to 90%.
    Sorry if you've already tried this. Another option is to set your datagrid's scroll policy to "off" and just leave the VBox's scroll bars available.
    -John

  • Flex datagrid french sorting

    Hi,
    I am using flex datagrid to develop an application in french,
    as french is having special character in it,
    i need to sort datagrid column in french. Flex datagrid
    unable to sort data in french. i need french sorting,
    if somebody has solution of this please help me to get out of
    this.
    If possible please reply me on
    [email protected]

    i am using inbuilt flex sorting, i am not using sortcompare()
    function.
    its just a string sorting but as its in french ,character
    &quot;
    É&quot; is comig after character &quot;
    V&quot; , because flex treated it as a special character
    . it should come before &quot;
    V&quot;. so do we need to change character set for
    flex?

  • Flex DataGrid Component

    Can i extend the Flex DataGrid using ActionScript and create as  Add-On Component ?

    I've been trying to get this to work.  But i'm having issues   Not sure if it's related to the Array binding limitation mentioned in the release notes.  Maybe someone else has some ideas.
    I'm trying to bind to the dataProvider property of the DataGrid.  That way when the user in Xcelsius selects a range, it will bind the data in the excel sheet to the DataGrid.
    Problem is that i'm only getting one value to update (specifically the top value).  At this time i'm only trying to bind a single column of data.
    I noted that the commitProperties function gets called whenever a cell changes that i'm bound to, but the dataProvider is only receiving the first value of the array.  Even odder is that the ArrayCollection that i receive simply looks like this:
    commitProp:dataProvider=(mx.collections::ArrayCollection)#0
      filterFunction = (null)
      length = 1
      list = (mx.collections::ArrayList)#1
        length = 1
        source = (Array)#2
          [0] 1
        uid = "A37C62CC-F3DC-E1B1-8159-CE984C2CCE33"
      sort = (null)
      source = (Array)#2
    So i see that i get an array collection of ArrayList objects, the first one of which simple contains the value in the excell sheet "1".
    I noted that the proxy.bind function has a parameter called "chain", maybe this is what i need to get multiple value binding?  The documentation for the calls are pretty basic, which is understandable as this is new technology.
    So anyone have some ideas?  Maybe someone from BO who is apart of the SDK group can comment?

  • Pl/sql report not populating output

    SQL> CREATE OR REPLACE PROCEDURE GET_RECORDS(v_action IN VARCHAR2) IS
      2  v_thing VARCHAR2(10);
      3  get_records SYS_REFCURSOR;
      4  BEGIN
      5   IF (v_action = 'DO THIS') THEN
      6   OPEN get_records FOR
      7   SELECT 1 FROM dual;
      8   ELSE
      9   OPEN get_records FOR
    10   SELECT 2 FROM dual;
    11   END IF;
    12 
    13  LOOP
    14   FETCH get_records INTO v_thing;
    15   EXIT WHEN get_records%NOTFOUND;
    16   /* do things */
    17  dbms_output.put_line(v_thing);
    18   END LOOP;
    19   CLOSE get_records;
    20  END;
    21  /
    Procedure created
    SQL> exec get_records ('DO THIS');
    1
    If I call this procedure it is populating data but , if I register it in oracle apps I am not getting data   can any one help
    also I  replaced dbms_output.put_line with fnd_file.put_line , still it is not populating data

    This seems to be like a SQL*Plus report. Please port this query in SQL*Plus community.

  • Hi, my MacBook Air is not working anymore if it's not connected with the power cable. It's pretty new so I can't imagine that the battery is dead already. Why can't I use my MacBook Air without the power cable even though I charged it for hours?

    Hi, my MacBook Air is not working anymore if it's not connected with the power cable. It's pretty new so I can't imagine that the battery is dead already. Why can't I use my MacBook Air without the power cable even though I charged it for hours?

    Please take the Mac to  Apple store to have it checked out.
    Genius Bar reservation
    http://www.apple.com/retail/geniusbar/
    Best.

  • Muse not working anymore

    Hello, Alex here
    since the last update Adobe Muse is not working anymore for me. The sites open normally but then the Master Pages don't load properly and it freezes all the time.
    Does it ring a bell for someone?
    Thanks a lot in advance.
    Alex

    Hi Alex,
    Could you please let me know,
    1. What is the size of your .muse file?
    2 Try to duplicate the .muse file, open it, and try to reduce child pages, and see if you get some improvement.
    3. Do you have asset on Network drive, if yes, add these asset to local drive and then use them, see if that helps.
    4. Are you using Mac/Windows?
    Please let me know these details, and I will try to investigate.

  • Batch characteristic value not populated!

    Hello guys,
    please would appreciate advice to following:
    I created two reference chars z_goods_receipt (MCH1-LWEDT) and z_created_on (MCH1-ERSDA). Chars assigned to material batch class. During GR in Classification Dates (chars values) are visible, but after GR is saved, in batch chars values are not populated.
    Consequently, I can not use these chars in sorting criterium for delivery batch determination - batches are not sorted acocrding to dates.
    Batches on material level. In Customizing (Classify batches within goods mvt), for mvt 101 setting is 4 (Classification always in foreground (all batches)) - but bug remains even if i try with other options. Check with developer shows not much help from EXIT_SAPMM07M_004 or EXIT_SAPMM07M_004 or EXIT_SAPLV01Z_012.
    Any idea how to populate these chars in batch?
    Alternatively, what else I could use in order to enable FIFO batch determination for batches in delivery?
    Thanks for prompt replies!
    Br, Jan

    Hello,
    SAP reply -standard behaviour. After save in MSC2n values read from MCH1, after that in MSC3N value read from AUSP.
    Issue solved using non reference charactereristic and adding code into ZXMBCU04.
    Br, Jan

  • Java Web Start Application surprisedly does not start anymore based on new JRE1.7.0_45

    Hi everyone,
    we have to maintain a self-developed Java Application which is running based on JRE1.5.0_51 (x64). Our recent client machines have JRE1.7.0_40 (x64 too) installed in addition to the mentioned (and needed) JRE1.5.0_51 (x64).
    Everything was fine up to the point where we tried to install the newest JRE1.7.0_45 (x64) as the new version for doing the web start magic. The result is that our application (which is/was unchanged!) does not launch anymore. The strange thing is that we do not get any StackTrace, Exception or something else like this.
    The startup process simply hangs :-(
    Nothing has changed (application itself, firewall, network settings, hardware) apart from the new JRE version. It's reproducible at will. If I install JRE1.7.0_40 (x64) the application starts, if I install JRE1.7.0_45 (x64) the application hangs.
    I can say for sure, that in both cases (*_40 AND *_45) Web Start is able to do the synchronizing job and to launch the application base on the correct JRE1.5.0_51 (x64).
    My guess is that in case of an installed JRE1.7.0_45 (x64), the application hangs when it tries to connect to the database (Oracle 11g) via JDBC.
    I found a little hint in the Web Start Console. Therefore I had to switch the trace level of the console to 3 (which includes security, network and basic)
    In case of an installed JRE1.7.0_40 (x64) - which leads to a running application - I will receive the following output:
    Java Web Start 10.40.2.43
    JRE-Version verwenden 1.5.0_51-b10 Java HotSpot(TM) 64-Bit Server VM
    security: Istrusted: http://PKS-Server/jnlp2/advise_office.jnlp true
    avawsApplicationMain     3798 DEBUG root                : get Service: com.sun.jnlp.BasicServiceImpl@3b8e609b  fileName: connection.properties
    network: Cacheeintrag nicht gefunden [URL: http://PKS-Server/jnlp2//connection.properties, Version: null]
    network: Verbindung von http://PKS-Server/jnlp2//connection.properties mit Proxy=DIRECT wird hergestellt
    avawsApplicationMain     3803 INFO  root                : 'Alex2 connection.properties' wurde vom WebServer gelesen
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    avawsApplicationMain     4488 DEBUG root                : get Service: com.sun.jnlp.BasicServiceImpl@3b8e609b  fileName: connection.properties
    network: Cacheeintrag nicht gefunden [URL: http://PKS-Server/jnlp2//connection.properties, Version: null]
    network: Verbindung von http://PKS-Server/jnlp2//connection.properties mit Proxy=DIRECT wird hergestellt
    avawsApplicationMain     4492 INFO  root                : 'Alex2 connection.properties' wurde vom WebServer gelesen
    Connect OK => application starts.
    In case of an installed JRE1.7.0_45 (x64) - which leads to a hanging application - I will receive the following output:
    Java Web Start 10.45.2.18
    JRE-Version verwenden 1.5.0_51-b10 Java HotSpot(TM) 64-Bit Server VM
    security: Istrusted: http://PKS-Server/jnlp2/advise_office.jnlp true
    avawsApplicationMain     3805 DEBUG root                : get Service: com.sun.jnlp.BasicServiceImpl@25a41cc7  fileName: connection.properties
    network: Cacheeintrag nicht gefunden [URL: http://PKS-Server/jnlp2//connection.properties, Version: null]
    network: Verbindung von http://PKS-Server/jnlp2//connection.properties mit Proxy=DIRECT wird hergestellt
    avawsApplicationMain     3810 INFO  root                : 'Alex2 connection.properties' wurde vom WebServer gelesen
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    network: Verbindung von socket://PKS-Server:1521 mit Proxy=DIRECT wird hergestellt
    These last "network:" log entries will never stop. This will lead to an infinite loop which results in a great memory leak. I have to kill the process via windows task manager in order to get rid of it.
    Does someone out there has the same problem? Are there any new additional security issues which prevent my client to establish the database connection on port 1521?
    Any other ideas?
    Thanks in advance for any hint on this issue!
    Regards,
    Alex

    Resolution: We still were not able to solve this issue! The only way to get out of this is to install the JRE1.5 as the x64 variant. In this case no switching from 64-bit to 32-bit is needed and everything is on track again.
    But this is still strange and unexplainable :-(

  • Satellite U400 - the webcam does not work anymore

    Hello guys here is my sudden probloema!
    About a year ago I purchased a laptop
    TOSHIBA - Satellite U400
    with s.o. WinVista 32bit and with integrated webcam chicony etc. ....
    For a year, everything worked correctly, but for some days now, the webcam does not work anymore.
    As soon as I try to open it, a message of management software cam that says "Webcam driver open fail, please restart or computer room"
    I tried to do it all: aggioronato and downloaded the drivers from toshiba, uninstalled the program and re installed the webcam ....! updated bios notebook ....! useless!
    the strange thing .. well that going into device manager ... the webcam is not there ....! but if the launch seems to open just then check quell caz ... Warning!!
    Gan you help me?
    Graziee

    Are you familiar and comfortable with LINUX LIVE bootable discs to load an alternative operating system with unobtrusive but extensive Toshiba device support so you can determine if your webcam hardware is ruined or if the problem is software and possibly solved reinstalling Windows ?
    At this point, you're pondering less time consuming but more expensive choices such as buying another web cam, or another computer and you might be temporarily borrowing someone else's web cam / using a non preferred spare web cam that isn't optimal for your needs.
    Continuously downloading software, registry cleaners, and repeatedly reinstalling drivers will eventually ruin your Windows installation and consume more time than you've wasted so far and still doesn't guarantee to fix your malfunction.

Maybe you are looking for

  • MacBook Cracks (white, late 2009)

    Being extremely careful with my MacBook, still three cracks appeared on an upper case and a display case. I am sure they are caused by a poor manufacturing or design. It appeared close to "joins" of a display and close to a USB pit. My Mac is still u

  • ICal to do list not appearing on ipod touch

    Did a search and couldn't find anything definitive on it. I assume that there is no syncing of to do lists from iCal to the iPod Touch?

  • XI3.0: Multiple Communication Channels

    Hi, with XI 2.0 one was able to have many endpoints for one interface. For example you were able to have an inbound JMS endpoint and an inbound File endpoint. Both could be configured using the same Business System and Interface. We used this possibi

  • Creating variables in AS3 that Captivate can read.

    I have a Flash project written in AS3 and I am colaborating with someone that is writing a Captivate training program.  The Flash program is a little game and I need to store a couple integers readable by Captivate.   I would like to just create the

  • ISE version 1.1.2 patch-5 or 1.1.3

    I am about to deploy ISE in a new environment.  My plan is to go with ISE 1.1.2 with patch-5 or with 1.1.3 My problem with 1.1.3 is that it is new and no patch.  While there are new features in 1.1.3 but it also comes with unknown issues and bugs tha