Souce Code Management

Hello -
We user Oracle Tools and technologies for development. Oracle Forms, Reports, SQL Files (DB Objects), Discoverer, Portal, JDeveloper etc.
We use very old version (10 years ago) of MKS source Code management tool and have not upgraded to latest versions.
Wondering what is out there in Oracle world for reasonable cost. I do have a huge list from the next
http://en.wikipedia.org/wiki/List_of_revision_control_software but wondering what should we go with.
Any suggestions?

We use cvs (concurrent version system) easy to handle and works well. Integration to Eclipse available...

Similar Messages

  • Source Code Management

    Hi
    I am busy designing a new Java environment for our company. We are migrating from Forms to JEE. I would like to know what would be the best practice (if one exists) wrt source code management. Currently I am going with the following,
    1. All original source code saved on development application server (Linux).
    2. Use SVN to manage source from development application server.
    I am not totally convinced that this is the correct method of managing source code.
    What are my options?
    Should the source be placed on a seperate file server independant of my application server?
    Kind regards.
    Leon.

    Development servers is used to be quite unstable sometimes so I would prefer to store the SVN repository on some kind of file server, where a file backup procedure is already implemented. If you're using some kind of cruise control or automatic testing you could checkout the source code to the development server to run it from here or to build distributions.
    I'm familiar with both CVS and SVN and think that SVN is serving us best. We're just using a file based repository, on a network drive, protected by the normal file system permissions mechanism. I'm almost always using Tortoise SVN as client but the SVN client in JDeveloper is just fine, but I think the Tortoise SVN plugin in the explorer is just better.

  • NAC and BBSM access code management

    Hello,
    An organization has a network infrastructure in which a BBSM generates access codes for limited authorized time periods to allow Internet web access to wireless guests. If a guest exhausts the period he must request a new access code.
    Now, if a Clean Access Server is deployed for admission control, a possible option could be to bypass posture assessment for those guest users and leave the the BBSM operation unchanged: with access code management for control and accountability purposes.
    My doubt is if i could deploy some access code management capabilities in the NAC appliance, in order to move to it the access code mgmt functionality from the BBSM.
    I would really appreciate any comment about that.
    Thanks in advance.

    Hi,
    Check table 3 of the link below,
    http://www.cisco.com/en/US/products/sw/netmgtsw/ps533/prod_eol_notice0900aecd805aeb23.html
    Scrap that BBSM. You should be able to provide guest access w/ NAC. checkout this link
    http://www.cisco.com/application/pdf/en/us/guest/products/ps6128/c1031/cdccont_0900aecd805b8b5c.pdf
    Regards,
    arburt

  • TO make souce code invisible

    hai
    i am using jsp.
    In jsp i have already block the right click of IE.
    When i select view->Source of IE ,then i can view the souce code of that page.
    Now i want to block the code of jsp in IE.(the code only invisible)
    How can i do it.
    If any one know please tell.
    thanks

    Yeah, it shows <invisible> tag until you scroll down about 10 lines and see that they just put <invisible> at the top followed by a bunch of blank lines.
    Like I said, impossible.
    You see, the thing is, your browser is just a thing that renders HTML. It kind of needs to have the HTML in order to render it. I can always get the HTML code by a simple telnet session because of this fact. Just looking at the other 9 ways they list to make the source code impossible to steal would tip you off that this is a joke.
    At any rate, this question has nothing to do with JDev.
    happy coding.

  • Source code managements problems

    Hi all.
    I work for a coperation that mandates the use of a particular source code management software, MKS. They are moving to another solution soon, so it doesn't make sense to write an extension for it.
    My objective is to use MKS to manage source changes as a standalone tool, while using JDeveloper to modify and debug application code.
    I also have a requirement to put all runtime code into MKS as well, so that a complete runtime build can be performed from within any project sandbox and deployed (No 3rd party installations required). This would include jdeveloper jar files and compiled objects from other MKS / Jdeveloper projects.
    So far, I've discovered that the JDeveloper project libraries are referenced by full pathname, including drive letter. This means that each develeper sandbox directory must have the same root path and drive letter or each projects libraries must be maintained seperately. Neither I think is very pretty. Is there a way to use relative pathnames?
    I'm also wondering how many other problems I may encounter as I proceed. What is the intended model for supporting concurrent development using standalone source code management?
    Any ideas or suggestions would be greatly appreciated.
    Thanks in advance
    Keith.

    Yes.
    The issue comes into play when developer A may be developing on c:\jdev and developer B may be developing on d:\dev\3m\jdev. I would rather not have to mandate directory structure standards for the parent directories.

  • Flex 3 How to recording the voice to the local file.can u help sample souce code

    How to recording the voice to the local file.can u help sample souce code

    What? the link is not opening? Check once properly man.  If you need code here it is
    import flash.system.Security;
    import flash.media.Microphone;
    import flash.events.ActivityEvent;
    import flash.events.SampleDataEvent;
    import flash.events.StatusEvent;
    import flash.utils.ByteArray;
    import flash.media.Sound;
    import flash.events.MouseEvent;
    import flash.media.SoundChannel;
    import flash.events.Event;
    import org.bytearray.micrecorder.encoder.WaveEncoder;
    import flash.net.FileReference;
    var mic:Microphone;
    var soundBytes:ByteArray;
    var recBytes:ByteArray= new ByteArray();
    var sc:SoundChannel;
    var sound:Sound;
    recordBtn.addEventListener(MouseEvent.CLICK, getMic);
    stopBtn.addEventListener(MouseEvent.CLICK, stopRecording);
    playBtn.addEventListener(MouseEvent.CLICK, plays);
    saveBtn.addEventListener(MouseEvent.CLICK, saveAudio);
    function getMic(e:MouseEvent)
    soundBytes= new ByteArray();
    //returns an array that total mics available
    var totalMics:Array = Microphone.names;
    //mic is a singleton class gets microphone to record sound
    mic = Microphone.getMicrophone();
    //Sets the minimum input level that should be considered
    mic.setSilenceLevel(0);
    mic.rate = 44;
    //to capture microphone audio listen for this event
    mic.addEventListener(SampleDataEvent.SAMPLE_DATA, recordAudio);
    function recordAudio(e:SampleDataEvent)
    //capture the byte array data available with the event
    while (e.data.bytesAvailable)
    var soundData:Number = e.data.readFloat();
    soundBytes.writeFloat(soundData);
    function stopRecording(e:MouseEvent)
    mic.removeEventListener(SampleDataEvent.SAMPLE_DATA, recordAudio);
    //set the bytearray position to zero for playing from starting
    soundBytes.position = 0;
    function plays(e:MouseEvent)
    //intatiazle sound instance
    sound= new Sound();
    soundBytes.position = 0;
    //listen for the event when runtime requests new audio data.
    sound.addEventListener(SampleDataEvent.SAMPLE_DATA, playAudio);
    //play the sound with sound channel
    sc = sound.play();
    sc.addEventListener(Event.SOUND_COMPLETE, soundComplete);
    function playAudio(e:SampleDataEvent)
    //if audio bytes is greate than 4 read the recorded byte array data and write it into the sound
    for (var i=0; i<8192; i++)
    if (soundBytes.bytesAvailable > 4)
    var sample:Number = soundBytes.readFloat();
    e.data.writeFloat(sample);
    e.data.writeFloat(sample);
    function soundComplete(e:Event)
    sound.removeEventListener(SampleDataEvent.SAMPLE_DATA, playAudio);
    sc.stop();
    function saveAudio(e:MouseEvent)
    soundBytes.position = 0;
    //waveencoder class used to encodes bytearray data properly used to play properly after saving
    //you can get this api from below link
    //http://code.google.com/p/micrecorder/downloads/detail?name=MicRecorder%201.2.zip&can=2&q=
    var encod:WaveEncoder= new WaveEncoder();
    var byte:ByteArray = encod.encode(soundBytes,2);
    var file:FileReference= new FileReference();
    file.save(byte, “test.wav”);

  • Software for code management

    I wanted to know if there is any software for management of code from sun ??
    .. something like Visual Source Safe ...
    If you know any others used popularly please let me know.. I am looking for something easy to use for windows users...

    Actually everyone will be using it... so i waslooking
    for something easy for windows users to use.
    CVS is more command based.. and I dont see Visual
    Source Safe going anywhere... They dont have Visual
    Source Safe.NET also..In my opinion Subversion and using the tortoiseSVN
    client for win32 (http://tortoisesvn.tigris.org/) is
    so infinitely better than source safe, it's laughable.
    And its free!Unfortunately I'm stuck with VSS at my company, but thanks for the heads up on Subversion, dmbdmb. I didn't know about it.

  • Opensource tool/software for code management

    Hello everyone,
    I am looking for an opensource software for managing code .. Does anyone know any ?
    I have never personally used CVS but its version control? Is it like Visual Source Safe?
    If you have used anything .. can you tell me which ones u used?

    I am looking for something that is web based... when I
    looked at CVS... I am not sure if its web based..That term is too generic.
    Can you use it via a network (and via the internet) - then yes.
    Can you normally use it from a browser - no. But then I would suppose that before you can set up CVS (or any version control system for use via a browser) you must first have a web server. Do you have a web server?

  • Code Management in JSP

    Hi All,
    I am trying to find, if it is possible to maintain code belonging to different modules in different folders. I used iPlanet 6.0.
    Currently, in my application all my jsp's are in a "jsp" folder and all my classes are in "/jsp/Web-inf/classes" folder making it difficult to maintain.
    What i want to achieve is to place all the common code in one jsp folder and all modules specific jsp's in folder named module1. Also corresponding Java in same folder. So, all jsp for module1 would be in a folder named "module1" and all the corresponding specific classes either a sub directory in "module1" or sub-directory under "/jsp/web-inf/classes".
    Is this possible? What would be the changes I need to make in my classpath or iPlanet settings. Thanks for all your help.
    RM

    classes under the classes directory in subdirectories would be in that package, so if you don't know about class packages, you had best look thru the Java tutorials. For JSPs, you just create the folder and put the JSPs in it. When you link to the page, or include or forward to it, you have to have the folder name in front of the JSP file name... "page.jsp" --> "module1/page.jsp"

  • Flex code management

    Well I have a generic question with the following scenario:
    I have build a custom component (as based) and placed all the
    related files under components directory under root directory of my
    project.
    There is another directory called includes (again under root
    ) which is having the main project code. I have decalred a globally
    accessible xml type variable in the main.mxml file (my main file of
    the app). I can very well access this xml variable with in the
    includes folder.
    I want to access this xml variable in the components folder's
    files too.
    What should be the way? I have embedded the custom component
    in the main.mxml so i was assuming that this xml variable will be
    accessible in the custom component code.. but it is not..

    "vikceo" <[email protected]> wrote in
    message
    news:ga3osc$d8h$[email protected]..
    > Thankx VipersG and Greg ..
    >
    > any difference between the two approaches? looks like
    both will work...
    > but any pros cons of using Application. Vs this. ?
    http://www.adobe.com/devnet/flex/articles/graduating_pt1.html

  • Where to find souce code - or make it available in maven central

    Hi,
    the [url http://www.oracle.com/technetwork/database/berkeleydb/overview/index-093405.html]Oracle Berkeley DB Java Edition page says it's open source. I looked some time now for sources (some svn, git, whatever repository) but couldn't find anything.
    If there's nothing publicly available, would it allowed to put bdb in some github project? Or would it be possible to push bdb-je to maven central?
    The background why I'm asking: I created an open source project that uses bdb-je as persistence layer: https://github.com/magro/persistent-queue/
    I want to push this to maven central (via sonatype) but they don't allow repositories in the pom.xml. Therefore bdb-je must be available in maven central itself.
    Sonatype allows to upload 3rd party artifacts to maven central (see [url |https://docs.sonatype.org/display/Repository/Uploading+3rd-party+Artifacts+to+Maven+Central]Uploading 3rd-party Artifacts to Maven Central), but for this the pom.xml must contain an <scm> section with at least <url> (viewing URL) and <connection> (read-only tooling connection) specified.
    Can anybody help with this?
    Thx && cheers,
    Martin

    The source code is part of the download package. We don't expose access to our source control system, and this is something we can't change.
    We have a maven repository for the product. See the links to the maven POM example on the download page.
    I don't know anything about putting JE into maven central, perhaps others outside Oracle can help with that.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How can I get the souce code of a labview vi .

    Hi
    How can I get the source code of a labviw vi.
    Mal

    The LabVIEW block diagram is the source code.
    It is compiled through the LabVIEW environment into a format suitable for running.
    It does not go through an interim conversion to another language before it gets compiled, so
    there is no other source code. The actual vi breaks down into 4 parts :
    Front panel
    Block diagram
    Code (diagram compiled to machine code)
    Data (control and indicator values, default data, diagram constant data, and so on)
    Thanks
    Sacha Emery
    National Instruments (UK)
    // it takes almost no time to rate an answer

  • I can't find the appx or xap package from windows app studio souce code in visual studio 2015

    I created a project from Windows App Studio then downloaded the source code and modify it. I set all configuration to Release Any CPU. But after rebuilding solutions several times there are no appx or xap package files found. How to create appx package
    from windows app studio source code using visual studio 2015?

    For that right click on the solution folder in Visual Studio, and you would find an option to create App Packages. 
    Hope this might help! 
    Create an app package
    Happy Coding!

  • Help me stop Safari showing souce code for all pages

    Safari has been doing this for all pages including apple.com
    The only change to the system was the new combo update. Now I'm using Firefox. Can someone give me a reason to go back to Safari?

    I better add that this also affects any of the help windows for other products. Many times I just get a long line of the different help topics without formatting. It is very annoying that i cannot read the Hlep menus properly. Can anyone help me please?

  • Source control management

    Hello,
    I need some free souce code management tool where i can see the repositories and can create new repositories. I got one but when i am going here step by step, it is not working for me. Please suggest me some other good one for windows authentication.
    http://webcache.googleusercontent.com/search?q=cache:http://bonobogitserver.com/install/
    Thanks
    chirag

    Hi,
    Are you using Visual Studio? For the Visual Studio issue please ask in the Visual Studio Forum:
    Visual Studio Forum:
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio
    Thanks for your understanding and support.
    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.

Maybe you are looking for

  • ITunes won't open... says the file 'iTunes Library.itl' cannot be read because it was created by a newer version of iTunes.

    Every time i click the shortcut or the app in the start menu it comes up with that message :/ i have tried replacing the shortcut and opening one of my songs. I just updated iTunes to the latest version and I don't know what to do? Thanks for any tip

  • ITunes and QuickTime won't work.

    My PC is on Windows 7 and will not run Apple software. When I try to open QuickTime I get these error messages... This is becoming very anoying and I can't figure out how to fix it.

  • Two default values in a form

    Two needs: 1. I need to insert the userid as a default value in a form to know who made the entry. 2. Second, on the same form I want to insert the date with seconds precision..mm-dd-yy hh:mi:ss.. Can I just use sysdate and query my date format in se

  • Mediator Error Handling in SOA11g

    Hi All, I ahve mediator as composite entry point and i am inovking another service from Mediator, If the webservice is donw it is throwing an remote fault and tha should be propogated to Mediator and i wanted to handle all the fault using Fault polic

  • Deleting Clamxav-scan.log file

    I have uninstalled the clamx antivirus software but It still does this logging thing on Firefox every morning at 4am. It's really annoying. So I found the file that actually does the logging in user/Library/Logs/clamXav-scan.log. So is it safe for me