Which way is used to allocate/deallocate memory for locals?

Good afternoon.
I would like to know how memory is allocated/deallocated for local variables in an activation record/frame. For example, in the following java code:
1 public void test()
2 {
3     {          
4          {
5               String y = "abc";
6          }
7     }
8     {
9          String y = "pqr";
10     }
11 } At line 5, memory is allocated for variable y. Is this memory deallocated at line 6 (right after its declaration block), or after the line 11 at which point the whole activation record for the method is popped out of the stack?
In addition, is this local memory allocation/deallocation strategy required by the Java specification, or could be different with different Java compilers? Thank you very much and have a great weekend,
Sunny

Hi,
Thank you for your comments!
Perhaps I did not state my problems clearly. Here is my real purpose: I am trying to monitor a program's runtime behavior by dynamically maintaining an object graph where nodes represent runtime objects and directed edges represent "refer to" relation between objects. To better understand my questions, let me first briefly introduce my algorithm to update the object graph:
1. add an edge (between objects): when a local refers to an object, add an edge from the enclosing object to the referred object
2. delete an edge: when a local refers to another new object, delete the edge from the enclosing object to the previously referred object; or the memory allocated for this local is deallocated.
For example, if I have the following Java method,
1 m()
2 {
3        {
4                 Object x = objA;
4'                x = objB;
5                 // some statements
6        }
7        {
8                 // some statements
8'                Object x = objC;
9        }
10 }Below, the enclosing obj means the object containing the method m().
At line 4, a local name x is declared and assigned objA, at which point an edge from the enclosing obj to objA should be added. At line 4' the same local is assigned a new value, at which point we should delete the edge from the enclosing obj to objA and add a new edge to objB.
At line 6 this local is out of its scope, whether or not we should delete the edge from the enclosing obj to objB depends on whether the memory allocated for x is deallocated.
Lastly, at line 8' a new local with the same name x is declared so we should add a new edge...
Another example is like this:
1 m1()
2 {
3      Object x = objA;
4     // some statements
5     m2();
6 }
7 m2()
8 {
9     Object x = objB;
10     // some statements
11 }After line 9, I should be able to know the enclosing obj has two outgoing edges labeled with x, one is to objA and the other is to objB.
Is there any solution to getting this runtime information for Java local variables? I would really appreciate any help!
-- Sunny

Similar Messages

  • What is the best way to capture RGB8 image to memory for later write to disk?

    HI-
    I have been using the code below for some time now but wonder if an expert can take a look and let me kown if there are ways to improve it.  Problem I run into is that I preallocate the memory beforehand (camera.buffering[]), and with a 5 MP camera, this takes up a lot of RAM.  It seems like when I am running this program in debug mode all day and constantly start/stop it without allowing it to free the memory gracefully, i eventually bog the system and start getting Out of Memory error -12, in other places in my code such as DisplayBitmap or GetBitmapfrom File.  Is this all related to how much memory I am trying to allocate prior to begining the camera capture routine below?  Am I not allocating and free-ing it properly?
    Code is below for how I grab the image and then send to memory usign memcpy.  Is there a better, more efficient or faster method?  I have removed error checking/etc from code below simply to save space. This operates at 15 fps.   
    I also included my allocation and free-ing code, too. 
    Thanks in advance.
    Blue
    //caemra capture loop//
    camera.dxerror = IMAQdxGrab (camera.session, camera.image, 1, &camera.bufNum);          
    stat = imaqRotate2 (rotateimage, camera.image, camera.rotate_image, pixval, IMAQ_BILINEAR, TRUE);    
    stat = imaqScale (scaledimage, rotateimage, 4, 4, IMAQ_SCALE_SMALLER,IMAQ_NO_RECT);          
    stat = imaqGetImageInfo(camera.image,&camera.info);
    stat = imaqDisplayImage (scaledimage, 0, FALSE);         
    memcpy (camera.buffering[camera.count], camera.info.imageStart, camera.info.pixelsPerLine*camera.CAMY*camera.bytesperpixel);   
    //memory allocation code//
     camera.buffering = (int **)malloc(camera.maxcount*sizeof(int*));
     for(i=0;i<camera.maxcount;i++)
          camera.buffering[i] = (int *)malloc(camera.info.pixelsPerLine*camera.CAMY*camera.bytesperpixel); 
    // free allocated memory code//
     for(x=0;x<camera.maxcount;x++)
             free(camera.buffering[x]);
    free(camera.buffering);

    How many images are you storing in RAM?  Typically when I need to work with tens, hundreds, or even thousands of images, I save them to the hard drive after I capture them as a PNG with 1000 quality.  Sometimes I process them before saving, sometimes I process them offline from the saved images depending on the application.  If you don't need all of the images simultaneously in memory at once, just save them to PNG.  If you only process one image at a time, only allocate enough memory for the processing you need to perform on a single image.
    www.movimed.com - Custom Imaging Solutions

  • When does java deallocate memory for objects;

    um i'm working on a midp application that is very memory consuming. i would like to optimise it and make it just the oposite of what it is. now i would like to know when does java dellocate memory for an object, is it when it can find no more references to that object? or some other time, well i know its not when it can find no more references to that object because i've already tried that.
    or to make things simpler is there any explicit way to make java deallocate memory for a specific object, like if i have a thread, which is executing a while loop, and i want java to end the thread and free its memory. is there any way to do this?

    I happen to have quite some J2ME experience and it's not overly wise to count on extensive garbage collection. The garbage collector in limited device VMs isnt as advanced as it's big brothers. Try to avoid excessive object allocation and reuse instances whenever possible.
    As for garbage collection, objects will be garbage collected if they can no longer be reached by any of the active application threads and if the garbage collectors deems it necessary to collect garbage, which will probably be when free heap memory becomes sparse or when there's some idle time in your application.

  • My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?

    My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?  Network is administered through an iMac running OS X Yosemite 10.10.2.  Ideally, would like for the second Airport Extreme hard drive to appear on the list of devices in the Finder window.

    Ok.. gottcha
    The problem is network wise.. Yosemite is about equal to tin cans and string.. pathetic.
    Here is my usual set of instructions to get anything working on Yosemite.
    The best way to fix problems is a full factory reset of all the AE in the network.
    Factory reset universal
    Power off the AE.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the AE to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    Then redo the setup from the computer with Yosemite.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg AEgen5 and AEwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use AE24ghz and AE5ghz with fixed channels as this also seems to help stop the nonsense.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the AE always takes the same IP address.. this is not a problem for AE which is router.. it is a problem for AE which is bridged.. you will need to set static IP in the main router by dhcp reservations or use static IP in the AE which is tricky.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric..
    5. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    6. Now mount the disk of the second AE in finder... manually.
    Use Go, Connect to Server and type in the AE ip address.
    SMB://10.0.1.2
    Where you will replace that address with the actual address. The network resource should be discovered and then it will request the password.. type that in and make sure you tick to save it in your keychain.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.
    Do as much as you want of the above... not all of it is necessary.. only if you want it reliable.. or as reliable as Yosemite in its current incarnation can manage.
    The most important thing is point 6.. mount the disk using direct IP address and not names.. dns in Yosemite is fatally flawed.
    See http://arstechnica.com/apple/2015/01/why-dns-in-os-x-10-10-is-broken-and-what-yo u-can-do-to-fix-it/

  • Hello,  My old email address which I have used as my apple id for 10 years is being made redundant. I have changed the email address to a new gmail one and this is my new apple id. But my iMac has not recognised this. It keeps saying it wants the pa

    Hello,
    My old emails address which I have used as my apple id for 10 years is being made redundant. I have changed the email address to a new gmail one and this is my new apple id. But my iMac has not recognised this. It keeps saying it wants the password for my old email address. I have seen some advice on these forums which suggest signing out of iCloud and then back in again. But when I start doing this it asks me if i want all the photos deleted that have not been downloaded onto the mac.
    I have had an iCloud account for quite sometime and I'm afraid of losing everything in my cloud if i sign out and sign in with a new id.
    Is this fear realistic?
    I know I can change back to my old email, sign out and then sign in wight he new one...
    Please help!

    This did not work for me.  My old email account for iCloud still pops up on my screen every time I open my macbook.  I've deleted it, reset it, every thing I can think of and it still shows up.  I think six months of this is more than enough time to wait.
    RDG

  • Which clients are using my Sun One server for authentication?

    We use Sun One ver. 5.2 .
    Our LDAP clients use it for authentication.
    How can I list which clients recently used the Sun One server to authenticate?
    The reason I need that is because I want to upgrade the Sun One server and I want to notify the clients that I'm about to do it.
    Thanks.

    https://www.redhat.com/archives/fedora-directory-users/2005-September/msg00010.html
    Useful script to extract LDAP based user posixGroup memberships information
    ===
    Assuming you are using posixGroup objectclass and memberUid attribute to
    store your membership information, you may find my shell script useful
    and handy.
    It works on Solaris LDAP Client with "ldapaddent" and "ldaplist"
    commands, and works against FDS, SUN DS or OpenLDAP.
    ===
    Gary

  • Is there a way to use an individual Incorrect Message for each quiz page

    The normal message
    INCORRECT Click anywhere or press 'y' to continue
    Could there be a way to use this for a different message on each quiz so that you could write "Your answer was wrong it should have been ...."
    This would avoid branching or using Review Quiz.
    The problem with Review quiz is that you have to have the Forward  Navigation button showing all the way through the Presentation and Quiz (although deactivated) and tell users this is only for use in the Review Quiz mode.
    It would be better if in Review quiz it was possible to review and move on with a Next button, has that been done?
    Ashley

    Hi
    Thanks for your guidance
    This has opened up my mind , I now I find I am totally distracted from
    the CP project I should be working on.
    So I find I have two further problems or maybe they are questions
    I could not find a Tutorial on Scripting is it in Further tutorials ,
    because for some reason my computer although connected to the internet
    will not open anything just a message to say I need an internet
    conection; this will be an internal IT issue.
    Secondly exploring the help I tried the
    Create static widgets
    Select File > New > Widget in Flash.
    In the Create New Widget dialog box, do the following:
    In the Widget menu, select Static.
    In the ActionScript Version menu, select the ActionScript version that
    you plan to use when writing the widget code in Flash.
    Click OK.
    In Flash, right-click the Actions layer in the Timeline, and select
    Actions.
    The Actions panel appears with the template code for the static widget.
    Customize this code to create your widget.
    New project startup
    You can see the option is greyed out for me!
    Inside a Project - Same thing
    What have I not understood
    Totally unrelated issue
    The company has bought 2 copies of ADOBE ELEARNING SUITE would you
    believe after 3 weeks I still do not have an activation code ADOBE say
    they are having problems with their system
    Kind regards
    Ashley Galloway
    International Training & eLearning Manager
    Message was edited by: Captiv8r - Removed personal information and company disclaimer that had apparently been automatically added during an E-Mail reply.

  • Do I need to use free() to deallocate memory allocated by GetStringUTF?

    Question 1:
    If I do...
    char * str = (char *) jEnv->GetStringUTFChars((jstring) jStr, 0);Then, can I use free() over str? i.e.
    jEnv->ReleaseStringUTFChars((jstring) jStr, str);
    free(str); //Is this line valid or outright wrong?
    Question 2:
    Another question is if ReleaseStringUTFChars actually frees str then will it set str to NULL? I guest not as we are not sending this pointer by reference.
    Question 3:
    My last question is if str is NULL then calling ReleaseStringUTFChars over it can cause any problem?
    Edited by: AppleGrew on 06-Oct-2009 14:48
    Edited by: AppleGrew on 06-Oct-2009 15:02

    jEnv->ReleaseStringUTFChars((jstring) jStr, str);free(str); //Is this line valid or outright wrong?Outright wrong.
    Another question is if ReleaseStringUTFChars actually frees str then will it set str to NULL?No, that's impossible by the semantics of C and C++.
    I guess not as we are not sending this pointer by reference.Exactly, so what you described is impossible. No need to ask really.
    My last question is if str is NULL then calling ReleaseStringUTFChars over it can cause any problem?How could it be null? If it comes from GetStringUTFChars that's impossible, and if it doesn't you don't have any business calling ReleaseStringUTFChars() on it, whatever its value.

  • Is there any way to use iphone as a backup for images while travelling

    Iphone would make a great back up store for digital images taken with a real camera while travelling, if there was a way to transfer full resolution image files from a PC to iphone via USB. When I am travelling light, I dont carry a laptop with itunes and the iphone doesn't appear as a drive when connected to a computer. Not sure why the file system is hidden.
    Any ideas for this?

    The iphone does not support disk mode, which would allow it to be used for storage.
    At present, I know of no way to do what you want.

  • Any way of using MyCloud Mirror as a purely local web host?

    I bought an 8 TB Mirror for use as a backup device, and am very happy with its performance in that role. I would ideally also like to be able to use it use it as a local testing server for websites that I develop and manage for a number of non-profits. I currently host the test sites under IIS running  on my development machine, but I would ideally like to slim this down a bit. I do not, however, want any aspect of the Mirror device to be visible or accessible from anywhere except my local network. I use Dreamweaver as my website editor and the sites that I develop make significant use of PHP and MySQL databases, both of which seem to be supported by the OS on the Mirror, but the reading around that I have done suggests that the only way of getting access to the Mirror's web server functionallity requires that it be set up to allow access from the general internet, which is not acceptable as an option, and that even after doing that, setup as a web server is not particularly easy or convenient. Is my understanding more or less correct, or can someone give me better news?

    It's possible to use the MyCloud as a webserver - it does run apache afterall.  And that webserver would only globally publish what you wanted, not your entire drive.  I don't have a MyCloud, but i do have a MyBookLive on which i run a webserver.  I used the extermely easy install from highlevelbits.fr to set up my webserver.  You could probably follow his code and modify it as required for this next-gen MyCloud.  Or you could search this forum for guides on how to set it up.  Anyways, it does require some Linux skills. 

  • Is there any possible way to use my EOS Rebel XT for EOS Utility?

    Okay, so i want to use EOS Utility on my Digital Rebel XT camera. In case you are wondering EOS Utility is used to take a picture with the camera by just clicking a button on the computer. Its used to make it so that any pictures i take arent shaky. Anyway, there is no link for the camera and when i go to the cameras homepage, and go to softwares, There is no download link for EOS Utility for my camera. Is there any way I can still use it on my Digital Rebel XT Camera? Let me know thanks

    FantasticMrFox wrote:
    Okay, so i want to use EOS Utility on my Digital Rebel XT camera. In case you are wondering EOS Utility is used to take a picture with the camera by just clicking a button on the computer. Its used to make it so that any pictures i take arent shaky. Anyway, there is no link for the camera and when i go to the cameras homepage, and go to softwares, There is no download link for EOS Utility for my camera. Is there any way I can still use it on my Digital Rebel XT Camera? Let me know thanks Other responses have gone off to explain some other solutions before answering your question. The simple answer is "NO". You cannot use your camera tethered to a computer, controlling it via EOS Utilities software (or Lightroom, for that matter). In order to do that, the camera must have the Live View feature. Your XT (aka 350D, from 2005) doesn't have Live View. There was a version of LV on the EOS 20Da (2005), a more complete implementation of it on the 40D (2007), and among the Rebel-series models the XSi and XS were the first to get LV (aka 450D & 1000D, both introduced in 2008). Other responses are on some right tracks, though. If your primary purpose is to help prevent camera shake, there are several other things you can do, which you may or may not be aware of... - Set a faster shutter speed. Of course, to do so may require a larger lens aperture and/or a higher ISO.  - Get and use a lens with IS (Image Stabilization).- Use flash, it freezes both subject movement and camera shake, approx. like 1/720 shutter speed would, with most flashes.- Use a tripod along with:- - a remote release (RS-60E3 wired or RC-6 wireless)- - or just use the camera's self-timer delay - - and/or use mirror lockup (Custom Function 7) Tripod quality has a great deal of effect. Some are so flimsy as to be hardly worth using. For example, the most stable tripods do not use a center column or, if it has one, the tripod is tall enough to be used without raising the center column much or at all. Materials make a differentce, too... for example carbon fiber is much better absorbing fine vibration than metal. There are a number of other factors that go into making a tripod stable. Do some additional research, if interested. Note: RC-6 wireless release uses infra red and the sensor for it is on the front of the camera. This is certainly useful for self portraits, but may be problematic using this remote for other types of photos. In addition to the Canon RS-60E3 wired remote release, there are other brand remote switches including some that have additional features such as delay timers, interval timers (time lapse), etc.  AFAIK, Canon does not make a timer/controller with E3 connectivity (like the TC-80N3, which will not connect with your camera) Note: The XT's self-timer delay is 10 seconds only. However, when used in conjunction with the mirror lockup feature, it's automatically shortened to a 2 second delay. Note: While IS lenses can make possible handholding lenses at shutter speeds 2, 3 or somtimes even 4 stops slower than you'd normally be able to use... the effectiveness of IS varies a bit from lens to lens and good handholding technique are still needed to get the best out of it. Some IS lenses require IS to be manually turned off when locked down on a tripod. The IS in those lenses can go into sort of a feedback loop where it's actually causing, rather than preventing movement. Don't worry too much about it, though... if it happens you'll see it in the viewfinder and then can turn off the IS. (No harm done to either the camera or the lens.) Hope this helps! ***********
    Alan Myers
    San Jose, Calif., USA
    "Walk softly and carry a big lens."
    GEAR: 5DII, 7D(x2), 50D(x3), some other cameras, various lenses & accessories
    FLICKR & EXPOSUREMANAGER 
           

  • HT204053 What is best way to use a corp apple ID for icloud and let users use their Apple ID in itunes store?

    What is the best setup for us to maintain ownership of our corp issued iPhones and iPads yet allow users their personal apps from their iTunes accounts? I have gone out and created a corp apple ID that we are using in the iCloud setup on all our corp owned devices. This keeps the end user from using their apple ID in iCloud and hence when employee's are unexpectedly discharged we still maintain ownership and don't have to ask them for their Apple ID & password when resetting the devices. It also does not allow them to do backups to the cloud or locally either way. We are very careful to turn EVERY thing off inside the iCloud set up area. Even turning off iMessage and share my location. We do keep the find my iphone or ipad on however. So how can I lock these settings to keep users from changing them? Or is there a better way to manage corp devices without having to buy into anything to manage them, we are a non profit.

    iPhone in Business and Education
    That would be the proper thread to post, cause obviously just cause you setup the way above it will not stop users from turning off or on iCloud features like contact and then problems with entering incorrect passwords. You can also try restrictions to account changes, but that is not guaranteed to work either.
    Guys on that thread may be able to point to different professional solutions, but those are unlikely to be free.

  • Sub class will allocate seperate memory for super class  instance variable?

    class A
    int i, j;
    void showij()
    System.out.println("i and j: " + i + " " + j);
    class B extends A
    int k;
    void showij()
    System.out.println("i and j: " + i + " " + j);
    what is size of class B will it be just 4 byte for k or 12 bytes for i, j and k ?
    will be a seperate copy of i and j in B or address is same ?
    thank u

    amit.khosla wrote:
    just to add on...if you create seprate objects of A and B, so the addresses will be different. We cant inherit objects, we inherit classes. It means if you have an object of A and another object of B, they are totally different objects in terms of state they are into. They can share same value, but its not compulsary that they will share same values of i &j.
    Extending A means to making a new class which already have properties & behaviour of A.
    Hope this help.That is very unclear.
    If you create two objects, there will be two "addresses", and two sets of member variables.
    If you create one object, there will be one "address", and one complete set of non-static member variables that is the union of all non-static member variables declared in the class and all its ancestor classes.

  • Can't use all memory for VM

    Hi!
    I have Microsoft Hyper-V Server 2012 R2 with 16 Gb RAM. I created two VM with 7162 Mb of fixed memory on each. But i can't start both of them. When i tried start second vm i got out of memory error. Why?
    PS C:\Users\Administrator> ( Get-WMIObject Win32_OperatingSystem -ComputerName localhost ).FreePhysicalMemory
    8184452
    PS C:\Users\Administrator> start-vm oldBSD
    start-vm : 'oldBSD' could not initialize. (Virtual machine ID 05EA5A45-601F-4CC0-8770-62B97571D8F8)
    Not enough memory in the system to start the virtual machine oldBSD with ram
    size 7168 megabytes. (Virtual machine ID 05EA5A45-601F-4CC0-8770-62B97571D8F8)
    The server ran out of available memory.
    Max memory value for second machine is 5740Mb, but with it i have
    PS C:\Users\Administrator> ( Get-WMIObject Win32_OperatingSystem -ComputerName
    localhost ).FreePhysicalMemory
    2243312
    How i can use all memory? My idea is use 7 Gb of memory for each machine and 1.5-2 Gb for host.

    Hi maxx-ode,
    As far as I know ,to get free memory you still need to subtract the "standby memroy" from the output of the command in your original post .
    Please refer to the article "Memory Sizing Guidance for Windows 7" within the link below :
    http://msdn.microsoft.com/en-US/library/windows/hardware/dn550976
    " Standby List
    The Standby list contains unmodified pages that have been removed from process working sets, which effectively makes the Standby list a cache. If a process needs a page that is on the Standby list, the memory manager immediately returns the page to its
    working set.
    All pages on the Standby list are available for memory allocation requests. If a process requests memory, the memory manager can take a page from the Standby list, initialize it, and allocate it to the calling process. This is called repurposing a page.
    Pages on the Standby list are often from recently used files. By keeping these pages on the Standby list, the memory manager reduces the need to read information from the disk. Disk reads
    can decrease system responsiveness. "
    Please try to use this command to get the "real" free memory of host (in bytes):
    (Get-WmiObject Win32_PerfFormattedData_PerfOS_Memory -ComputerName localhost).FreeAndZeroPageListBytes
    "Free & Zero Page List Bytes is the amount of physical memory, in bytes, that is assigned to the free and zero page lists. This memory does not contain cached data. It is immediately available for allocation to a process or for system use.
    Update: Actually we can allocate some standby RAM to VM , based on my test I can't allocate whole standby RAM .Then I used
    RAMMap to check the usage and I found that Mapped file occupied most RAM .For mapped file please refer to following link:
    http://blogs.msdn.com/b/khen1234/archive/2006/01/30/519483.aspx
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Which tables are being used to extract the data for the materi Extractors

    Hi
    please advise which tables are used to extract the data for the extarctors
    0MAT_SALES_ATTR,
    0MATERIAL_ATTR,
    0MAT_PLANT_ATTR
    0PLANT_ATTR
    ,Many thanks.

    Hi,
    Activate a database trace using ST01. Then perform the MM03 operation and goto the SD Texts tab. Now stop the trace and see if you can locate either a table or program which you can utilize in the log.
    http://help.sap.com/saphelp_47x200/helpdata/en/dd/55f993545a11d1a7020000e829fd11/frameset.htm
    Hope this helps..
    Rgs,
    Ravikanth.

Maybe you are looking for

  • Import a Workflow using an XML file in Tcode SWDD

    Hello, I have a problem in the workflow builder- Tcode SWDD: I am trying to copy workflow from one system (ECC 5.0) to another one (ECC 6.0) ? I use transaction Workflow-> Import/export->Export to xml files and import the xml files again, but the new

  • Problems with auto upgrade Anyconnect 3.1

    Hello, I'm having problem with auto upgrade of Anyconnect 2.5 to 3.1. Here is the situation : I have ASA5510 running ASA 8.4.5 and clients are running Anyconnect 2.5.3055 and 3.1.00495 with 2 different profiles. Clients with 2.5 can upgrade to 3.1 bu

  • Enhancement request: Buttons in report regions

    Buttons in Report regions (usually) operate upon the data shown in the report using form input elements like checkboxes, radiobuttons, etc. When the report returns no rows, the buttons look silly in an empty report region. Clicking them might also do

  • Edit line color in chart

    I just need to edit the line "stroke" color in a line chart... to a different color... I can't seem to find the option. Thanks, Akkdio

  • Processing exception during a "CreateCorbaSupportObjects" operation

    Hi guys, I've just installed and configed the ADS, after that I delopy and run a sample app, but exception throwed: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Error during call to AdobeDocumentServer: Processing exception during a "