Any free code flow dumping tools

Hi All,
I am new to this forum. I started work on a new project, for which there is already
some existing codebase. I need to provide a feature enhancement, which
requires changes in most of parts the source tree. Before doing that, I would like
to get a feel of how the existing classes are interacting and how the code flows,
for a user request/operation.
Are ther any free code flow dumping tools, which basically dump the stack trace,
to a file. These tools are not same a code coverage tools, which keep track of
the number of lines of code executed. I tried searching in the web, sourceforge
and Eclipse plugins site, but no luck.
If any one is aware of such tools or if there are alternative approaches of getting
such information, kindly share it with me.
Thanks
Tejo

I don't know any, but when i need something good and free i check
http://www.sourceforge.net
You can find good stuff there

Similar Messages

  • Any free downloads are there XSLT mapping tool

    Hi all ,
    any free down loads are there XSLT mapping  tool , i need to enchance the mapping which is already done in XSLT mapping there they have done look ups also using java codinh , i do have just XSLT file in import arichive , so please help me in it
    thanking you
    sridhar

    Hi ;
    Refer this
    XSLT mapping
    /people/prasadbabu.nemalikanti3/blog/2006/03/30/xpath-functions-in-xslt-mapping
    Mudit

  • Any (source code)FREE BOOK  implementing recieving and sending emails

    any (source code)FREE BOOK implementing recieving and sending emails
    if avgailable on net.
    please help...
    Regards,
    Navin.

    check this out:
    http://www.javaworld.com/javaworld/jw-10-2001/jw-1026-javamail.html

  • Is any free tool bar for jsp page?

    hi,
    I am having web pages.
    so I am entering some data in text area.
    how to select the font ,size,colors in jsp page.
    i want features like word in jsp page.
    is it any free software available to change font,color of text.
    Thanks
    siva

    and here is the js script for textEditorContent.js ...
    function boldThis(from)
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<b></b>"
        else
            document.selection.createRange().text = "<b>" + strSelection + "</b>"
        return;
    function underlineThis(from)
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<u></u>"
        else
            document.selection.createRange().text = "<u>" + strSelection + "</u>"
        return;
    function italicThis(from)
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<i></i>"
        else
            document.selection.createRange().text = "<i>" + strSelection + "</i>"
        return;
    function fontThis(from)
        var ind=document.form1.fontnames.selectedIndex;
        newfont=document.form1.fontnames[ind].value;
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<font face='"+newfont+"'></font>"
        else
            document.selection.createRange().text = "<font face='"+newfont+"'>" + strSelection + "</font>"
        return;
    function sizeThis(from)
        var ind=document.form1.fontsizes.selectedIndex;
        newsize=document.form1.fontsizes[ind].value;
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<font size='"+newsize+"'></font>"
        else
            document.selection.createRange().text = "<font size='"+newsize+"'>" + strSelection + "</font>"
        return;
    function colorThis(from)
        var ind=document.form1.colors.selectedIndex;
        newcolor=document.form1.colors[ind].value;
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
            if (from == 2) document.form1.text.select()
                strSelection = document.selection.createRange().text
            document.selection.createRange().text = strSelection + "<font color='"+newcolor+"'></font>"
        else
            document.selection.createRange().text = "<font color='"+newcolor+"'>" + strSelection + "</font>"
        return;
    function newlineThis()
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
        document.selection.createRange().text = strSelection + "<br>";
        return;
    function insertPic()
        var ind=document.form1.pictures.selectedIndex;
        if(ind==0)
            alert(msg15)
            return false;
        newpic=document.form1.pictures[ind].value;
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus();
        document.selection.createRange().text = strSelection +"<img border=0 src='"+newpic+"'>";
        return;
    function ahrefThis()
        strSelection = document.selection.createRange().text
        if (strSelection == "")
            document.form1.text.focus()
        document.selection.createRange().text = "<a href='" + document.form1.hyperlinknm.value + "' target='_blank'>" + strSelection + "</a>"
        return;
    function textview()
        popupWindow5=open("EDETAIL_Text_View.jsp",'Windown','scrollbars=YES,resizable=YES,left=10,top=20,toolbar=no,width=1000,height=600');
        if (popupWindow5.opener == null)
            popupWindow5.opener = self;
        popupWindow5.focus();
    function callSave(size, module, msg)
        if(!checkMaxLength(document.form1.text,size,msg))
            return;
        if(isBlank(document.form1.text.value))
            alert(module+" "+msg11);
            document.form1.text.focus();
            document.form1.text.select();
            return false;
        if(module=='Question')
            var tempstr ="";
            var count = document.form1.rowCount.value;
            var ind = document.form1.anstype.selectedIndex;
            for (i=0; i<count; i++)
                if(count==1)
                    if(ind>0)  // RADIO or CHECKBOX or DROPDOWN
                        tempstr = document.form1.answerDesc.value;
                    if(ind==1) // RADIO BUTTON
                        if(!checkMaxLength(document.form1.answerDesc,500,"Answer Option"))
                            return;
                        if(!checkMaxLength(document.form1.feedbackDesc,500,"Answer Option"))
                            return;
                else
                    if(ind>0)  // RADIO or CHECKBOX or DROPDOWN
                        tempstr = document.form1.answerDesc.value;
    if(ind==1) // RADIO BUTTON
    if(!checkMaxLength(document.form1.answerDesc[i],500,"Answer Option"))
    return;
    if(!checkMaxLength(document.form1.feedbackDesc[i],500,"Answer Option"))
    return;
    if(ind>0)
    if(isBlank(tempstr) )
    alert(msg12);
    if(count==1)
    document.form1.answerDesc.focus();
    document.form1.answerDesc.select();
    else
    document.form1.answerDesc[i].focus();
    document.form1.answerDesc[i].select();
    return false;
    for (j=i+1; j<count; j++)
    if(document.form1.answerDesc[i].value==document.form1.answerDesc[j].value)
    alert(msg13);
    document.form1.answerDesc[j].focus();
    document.form1.answerDesc[j].select();
    return false;
    document.form1.submit();
    This function is used to go back to previous screen
    function goBack()
    if(window.confirm(msg14))
    if(document.form1.From.value=="Page")
    document.form1.action="EDETAIL_Add_Page_Content.jsp";
    else
    document.form1.action="EDETAIL_Upload_Text_Editor.jsp";
    document.form1.submit();
    By the way didnt this forum itself give you a big hint on Bold, Itallic & underline ?

  • Any sample code for an Extractor to read in a flat file?

    Hi SAP gurus,
    Are there any sample code for an extractor to read in a flat file?
    Are there any documentation on custom coding an extractor to dump
    information into an info source?
    Are there any documentation on the pit falls and contraints using Solution
    Manager, the BI tools, particularly on the Info Source?
    Thanks,
    Steve

    Thanks Muppet Mark
    I forgot to mention that I had also tried just fileObject.read() as well and it didn't work either.  It was the same run on sentence result I got with the script I showed above.  Seems odd.  However, the \r instead of \n did the trick.  I had some recollection of another line feed character but couldn't remember what it was, so thanks for that.
    Doug

  • I would like to know if there is any free mac clean up app available online?

    I would like to know if there is any free mac clean app available online?

    How to maintain a Mac
    1. Make redundant backups, keeping at least one off site at all times. One backup is not enough. Don’t back up your backups; make them independent of each other. Don’t rely completely on any single backup method, such as Time Machine. If you get an indication that a backup has failed, don't ignore it.
    2. Keep your software up to date. In the Software Update preference pane, you can configure automatic notifications of updates to OS X and other Mac App Store products. Some third-party applications from other sources have a similar feature, if you don’t mind letting them phone home. Otherwise you have to check yourself on a regular basis. This is especially important for complex software that modifies the operating system, such as device drivers. Before installing any Apple update, you must check that all such modifications that you use are compatible.
    3. Don't install crapware, such as “themes,” "haxies," “add-ons,” “toolbars,” “enhancers," “optimizers,” “accelerators,” "boosters," “extenders,” “cleaners,” "doctors," "tune-ups," “defragmenters,” “firewalls,” "barriers," “guardians,” “defenders,” “protectors,” most “plugins,” commercial "virus scanners,” "disk tools," or "utilities." With very few exceptions, this stuff is useless, or worse than useless.
    The more actively promoted the product, the more likely it is to be garbage. The most extreme example is the “MacKeeper” scam.
    As a rule, the only software you should install is that which directly enables you to do the things you use a computer for — such as creating, communicating, and playing — and does not modify the way other software works. Use your computer; don't fuss with it.
    Never install any third-party software unless you know how to uninstall it. Otherwise you may create problems that are very hard to solve.
    The free anti-malware application ClamXav is not crap, and although it’s not routinely needed, it may be useful in some environments, such as a mixed Mac-Windows enterprise network.
    4. Beware of trojans. A trojan is malicious software (“malware”) that the user is duped into installing voluntarily. Such attacks were rare on the Mac platform until sometime in 2011, but are now increasingly common, and increasingly dangerous.
    There is some built-in protection against downloading malware, but you can’t rely on it — the attackers are always at least one day ahead of the defense. You can’t rely on third-party protection either. What you can rely on is common-sense awareness — not paranoia, which only makes you more vulnerable.
    Never install software from an untrustworthy or unknown source. If in doubt, do some research. Any website that prompts you to install a “codec” or “plugin” that comes from the same site, or an unknown site, is untrustworthy. Software with a corporate brand, such as Adobe Flash Player, must be acquired directly from the developer. No intermediary is acceptable, and don’t trust links unless you know how to parse them. Any file that is automatically downloaded from a web page without your having requested it should go straight into the Trash. A website that claims you have a “virus,” or that anything else is wrong with your computer, is rogue.
    In OS X 10.7.5 or later, downloaded applications and Installer packages that have not been digitally signed by a developer registered with Apple are blocked from loading by default. The block can be overridden, but think carefully before you do so.
    Because of recurring security issues in Java, it’s best to disable it in your web browsers, if it’s installed. Few websites have Java content nowadays, so you won’t be missing much. This action is mandatory if you’re running any version of OS X older than 10.6.8 with the latest Java update. Note: Java has nothing to do with JavaScript, despite the similar names. Don't install Java unless you're sure you need it. Most people don't.
    5. Don't fill up your boot volume. A common mistake is adding more and more large files to your home folder until you start to get warnings that you're out of space, which may be followed in short order by a boot failure. This is more prone to happen on the newer Macs that come with an internal SSD instead of the traditional hard drive. The drive can be very nearly full before you become aware of the problem. While it's not true that you should or must keep any particular percentage of space free, you should monitor your storage consumption and make sure you're not in immediate danger of using it up. According to Apple documentation, you need at least 9 GB of free space on the startup volume for normal operation.
    If storage space is running low, use a tool such as the free application OmniDiskSweeper to explore your volume and find out what's taking up the most space. Move rarely-used large files to secondary storage.
    6. Relax, don’t do it. Besides the above, no routine maintenance is necessary or beneficial for the vast majority of users; specifically not “cleaning caches,” “zapping the PRAM,” "resetting the SMC," “rebuilding the directory,” "defragmenting the drive," “running periodic scripts,” “dumping logs,” "deleting temp files," “scanning for viruses,” "purging memory," "checking for bad blocks," "testing the hardware," or “repairing permissions.” Such measures are either completely pointless or are useful only for solving problems, not for prevention.
    The very height of futility is running an expensive third-party application called “Disk Warrior” when nothing is wrong, or even when something is wrong and you have backups, which you must have. Disk Warrior is a data-salvage tool, not a maintenance tool, and you will never need it if your backups are adequate. Don’t waste money on it or anything like it.

  • Any source code analyzing documents about ifolder?

    Hi,guys
    these days we want to do some work on ifolder.So,the first step is to analyze the source code,but I just found : simias: Class List
    do you have any related documents? prefer the overall architecture of ifolder.
    if you have,please share me one copy,thank you very much!

    Try the free Metalogix Content Matrix tool. It is good for up to 25GB.
    http://www.metalogix.com/Products/Content-Matrix/Compare.aspx
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Is there any free app to change the wallpaper automatically with in a particular span of time....if its there it would be great

    is there any free app to change the wallpaper automatically with in a particular span of time....if its there it would be great

    "Is there a tool, or something that I can use to modify the speed of a clip by dragging the edge of the clip, or something of the sort?"
    You can do this in FCP7. Drag with the speed tool.

  • Any free way to encode 5.1 audio track for DVD?

    Besides the limited 3-use SurCode for Dolby Digital that comes with Premiere, is there any free way to encode or convert a 5.1 PCM WAV file to a surround format for DVD?
    Thanks!

    I can't find the post, but I saved it...Here it is:
    Like most of you, I was annoyed to find out I couldn't create AC3 surround sound files with my CS4 software, and also that we got downgraded from Audition to Soundbooth. We all paid a lot for it! I know many people have ranted about that already, so enough said.
    Here is a workflow that gets around that problem without ponying up for the SurCode Plug-in, and/or buying Audition!
    To convert your mixed 5.1 audio, or stereo audio, to the DVD standard AC3 file that Encore wants, download the latest version of Audacity here:http://audacity.sourceforge.net/  It is available for Mac OS X, Microsoft Windows, GNU/Linux, and other operating systems.  If you don't know already, it's free!
    Now, before I start getting flamed, about Audacity, it works great!  The UI is not the most modern, but the quality is top-notch.  I've used it for years and most complaints about it are unjustified.
    You'll need to download the latest version: "Beta: 1.3x - for advanced users."  There will soon, I hope, be an Audacity 2.0 stable release. Until then, use the Beta release for this workflow.
    Note:  I'll focus on Premiere Pro CS4, because that is where I originally troubleshooted this, but something similar will work for the other Adobe products that use sound.
    Workflow:
    Create your mixed 5.1 surround sound audio in Premiere, and output the audio only by going to File > Export > Media, and selecting "Windows Waveform" as the output.  You should only have "Export Audio" checked.  Verify the format in the Summary section. You should see something like: 48000 Hz, 5.1 Surround, 16 bit.  Now under Audio codec, make sure "Uncompressed" is selected.  Click Okay, and Adobe Media Encoder should launch.  Click "Start Queue" and your audio file will be created.  You'll get an interleaved 6 channel wave file.  Not all applications will open it, but Audacity will.
    Note:  When you mix your surround sound in the Audio Mixer, you'll place your little "Puck" where you want the sound to come from.  Picture yourself in the middle of the "dish," if it's a puck, isn't it in a rink, as in hockey rink...ah, but I digress.  Anyway, you'll notice that volume meters in the 5.1 (6 channel) Master section are laid out in the following order: L,R,LS,RS,C,LFE.  Also, if you open a 5.1 audio file in the Source panel, you'll see the same order from top to bottom: L,R,LS,RS,C,LFE.   Soundbooth also does it that way.  Ahh....Adobe...nice try.
    The actual channel order should be L,R,C,LFE,LS,RS.  That's the order that you'll probably have to assign in the "Audio Output Mapping" section in the properties menu to get your channels to play correctly with your surround sound hardware. L,R,C,LFE,LS,RS is also the order that interleaved files use.  So after you create your 5.1 file, and open it in another audio program that displays them in the "proper" order, like Audacity, you'll see your tracks laid out from top to bottom in that order.  I'm not sure why Adobe does it that way, but oh well.
    Surround sound primer:
    The LFE channel is not, despite popular misconception, a subwoofer channel.  Bass from all the channels in a surround sound Amplifier is summed and sent out to the Subwoofer.  The LFE channel is supposed to be used only for very low frequencies, to create extra  ...oomph.  I think that is the technical term.  It is not supposed to be used for bass frequencies from the other tracks.  It is for explosions, dinosaur footsteps, ...etc.
    Audacity will open DVD ".vob" files, and even let you select which stream (usually Language) to open.  As an example, open up a movie with some action in it like Ironman (The movie starts at "VTS_03_1.vob") and look at the LFE channel.  It's the 4th track from the top in Audacity.  You'll see it's silent except at parts where there is thumping AC/DC music at the Intro, or explosions.  It's not used as a subwoofer channel!  
    With that in mind, you may have noticed, unless I'm missing something, that there is no way in the Premiere Mixer to assign an audio track only to the LFE channel.  Sure, you can dial up the "Bass Clef" knob to 0.00 db, and send a mono channel's audio to the LFE channel, but there is no place to put the "Puck" that only outputs to LFE.  There is one for the center channel, but without someplace to put it, your 40 Hz dinosaur footprint "Thump" is going to also be assigned to some of the other channels.  Which channels depends on your "Puck" placement.  This is not correct.  Again, unless I'm missing something, Adobe needs to correct this oversight.  We'll get back to this problem with a solution later, but first let's continue with the AC3 issue.
    At this point you should have your wave file.  If you want to apply any global changes to all 6 channels, you can open it in Adobe Soundbooth and trim the beginning or end, and apply effects to the entire file.  You cannot, however, make changes to individual channels.  Audacity will!  We'll get to that later.
    Encode with Audacity:
    Install the software and go to Edit > Preferences > Libraries, and click on "Download" for the "FFmpeg Library."  This is the library that Audacity will use to create the .AC3 file.  Once installed, the library version should show up next to "FFmpeg Library Version" While the "Audacity Preferences" window is still open, select "Import/Export" and select "Use Custom Mix", this is used to export a 5.1 channel file.  Now you're ready to open your .wave file from Premiere.  Drag and drop it in the Audacity workspace and you should see 6 mono tracks laid out from top to bottom in the following order: L,R,C,LFE,LS,RS.  Audacity will let you edit the individual tracks, unlike Soundbooth, thanks Adobe.  But for now, we'll keep it simple.  Set your "Project Rate" in audacity in the lower-left corner to what you want the AC3 file to be.  For DVD, chose 48000 (Hz).  If you leave it at 44100 (Hz) Encore won't import it.
    Your almost done.  Now let's export the file.  Go to Files > Export... > and select "AC3 Files (FFmpeg)" in the "Save as type:" drop-down.  Click the "Options..." button and set the "Bit Rate:" for your file.  For 5.1 AC3 audio, probably 448.  Now enter a file name and click "Save."  This will open the "Advanced Mixing Options" window.  This allows you to re-map the tracks to a different channel order.  It should be correct, and it should show "Output Channels:" set to 6.  Press "OK" and you're done.
    Presto, you have a 5.1 channel AC3 file.  Use that in Encore, or whatever DVD creation program you use, and when you play your DVD you'll have full 5.1 audio coming out your surround sound Amplifier.  That is if you have one.
    Test your file:
    If you want to test your file, you can do a couple of things.  Since Soundbooth and Adobe  Bridge won't even open AC3 files, and Encore will open but only play the Left and Right channels in the preview, you'll have to either import the file into Premiere, or use another media player.
    If you got Premiere to play your surround properly, then you can drag and drop the file into the "Project" panel and preview it from there. You will hear all 6 channels in the correct speakers, but I did notice that the quality is not very good.  Maybe Premiere doesn't decode AC3 all that well.  I heard some crackle that isn't in the file.  How do I know it isn't just a bad encoding job by Audacity?  Because I played the file with the VLC media player, and Cyberlink PowerDVD on the same computer, and also on a DVD in my home theater system with no artifacts.  Maybe Premiere doesn't decode AC3 files well.
    The VLC player, will play almost any file in the known universe, and at least on my computer, it automatically played the AC3 surround file, created by Audacity, with all the channels mapped correctly.  That's right, full surround out my speakers with only default settings.  It's a great player.  Get it for free here: http://www.videolan.org/
    Test with Encore:
    So far so good. Now open Encore, drop the AC3 file in an empty project, throw it on a Timeline and build the project without Video,  It will autoplay without a menu this way. If you set the End-Action to the same AC3 file it will repeat continuously.  Either burn this to DVD-RW and test it in your DVD player, or better yet, Build the project to a DVD Image instead, and mount it in a virtual DVD   Drive with a program like "Virtual CloneDrive."
    If you don't know what that is, or how to do it, it is very simple.  Go to:http://www.slysoft.com/en/ and download "Virtual Clonedrive."  It is free.  It tricks your operating system into thinking you have another physical DVD drive.  In fact, it can create up to 8 virtual drives.  Now you don't have to waste time burning, and erasing DVD's every time you make a change to a project.  You can build your project as a DVD Image from Encore, save the .iso file to your Desktop and "mount" it (load it) in Virtual Clonedrive.  You're computer will now think you loaded a DVD into a physical drive, and launch whatever DVD player you have installed.  Mine launches "Cyberlink PowerDVD" which plays the AC3 audio-only DVD in full surround sound on my computer.
    Building and testing projects this way will save you endless hours.  If you need to make a quick change, just "Unmount" the .iso in Virtual Clonedrive, rebuild your project to the same filename, and "Mount" it again.  Instant testing!
    Now, as promised, back to that LFE Channel problem with Premiere that I mentioned:
    Audacity will let you modify the individual channels in your interleaved 6-Channel file. So don't put anything in that channel in your Premiere mixer. Leave the "Bass Clef" knobs at full CCW position ( -00 db ).  The bass from the other channels will go to your subwoofer automatically in your Amplifier.
    Now if you have some low frequency effects files, open them in Audacity.  You can open multiple instances of Audacity at the same time by going to "File > New."  Then, copy and paste them into the LFE Track at the correct point.
    Audacity newbie Hint:  Audacity doesn't yet have a "Mix-Paste" function, so to avoid altering the track length as you paste in your clips, do the following: Select the LFE track by clicking on it's info area.  The info area should say something like "Mono, 48000Hz"  Then press "Delete," That will remove everything from the track.  Now copy and paste your clips into the track by clicking once with the "Selection Tool" where you want the clip to start, and selecting "Edit > Paste."  If you need to fine tune the position of the pasted clip, use the "Time Shift Tool" to move it left or right.  If you work from left to right, then you won't push clips over when you paste new ones in.
    There is another way to do this by opening up new tracks, using the "Mix and Render" function, and re-ordering the tracks to maintain the L,R,C,LFE,LS,RS channel order. But that's for advanced users.

  • Any Java API for dumping database?

    As far as I know, the normal way to dump a database is to execute some command on the console.
    Is there any Java API for dumping a database, so that the operation can be wrapped in the code?
    The database system that I'm using is MySQL. Please help. Thanks!

    By "dumping a database" I mean exporting data in the database into a text file, as a backup, that can be used when restoring the database. For example, in MySQL, I can run "mysqldump" on the command line to dump the database into a file.
    So far I still have no idea how to do this using JDBC or any other Java API. Please help!

  • Any Sample code for recording+playing streaming live video?

    Hi all,
    I'm new to FMS3,
    I wanna create a page for webcam live recording and playing,
    is there any sample code for reference (i can only found the code
    for live recording but do not have live record+play)?
    Many thanks.
    I have installed FMS3.0 and FME2.0 on my machine, so is it
    capable to do so?
    Many thanks.

    Thanks for your reply, but I have another question:
    My live file (test.flv) is recorded under this path:
    C:\xxxx\FMS3\applications\path\streams\_definst_\
    But seems FMS3 can only play video under this path:
    C:\xxxx\FMS3\applications\vod\media\
    My only success is on this source path rtmp://ip/vod/test in
    the component FLVPlayBack.
    So is it happen to all free version of FMS3 or I have to type
    sth more?
    Many thanks.

  • Tracing speciific transactions (bus code core dump)

    hi
    When i am running payroll(calculation) for specific records or some employee i am getting error buse code core dumped.I am using oracle 8.1.7 and forms 4.5.I am not getting any erorrs in logs or application related.The application exiting with these error.How can i track these event.How to enable session tracing or set events.How can i trace in database level not in application level becasue this core is generating specific employee not for all.
    with regards
    ramya

    I completed testing all the code.
    First I verified that my makefile and
    runtime environment were both 1.1.8.
    DOMSample - ok
    DOMNamespace - failed
    SAXSample - failed
    SAXNamespace - failed
    Tokenize - ok
    So - what where is it failing
    I found that the parse method was failing
    ==parser.parse(url);
    The URL was not the problem. The only
    other differences in the example code is
    that these flags are set -- When you add them
    to DOMNamespace - THE EXAMPLE WORKS!
    // Set various parser options: validation on,
    // warnings shown, error stream set to stderr.
    parser.setErrorStream(System.err);
    parser.setValidationMode(true);
    parser.showWarnings(true);

  • Any information of the migration tool from RSP?

    Adobe has promissed a tool for converting the setting in RSP to as close as possible look in LR. This would be an excellent start to my migration to LR.
    Any info on how this tool is going to work?
    Will it be availble next week together with LR v1.0?
    Sverre

    @Lee Jay
    > You're expecting a lot given what you/we paid for this tool, or the program for which it is used (LR).
    But that's not the point. It doesn't matter how much lightroom costs.
    We have not asked adobe to buy pixmantec what lead to the discontinuation of RSP. The conversion-tool along with the free LR license was obviously promised to keep the RSP community calm.
    > I've had very, very expensive software (>$40,000) delayed by more than a year from original planned release date.
    Well - that's bad project management as well. Let me assure you, I'm resposible for it-projects much larger than what you mentioned. And high on the list of my goals is not to annoy my customers. This goes along with transparent planning and sticking to promises, schedules and budget. And if - for what reason ever - I have to postpone a milestone transparent information politics is most important and is the only way thay might lead to understanding on the customer side.
    But maybe that's just me.

  • PM's regarding free codes

    I recently received a PM through this forum's PM system offering me free codes or some such scam, but I can't see any simple way to report the mesage, or the user... I know it's somewhat frowned upon to name and shame so I'm avoiding that for now...

    A report fuction is certainly needed for private messaging just pop in the forum feedback topic and mention it.http://community.eu.playstation.com/t5/PlayStation-Off-Topic/Forum-Feedback-amp-Community-Suggestions/td-p/23297524 The more that request this feature the better,it may get implemented in the forum quicker.

  • Any free FLAC to Apple Lossless encoder for windows 7 ?

    Any free FLAC to Apple Lossless encoder for windows 7 ?

    frago wrote:
    Any free FLAC to Apple Lossless encoder for windows 7 ?
    Yes. However I personally find it easier and more reliable on a Mac.
    For Windows considers the following, Foobar 2000 with iTunesEncode, I believe the free version of dbPowerAmp can also do this with a plugin. Other than that Super see http://www.erightsoft.com/SUPER.html can do this and many other conversions but is not aimed at handling music files and as such is likely to not preserve the tags.
    The best tool is XLD for Mac.

Maybe you are looking for

  • Recovering From Hard Drive Crash

    My iMac's drive recently crashed. Fortunately, I had a pretty good back up plan in place. I have all of the "Home File" data on the back up including all of the iTunes data. I have re-added all of the music and it appears and plays in iTunes on the n

  • Set Date and Time Automatically...doesn't

    We've noticed that the setting to automatically synchronize date and time to Apple's time server doesn't work if the system preference is 'locked' In other words, if the user that's logged in currently, isn't an admin user, then the machine doesn't s

  • NetBean Swing or Swing without NetBean

    In previous posts I have mentioned about me using BlueJ. Ive tried NetBeans IDE and find it better than BlueJ so I am using NetBeans now. One area of NetBeans uses Swing GUI components which allows you to build GUIs and creates the source code for yo

  • More than one selects in a function

    Hi All, Is it that there can not be more than one selects in a function?What is the work around for this thing? Regards, Amit.

  • Make the address field in delivery address tab as mandatory

    Hi, I want to make the address field in delivery address tab as mandatory for the combination PO type NB and accouting type F. The customer exit EXIT_SAPLMMDA_001 is not getting triggered for this. So could you please help me with this. I am trying t