[svn:bz-trunk] 15126: Removed NonHttpFlexSession that is not used anywhere in our code.

Revision: 15126
Revision: 15126
Author:   [email protected]
Date:     2010-03-30 01:48:55 -0700 (Tue, 30 Mar 2010)
Log Message:
Removed NonHttpFlexSession that is not used anywhere in our code. According to check-in notes, this class was introduced during LCDS and BlazeDS split and it was supposed to be extended by RTMP and RTMPT FlexSessions and will serve as a bridge between the community and enterprise servers, but this doesn't seem to be the case, so getting rid of it to avoid confusion.
Removed Paths:
    blazeds/trunk/modules/core/src/flex/messaging/NonHttpFlexSession.java

Very strange, something else running that may be holding onto the UFL in memory?
I know it's extreme but what happens if you re-boot and use the new UFL? Just to verify it's unloaded.
What happens if you create a new report?
Try this[ sample UFL|https://bosap-support.wdf.sap.corp/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3030303135323530313426] also.
Thanks
Don

Similar Messages

  • Can't update itunes. I get " The feature you are trying to use is on a CD-ROM or other removable disk that is not available

    Can't update itunes. I get " The feature you are trying to use is on a CD-ROM or other removable disk that is not available"

    I am getting this same message when it tries to install it is Itunes.msi
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • "the feature you are trying to use is on a RD-ROM or ohter removable disk that is not available insert the 'itunes' disk and click OK

    I've beeing having problems with Itunes since about january, wheneveer i click on itunes the error message reads "The file 'ituneslibrary.itl' cannot be opened because it was created by a newer version on of itunes", yet when i try to updat to itunes 11 or uninstall itunes from my computer i keep on getting a message stating  "the feature you are trying to use is on a RD-ROM or ohter removable disk that is not available insert the 'itunes' disk and click OK" what is the best way to fix this problem?

    yet when i try to updat to itunes 11 or uninstall itunes from my computer i keep on getting a message stating  "the feature you are trying to use is on a RD-ROM or ohter removable disk that is not available insert the 'itunes' disk and click OK"
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Removing posts that have not been responded to

    hi all.
    i love the forums and am excited about the new redesign.
    another great example of why switching back to mac is working nicely for me.
    can i please ask if it is possible to multiple remove or otherwise conveniently remove posts that have not been responded to (0 responses)?
    i have a ton of these and I want to minimize the clicks and the time this will take to remove them.
    thanks.

    OK. But I'd like to get these off the unanswered posts section so they don't show up. It is sort of inconvenient.
    Is there a quickest way to do this?
    I answer my own post and click Correct Answer on the answer...?
    Thanks

  • Received a notice that could not use photo stream unless I updated my software.  Went to apple preferences/icloud to disable photo stream.  Not allowed to do so.  What do I do to disable so I won't continue to receive annoying messages from apple/icl

    received a notice that could not use photo stream unless I updated my software.  Went to apple preferences/icloud to disable photo stream.  Not allowed to do so.  What do I do to disable so I won't continue to receive annoying messages from apple/icloud

    I think you can solve your problems by removing your AppleID email address from BOTH the Messages setting on your iPhone and the iMessages settings on your Mac.
    On iPhone:
    Settings > Messages > iMessage > Dissabled
    Settings > Messages > Send & Receive > touch the "(i)" < touch "Remove This Email"
    On Mac:
    Open "Messages" application
    Click "Messages menu > Preferences
    Click "Accounts"
    Select your AppleID account
    Under the "You can be reached for messages at" settings, uncheck your AppleID email address and your phone number
    Then uncheck the "Enable this account" setting
    And lastly, ask all of your friends with iPhones to delete all iMessage conversations (blue bubbles) in their entirety.
    To test, send a friend a new text using their phone number (not their email address) and watch the color of the bubble.  If it's green then you are using SMS.

  • Create timer function that does not use start-sleep

    Hey all I would like to create a timer function that does not use the start-sleep command because this freezes my GUI. I've wrote the start of a function but it seems to move on before the specified time has finished.
    Here's what I have:
    $Global:timerCounter=0
    $Global:timer = new-object System.Windows.Threading.DispatcherTimer
    Function Timer{
    param(
    [parameter(Mandatory=$true)]
    [int]$time
    $timer.Interval = [TimeSpan]"0:0:$($time)"
    $timer.Add_Tick({
    $Global:timerCounter++
    if($Global:timerCounter -ge 1) {
    $Global:timer.Stop()
    $timer.Start()
    Then in my script i would like to call Timer -time #of seconds. It seems that when I call it the add_tick is registered and then started but it continues on with the rest of my script. Is there a better way of doing this without using start-sleep?
    Thanks!

    Okay the issue I'm having is that I have code after the $timer.start that I don't wan't to run till a powershell job is done. In all the examples I've seen it has to come to the end of the code then it starts the tick. So in your example it comes to the
    end of of your code and showsDialog() then starts ticking.
    So:
    add-type -AssemblyName system.windows.forms
    $form=New-Object System.Windows.Forms.Form
    $btn=New-Object System.Windows.Forms.Button
    $form.Controls.Add($btn)
    $btn.add_Click({$form.Close()})
    $btn.Dock='Fill'
    $btn.Font='Lucida Console, 20.25pt, style=Bold'
    $btn.Text=[DateTime]::Now
    $timer=New-Object System.Windows.Forms.Timer
    $timer.Interval=1000
    $timer.add_Tick({$btn.Text=[DateTime]::Now})
    $timer.Start()
    $form.ShowDialog()
    #I want to do other things here but only after the ps job has finished
    Thanks I really am trying to figure this out. 
    Here is the code I'm working with I guess I'm unclear on how to order the timer and the rest of my code:
    if($syncHash.mainCopy){
    $syncHash.mainJobDone = $false
    $syncHash.writeHost = $false
    while(-not $syncHash.mainJobDone){
    [System.Windows.Forms.Application]::DoEvents()
    if($syncHash.writeHost -eq $false){
    Write-OutputBox -Message "Copying"
    $syncHash.writeHost = $true
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    $syncHash.currentCopyTime++
    }elseif($syncHash.currentCopyTime -ge ($syncHash.averageCopyTime * 2) -and $syncHash.collectionCopyTime.Count -ne 0){
    $syncHash.Unusable += $syncHash.currentMainCopyMachine
    $syncHash.computersNotForInstall += $syncHash.currentMainCopyMachine
    $syncHash.inProgress = $null
    $syncHash.mainCopyTimedOut = $True
    Write-OutputBox -Type WARNING: -Message "$($syncHash.currentMainCopyMachine) is taking too long. Removing Job.."
    Add-Content -Path $log_path -Value "$($syncHash.currentMainCopyMachine) taking to long to copy to"
    Stop-Job $syncHash.mainCopy
    }else{
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    Write-OutputBox -Message "." -NoNewLine
    ############################# ############# So I need it to wait right here I have other code other than in this block ############# that needs to run $syncHash.currentCopyTime++
    if(-not $syncHash.inProgress){
    $syncHash.mainJobDone = $true

  • Printing to PDF with Ctrl-P (use Adobe Professional 9.4.5) tries to embed a font (WCrSarah) that is not used in the css, nor used on the page itself). Why? Cheers, vernooij@brill.nl

    Hi all,
    Printing a page to PDF with Ctrl-P (use Adobe Professional 9.4.5) tries to embed a font that is on my computer (WCrSarah) that is not used in the css, nor used or named in the page itself. Why? Cheers, [email protected]

    Your template contains an IE Conditional Comment that is adding 30px of top padding to  #sidebar1.  This padding may required in older versions of IE but not IE9.
    &lt;!--[if IE]>
    &lt;style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixRtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    &lt;![endif]-->
    To fix it, change [if IE]  to [if lt IE 9]
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Login that does not use https

    I don't have access to https sites from my current work facility.
    Do you have a login method that does not use HTTPS?
    Is there any way that I can link my metalink account and my OTN account, and get to OTN through my metalink account?
    David

    Okay ... I fixed this, Oracle XE finally convinced them to let us have access to https at OTN.
    David

  • Building an application that does not use any local program files or libraries

    I need to build an application that will not use any local libraries or LabView program files(even if LabView is installed on the PC). I also am curious if anyone knows if there is a way to debug such an application(in it's compiled state).
    Any help on these topics would be greatly appreciated.
    -Nate
    Solved!
    Go to Solution.

    Hello,
    I am unclear on what you are trying to accomplish here. As the previous poster mentioned, if you enable debugging when building your application, you can remotely connect and probe the block diagram of the running executable. Executables use the run-time engine but could also access drivers or other run-times if using a specialized toolkit/module. This all depends on your application.
    -Zach
    Certified LabVIEW Developer

  • The timekeeping system we use does not like HTML 5 so what is the latest version of Firefox that does not use HTML 5?

    We have been told by our timekeeping system provider that the latest versions of FireFox, Chrome and IE are not compatible with their websites at this time. I was told that it was because of the use of HTML 5 by the more recent versions of these web browsers. I need to download the most recent version of FireFox that does not use HTML 5. Can anyone tell me which version this would be?

    It isn't "Timesheet Next Generation", is it? We had a thread on that here: [https://support.mozilla.org/questions/961306 Websites using php and mysql stopped sorting drop down lists properly starting last week. Did something change?]
    Unfortunately, HTML5 is a large specification with a lot of parts that has been implemented in pieces over the course of several years. It would be really helpful if your vendor could indicate what EXACTLY is not compatible and then it could be researched. Otherwise, you'd have to use trial and error. Either way, you would end up with an older browser that isn't safe to run on the internet. It could be time to consider other vendors...

  • Imports that are not used

    Hi Everybody,
    Out of curiosity, I want to know what is the impact of the import statements that are not used in a program.
    Thanks
    Vikas

    At runtime there no impact.But at compile time it parses all the imports before compiling the class.
    Correct me if iam wrong
    Sada

  • How to find BEx queries that were not used along with no of times executed

    Hi SDN,
    I need build a query which shows the BEx reports that were not used and also the number times the query was executed.
    I built the query on "multiprovider 0TCT_MC01" in which I used the KF "0TCTQUCOUNT" then the query is not capturing this information, while executing from Portal. ( as stated in /thread/716593 [original link is broken]).
    If anybosy happen to know the solution please share.
    Also
    as stated in this link (BW 3.5 Statistics - User Hits)
    Is there any infoobject which has the exact functionality as of the "0TCTNAVCTR" of 0BWTC_C02 (we can not use 0BWTC_C02 as we are in BW 7 SP16).
    I think it is very well known issue but there is not any exact solution to it if anybody finds the solution please update this points will be assigned
    Thank you,
    Prasaad
    Edited by: Prasaadbw on Mar 18, 2010 2:01 PM

    Hi,
    Try from one of these tables RSZRANGE, RSZELTXREF,
    RSZELTTXT,RSRREPDIR,RSZSELECT,RSZCOMPDIR.
    There is a field 'Last Used'.
    You can get some info when Query was used last
    -Vikram

  • Like Norton Utilities for PCs, is it helpful to use a software on a MBP to clean up junk that is not used programs and documents?

    Like Norton Utilities for PCs, is it helpful to use a software on a MBP to clean up junk, that is not used programs or documents? If so what's the best software for this?

    No. See this recent thread and always look on right side bar for "More like this"
    https://discussions.apple.com/thread/5098172?tstart=0
    Norton for one thing does more harm than good and tries to modify the system's behavior.
    Your post is not in the MacBook Pro area, would also be more along t he lines of something for OS X Mavericks Community.
    MacBook Series Forums
    https://discussions.apple.com/community/notebooks?view=discussio 
    http://www.apple.com/support/macbookpro
    Mac OS X Forum
    https://discussions.apple.com/community/mac_os?view=discussions

  • [svn:fx-trunk] 7467: Removing font face validation so that the requested style is used whether or not it matches what the font describes .

    Revision: 7467
    Author:   [email protected]
    Date:     2009-06-01 08:10:15 -0700 (Mon, 01 Jun 2009)
    Log Message:
    Removing font face validation so that the requested style is used whether or not it matches what the font describes. This allows font families to be constructed from multiple fonts including those that do not describe their style in the OS/2 table. Note SWF and the Flash Player restriction of only support 4 faces per font family (plain, bold, italic, and bold & italic) still applies.
    QE: Yes, please look out for negative test cases for embedded font styles that no longer fail. Also look out for minor font outline differences given that we use AFEFontManager by default for DefineFont3 embedded fonts. If you require the legacy font outlines you can configure the test case to use the BatikFontManager (which has been retained for MPL distributions).
    Doc: Yes, we'll release note the relaxed font embedding rules for font faces. I'll annotate the bugs below.
    Reviewer: Paul
    Bugs:
    SDK-14309 - fontWeight should not be restricted
    SDK-14308 - fontWeight: bold is required when specifying certain fonts in the CSS file
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-14309
        http://bugs.adobe.com/jira/browse/SDK-14308
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/lib/flex-fontkit.jar
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/BatikFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/CachedFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/JREFontManager.java

    i have sorted this out by placing it in the webapps dir of my tomcat. The problem is when i map a servlet in my own web.xml, it stops working. At this time i just want to map 1 servlet called main, and it is in C:\Tomcat 5.5\webapps\cmt3082\WEB-INF\classes\myProject
    cmt3082 is my project folder
    WEB-INF holds my web.xml
    classes holds my servlet, in this case main.java
    myProject holds my Java classes
    So i have mapped main like this for now
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
        version="2.4">
    <servlet> 
    <servlet-name>main</servlet-name> 
    <servlet-class>classes.main</servlet-class>
    </servlet>
    </web-app>But with this in place, it gives me the error cannot find requested resource. And i missing somthing in the web.xml?
    cheers

  • [svn:fx-trunk] 8417: Remove themes from the package that are not compiling cleanly

    Revision: 8417
    Author:   [email protected]
    Date:     2009-07-07 04:50:21 -0700 (Tue, 07 Jul 2009)
    Log Message:
    Remove themes from the package that are not compiling cleanly
    bug: https://bugs.adobe.com/jira/browse/SDK-21144
    qa: yes
    doc:
    checkintests: pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21144
    Modified Paths:
        flex/sdk/trunk/build.xml

Maybe you are looking for

  • Issue in PO Version Management

    We have recently configured release strategy for PO in SAP. Now there is issue with Version management. Consider X and Y are users responsible for Purchasing activities. Scenario prior to Release Strategy Configuration: If X has created PO and if it

  • External Studio Monitor??

    I read the most recent thread regarding this subject but, suppose you are equipping a studio and money is not really that much of an object, then what would you guys suggest as a large screen external studio monitor. Currently we are using a professi

  • Burning CD's of Pictures

    We took a trip with some people, and want to make CD's for them. I could take the SD card to Walmart or Costco and get photos made, but the cost would be astronomical as we have literally 100's of pictures. How do I do this? I have been scrolling dow

  • BAPI or RFC for item level updation in BOM

    Hi , I need to mass update the operation lead time offset in all the items in the BOM. First i am downloading the BOM components and its existign operation lead time offset in the form of excel file. Then i am modifying the excel file and the same is

  • Compare 2 text files

    Hello guys ... I want to compare two text files and then print line if the files are identical or not. What I have here is comparing linie by line and is printing after each line. How can compare all the text and after that just print if all the file