Right Source Control System for Java

Could anyone tell me which Source Control System (like Visual SourceSafe for .NET) is perfect for Java Project?

common misconception #1: sourcesafe is for microsoft languages only. it's not, anything can go in it
common misconception #2: sourcesafe is worth using. it isn't. it's rubbish, and they have the cheek to charge real money for it
my money is on [ur=http://subversion.tigris.org]subversion, it's open source and pretty useful. others are available, this is just my opinion

Similar Messages

  • RoboHelp Server 8 - compatible with "source control system" ?

    Greetings,
    Using RoboHelp Server 8, is it possible to add in a "source control system," such as Subversion or Bazaar, to track updates and versions? Is there another "source control system" alternative?
    Also, is there a hosted RoboHelp Server 8 option, where Adobe provides, sets up and maintains the server hosting the RH?

    Hi again
    Well, sort of. Note that basic WebHelp and FlashHelp are capable of being merged. This allows a search to occur across the merged set. As I said earlier, merging can be automatically enabled or disabled in the RoboHelp Server. So theoretically, you could turn off merging at the server. Then you could publish ten projects. Perhaps you want two of those projects to be isolated islands where search only occurs in them individually. But for the other eight, you want a search to be performed across the eight projects. You could create a standard merge in this case and publish to the RoboHelp Server and have a search work across the eight merged files. You could also open each of the eight individually and search only that file set.
    At least that's my understanding of how it works. Perhaps fellow Adobe Community Professional and fellow Adobe Certified Instructor John Daigle will pop in and offer some clarification if I've muddied the waters.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Hi i wrote a java program for scanning a system for java.exe 's

    hi ,
    i wrote a program which scans the system for java.exe 's and then it captures them in a linked list and then i
    iterate through it for "\\Java\\jdk1.5.0_08\\bin\\java.exe and my aim is to return true in case the linked list contains the string "\\Java\\jdk1.5.0_08\\bin\\java.exe" and stop scanning the system.
    If the linked list does not contain "Java\\jdk1.5.0_08\\bin\\java.exe" it should return false.
    But my problem is the program is continuing to scan the system even if the linked list has "\\Java\\jdk1.5.0_08\\bin\\java.exe"
    Any sort of help is appreciated.
    The code is as follows:
    package com.installanywhere.exper;
    import com.zerog.ia.api.pub.CustomCodeRule;
    import com.installanywhere.exper.SearchTool;
    * @author
    public class eFileTool extends CustomCodeRule {
         /* (non-Javadoc)
         * @see com.zerog.ia.api.pub.CustomCodeRule#evaluateRule()
         @Override
         public boolean evaluateRule() {
              // TODO Auto-generated method stub
              SearchTool searchtool=new SearchTool();
              boolean valueTocheckfor=false;
              valueTocheckfor=searchtool.find();
              String someothervalue=Boolean.toString(valueTocheckfor);
              if(someothervalue.equalsIgnoreCase("true")){
                   return true;
                   //System.exit()
              else if(someothervalue.equalsIgnoreCase("false")){
                   try {
                        Thread.sleep(5000);
                   } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
              System.out.println(valueTocheckfor+"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
              return valueTocheckfor;
    The code of search tool is
    package com.installanywhere.exper;
    import java.io.*;
    import java.util.*;
    public class SearchTool
         * @param args
    static     boolean valuesToReturn=false;
    static     boolean anothervalueToRefer=false;
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              SearchTool           t = new SearchTool();
              System.out.println("xxxxxxxxxxxxxxxxxxxx");
              boolean someArgument=t.find();
              System.out.println(someArgument+"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii"+"");
                   public boolean find()
                        System.out.println("2222222222222222222");
                   boolean someThing=searchcomp("java.exe");
                   System.out.println(someThing+"inside the othere one");
                   return someThing;
              public boolean searchcomp(String file)
                   System.out.println("3333333333333333333333");
                   File[] drives=File.listRoots();
                   boolean valueIdentified=false;
                   for (int ctr=0;ctr<(drives.length-1);ctr++)
                        valueIdentified=search(drives[ctr],file);
                        System.out.println("4444444444444444444");
                   System.out.println(valueIdentified+"something i need to accomplish");
                   return valueIdentified;
                   public boolean search(File dir,String file)
                   File[] directories=dir.listFiles();
              System.out.println("55555555555555555555555");
                   if (directories == null)
                        System.out.println("666666666666666666666666");
                   return false;
                   for(int ctr=0;ctr<directories.length;ctr++)
                        if(directories[ctr].isDirectory())
                             System.out.println("77777777777777777777777777");
                             valuesToReturn=search(directories[ctr],file);
                             System.out.println(valuesToReturn+"india is great");
                        else
                             if(directories[ctr].getName().equals(file))
                                  String path = directories[ctr].getAbsolutePath().toString();
                                  System.out.println(path);
                                  List someList=new LinkedList();
                                  anothervalueToRefer=allPaths(path);     
                                  System.out.println(anothervalueToRefer+"god damn it");
                                       //System.out.println(anothervalueToRefer+"let me seeeeeeeeeeeeeeeeeee");                                        
                                  return anothervalueToRefer;
                   return valuesToReturn;
                   public boolean allPaths(String allPath)
                        List l=new LinkedList();
                        String somepath=allPath;
                        l.add(somepath);
                        //return l;
    /*if(l.contains("C:\\Program Files\\Java\\jdk1.5.0_08\\bin\\java.exe")){
                             System.out.println("yepeeeeeeeeeeeeee");
                             //System.exit(0);
    else{
         System.out.println(" the face");
                        ListIterator li = l.listIterator();
                        System.out.println("inside the method of all paths");
                        if(li.hasNext())
                             if(li.next().toString().contains("\\Java\\jdk1.5.0_08\\bin\\java.exe"))
                             System.err.println(somepath+"this is the path i wanted to resolve correctly");                         
                             return true;
                             else{
                                  System.out.println("trueeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee");
                                       return false;
                        else {
                                  return false;
         }

    A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.<br>
    You need to register at the MozillaZine forum site in order to post at that forum.

  • Change Business System for Java Proxy Client

    I have created Web AS Java business system for Java proxy.
    Is it possbile to send message from client Java Proxy as another business system (Third party)?
    For example to specify this system
    MessageSpecifier messageSpecifier = proxy.$messageSpecifier();
    messageSpecifier.setSenderService("MY_BUSINESS_SYSTEM");
    proxy.$messageSpecifier(messageSpecifier);

    Yes, it is.
    That's the way to do it.
    Stefan

  • How to integrate ADF with ADE Source control system?

    We are going to set up a team with ADF developers and we're totally new to ADF environment. The developers will be working on individual and common Applications/ projects. We're planning to use ADE as our source control system. How do we set up Jdev/ADF environment so that we can use Oracle ADE source control system to sync up all the changes by the developers. any ideas and pointers to the documents are appreciated.
    Regards,
    Surya

    Shay, I heard from many oracle employees saying that ADE works great with JDev. Why not outside of oracle like svn? As you know there are tons of complaints about svn & cvs. Thanks.

  • Business system for java proxy

    i use xi system as java AS for java proxy. in receiver communication channel i use URL ADDRESS or HTTP destination?????

    please help me its showing following error
    <Trace level="2" type="T">Switch back to normalized party (HTTP response)</Trace>
      <Trace level="1" type="T">Sender scheme external =</Trace>
      <Trace level="1" type="T">Sender agency external =</Trace>
      <Trace level="1" type="T">Sender party external =</Trace>
      <Trace level="1" type="T">Sender party normalized =</Trace>
      <Trace level="1" type="T">Party normalization: receiver</Trace>
      <Trace level="1" type="T">Receiver scheme external =</Trace>
      <Trace level="1" type="T">Receiver agency external =</Trace>
      <Trace level="1" type="T">Receiver party external =</Trace>
      <Trace level="1" type="T">Receiver party normalized =</Trace>
      <Trace level="2" type="T">Undo header mapping (HTTP response)</Trace>
      <Trace level="1" type="T">Sender: Header before undo of mapping</Trace>
      <Trace level="1" type="T">Party =</Trace>
      <Trace level="1" type="T">Agency =</Trace>
      <Trace level="1" type="T">Scheme =</Trace>
      <Trace level="1" type="T">Service = BS_Debashish</Trace>
      <Trace level="1" type="T">Receiver: Header before undo of mapping</Trace>
      <Trace level="1" type="T">Party =</Trace>
      <Trace level="1" type="T">Agency =</Trace>
      <Trace level="1" type="T">Scheme =</Trace>
      <Trace level="1" type="T">Service = XIT4Java</Trace>
      <Trace level="2" type="T">Sender: Header after undo of mapping</Trace>
      <Trace level="2" type="T">Party =</Trace>
      <Trace level="2" type="T">Agency =</Trace>
      <Trace level="2" type="T">Scheme =</Trace>
      <Trace level="2" type="T">Service = BS_Debashish</Trace>
      <Trace level="2" type="T">Receiver: Header before undo of mapping</Trace>
      <Trace level="2" type="T">Party =</Trace>
      <Trace level="2" type="T">Agency =</Trace>
      <Trace level="2" type="T">Scheme =</Trace>
      <Trace level="2" type="T">Service = XIT4Java</Trace>
      </Trace>
      </Trace>
    - <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_LOG_TO_PERSIST">
      <Trace level="3" type="T">Persisting message after plsrv call</Trace>
      <Trace level="3" type="T">Message-Version = 007</Trace>
      <Trace level="3" type="T">Message version 007</Trace>
      <Trace level="3" type="T">Pipeline CENTRAL</Trace>
      </Trace>
      <Trace level="3" type="System_Error">Error exception return from pipeline processing!</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    - <!--  ************************************
      -->
      <Trace level="3" type="T">Persisting message Status = 014</Trace>
      <Trace level="3" type="T">Message version 008</Trace>
      <Trace level="3" type="T">Pipeline CENTRAL</Trace>
      </SAP:Trace>

  • First order control system for proportion​al valves

    I am working on a proportional valve control program. We have four gas lines and it is desired to send four different gases through a combustion chamber sequentially. The close time for each valve is determined by the pressure measurement inside the combustion chamber. For instance, firstly, we let the nitrogen gas flows to the chamber, and the pressure inside the of it reaches 5 bars, we closed the nitrogen valve, and open the argon gas valve, and hold it opened until the pressure is reached at 15 bars inside the chamber and so on.
    I was thinking on utilizing PID for control of these valves, however, one author from my institute said that you can not do this with a PID program, you can do that with a  first order control system. Because in the system,  it is not allowable to gases exceed their set points (set pressure values). PID controls the system with osilations around set point and after it provides the set value, but in this case, we are not allowed to exceed the set point (we may reach the set point slowly and asymptotically, but never exceed it).
    I have not background on controlling hence I need your help. Could I do that with Labview? Is there a first order system control module in Control & Simulation Toolkit? And also where can I find examples, tutorials, etc. -if there are- about first order system controlling? Thanks in advance.
    Egemen

    what you are trying to do can be done with PID, but you would need to tune it to avoid overshot. But, most importantly, the use of the closed-loop PID will guarantee that your system will follow the setpoint, which can be a ramp going from the 0 to 100 % of the valve. The ramp on setpoint is a typical control technique to avoid overshoot of the system.
    Now, if you look in the PID palette under Control and Simulation, you will see the function called "Lead-Lag". This function is a 'first order' system and you can define a pole and a zero for your system. If your objective is just make the change smooth, you can make the Lead-Lag to work as a "Lag" (make the lead zero) and apply to your system. here is an example:
    C:\Program Files (x86)\National Instruments\LabVIEW 2014\examples\control\PID\Simulation - Lead-Lag.vi
    If you need something more complicated than Lead-Lag, than I would you advice to use the LabVIEW Control Design and Simulation Module. There you can really develop more advanced controllers, like higher order filters or Model Predictive Control. But this also requires you to have a better knowledge of control theory...
    Barp - Control and Simulation Group - LabVIEW R&D - National Instruments

  • New 5th generation headphones keep turning on and off my music. Which wire do I cut to disconnect the control system for the right earbud

    The wires are probably loose in the rubber and the control panel on the right ear bud keep turning on and off my music, summoning s voice, and turning up and down my music. It's really obnoxious and I would like to know which wire to cut to disconnect the control panel. Thanks.

    I had exactly the same issue when connecting my new BLACK 60mb Video iPod to connect to my PC via USB 2.0.
    The iPod kept Crashing & Freezing also iTunes become unstable and very slow, it kept saying "unable to write to disk" every 5 minutes and I had to disconnect & re-connect for the same message to show again in 5 mins later, it eventually told me not to disconnect the iPod. However, after 30 mins i just did it.
    I then opened iPod updater and re-attached my ipod with USB 1.
    This seemed to take an age to recognise (5 mins +) but bear with it. Once it was connected I reinstated to factory settings, once I did this it automatically told me to update my software to 1.1.1.
    When I then opened iTunes it again took 5 mins to connect, but it then started to transfer my music, which took over 6 hours to do 22MB.
    Having said that I have had no "can not write messages"
    Today I have conencted (again taking 5 mins to connect) but it has transfered over 1000 photos in under 4 mins and updated all tunes.
    hope this helps,

  • Activation and upgrade system for java application

    Hi guys,
    i've a question for you.
    I need to develop a professional application in java (+java fx) and I want to distribuite it on the net.
    I've to manage these situations:
    1) I need to have a "trial" version, with an endline after x days
    2) I need to activate a license on a application, basing on mac/motherboard id of user
    3) I need to distribute update for applicatio, so user who installed it should click on update and application should be updated
    4) I need to obfuscate code
    I understood I need a network architecture to do it, but I want to open a discussion on which are best methods to perform these 4 tasks..
    I've many not clear ideas, I hope your experience could help me.
    Does exists come open source solution to manage these tasks? Are they safe?
    Thanks,
    Regards

    815769 wrote:
    Does exists come open source solution to manage these tasks? Are they safe?Some of the features you're looking for are readily available from Rich Client Platforms (RCP) and some module systems. If you haven't looked at those and are interested in not building from scratch the Eclipse RCP and OSGi or Jigsaw may be worth your time.

  • Windows Explorer integration for Source Control Explorer

    Hi together,
    we've setupped an Online TFS to organize our Powershell Scripts in our Team. After that we've installed the Source Control Explorer for checking items in and out. From within the Source Control Explorer this works flawless.
    Some time ago i've worked with TortoiseSVN for Source Control and there were a Windows Explorer Integration which was super easy to use for making new local repositorys, checkin and checkout, is there something similar for TFS? Because we only write Powershell
    Scripts, we don't need Visual Studio and it would be easier to work directly in the Windows Explorer.
    Thanks for any tips and tricks!
    Rolf

    Hi Rolf,  
    Thanks for your post.
    You’re using VSO Account?
    What’s the version of your VS? if you’re using VS 2013, you can install the
    TFS 2013 Power Tools on your client. If you installed the TFS 2013 Power Tools on your VS 2013 client, after you mapped and got the source file to local workspace folder using Source Control Explorer, you can right-click on the local workspace folder and
    select Team Foundation Server menu to perform check in/out. 
    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.
    Click
    HERE to participate the survey.

  • I am looking for Compact RIO system for PID control

    Hi all,
    I am looking for the CompactRIO system for PID control.
    My system acquires two input data (0-10V) from two displacement sensors and sends one output signal (0-10V) to piezo-actuator at every step. And my target is the short settling time and the low overshoot.
    I think that I need fast control system. So I am interested in CompactRIO. But I am not familiar with this sytem. Could you recommend the good control system for me?
    The one important thing is that the time limiting step of my system is Piezo actuator (it's natural freq is 20kHz.) CompactRIO is much faster than the Piezo-actuator. I am not sure whether CompactRIO is good to my system or not.
    Here is the CompactRIO system which I am interested in:
    i) CompactRIO Reconfigurable Embedded System: cRIO-9004
    ii) CompactRIO Reconfigurable Chassis: cRIO-9101
    iii) I/O Module : AI : cRIO-9215 AO: cRIO-9263
    Thank you so much,
    Sungjin

    Hello Sungjin,
    CompactRIO should work great for your PID control system. Those I/O modules are the correct voltage range and the 1M gate FPGA backplane will be plenty for a single PID controller. You'll probably be able to get loop rates around 100kHz for analog PID control.
    Keep in mind that the LabVIEW FPGA module includes PID examples that will cut down your development time considerably.
    Regards,
    Vineet

  • Adding a Weblogic Portal from source control

    I am using Weblogic Portal 10.3.2 and Eclipse 3.5.0. I can successfully create the EAR and portal projects, deploy them, etc. No problem. If I try to copy the projects to another computer or check them into a source control system and check them out on another computer I get the
    "Portal Application Services web application should be associated with a Portal Application Services EAR for proper deployment"
    and
    "A WebLogic Portal web application project should be added as a J2EE module to a WebLogic Portal EAR project for proper deployment" error messages.
    I did a directory comparison between a portal project that does work and one that doesn't; they are identical. The only thing I can think of is the ".metadata" directory is different, but this is huge, 1000s of files, over 100 MB.
    Has anyone seen this? Any idea of what the problem may be?

    Hi
    The reason for this error is most probably the portalEAR project is not associated wtih the portalWeb project. For any portal application, we must have a portalEAR and a portalWeb project and portalWeb project should be associated with that portalEAR project.
    For your existing and original working portal application, check the .project file in textpad located at: ...\user_projects\workspaces\Your_Workspace\yourPortalEAR\.project. The top contents will be like this:
    <name>myPortalEAR</name>
    <comment></comment>
    <projects>
         <project>myPortalWeb</project>
    </projects>Once you checked out and added them to the new machine and new workspace, check the same file. If not, after importing from CVS or source control, open both portalEAR and portalWAR in Workshop IDE. Select your portalEAR, right click mouse -> Select Properties -> From properties window on left side, select J2EE Module Dependencies and on right side check the check box corresponding to the portalWeb module. NOW you may need to do this everytime.
    Usually this is what I do, if I want other team members to get my portalApplication (EAR, WAR and DataSync project) or to check into source control. I DO NOT check-in or Export individual modules. Instead I Export them as single Archive File.
    From Workshop IDE, on left side right click -> Export -> From Export Window, Expand General -> Archive File -> Click on Next. In this window, select all the 3 projects on top left window ie. EAR, WAR and DataSync (if you have one). Then give a valid filename for this ZIP file something like myPortalEARZip.zip etc. Then click on Finish. This will create a big single ZIP file. NOW you can checkin this ZIP file or give to other team members.
    Now other team members will open Workshop IDE. Left side rigjht click mouse, select Import -> From Import Window, Expand General -> Existing Projects Into Workspace -> Click Next -> Select the radio button named Select Archive File and hit Browse and choose the above .zip file. It should list out the exising projects from this zip file. NOW mostly you may have to delete the exising same projects from this Workspace before you Import. Then follow the steps and you should get all the projects into your workspace. Do clean build etc.
    There may be some other simpler approach, but usually I follow the above proceedure. If you want to continue your existing procedure, then manually link portalEAR with portalWeb project.
    Thanks
    Ravi Jegga

  • Help needed on weblogic portal source control under CVS

    Hi,
    Is that good or bad to put all the portaldomain under CVS control? eg.
    my portal domain directory structure under development environment is
    like the following:
    c:\myportaldomain --|
    |--beaApps
    |---portalApp
    | |---------myportalApplication
    |
    |---portalApp-project
    I think the stuff I need to put under CVS are "myportalApplication"
    and "portalApp-project" directories.
    However, I want to organize the CVS directory structure like the
    following:
    c:\myportalmodule --|
    |--src
    |--docs
    |--"myportalApplication"
    |--"portalApp-project"
    So this means: after I checkout from CVS, I need to copy the two
    directories "myportalApplication" and "portalApp-project" from
    c:\myportalmodule into corresponding sub-directories under
    c:\myportaldomain, before I can do any development and testing. also,
    if I make some changes on c:\myportaldomain, and I want to checkin, I
    need to copy those files back to c:\myportalmodule. I tried to use
    directory softlink, but it windows NT just offer shortcut, which
    doesn't work.
    Can somebody give some education how to integerate the weblogic portal
    with CVS source control systems?
    Thanks very much

    Hi Rene,
    Thanks for the very helpful info.
    I think maybe I have a idea how to set up the dev environment now,
    basically I will organize the CVS repository and weblogic directories
    in the same way.
    c:\myportalmodule--|
    |---myportaldomain
    | |---beaApps
    | |---portalApp
    | | |---------myportalApplication
    | |
    | |---portalApp-project
    |--src
    |--docs
    |--build.xml
    So before everybody can checkout any code from CVS, he need to
    configure a new domain named "myportaldomain" in c:\myportalmodule
    directory. Since the CVS and his domain have the same directory
    structure, so when he do the fully checkout, the files will actually
    be put into the right place, and he can checkin his files easily.
    one annoying thing is that, since there are other files (such as
    startPortal.bat,etc )generated by domain configuration wizard in
    c:\myportalmodule\myportaldomain, which are not in CVS repository. so
    everytime, we do a checkout, CVS will issue the warnings saying those
    files are in CVS repository. Please advise is there any potential
    problems or issues with this setup? Thanks for your help!!!!!
    "René Zanner" <[email protected]> wrote in message news:<[email protected]>...
    Hi,
    we did a similar thing, but we put the whole beaApps directory in the CVS, because
    we had more applications and also modified some things inside the tools application
    of BEA...
    With CVS you can do a 'partial' checkout of your module, that means you do not
    need to copy the folders back and forth, but you can check in and update directly
    in you domain directory.
    The command for a partial checkout is:
    cvs co -d <name of destination folder> <module name>/<path to your folder>
    Once checked out here, you can work with the files like in the complete checkout.
    HTH,
    René
    [email protected] (mouse) wrote:
    Hi,
    Is that good or bad to put all the portaldomain under CVS control? eg.
    my portal domain directory structure under development environment is
    like the following:
    c:\myportaldomain --|
    |--beaApps
    |---portalApp
    | |---------myportalApplication
    |
    |---portalApp-project
    I think the stuff I need to put under CVS are "myportalApplication"
    and "portalApp-project" directories.
    However, I want to organize the CVS directory structure like the
    following:
    c:\myportalmodule --|
    |--src
    |--docs
    |--"myportalApplication"
    |--"portalApp-project"
    So this means: after I checkout from CVS, I need to copy the two
    directories "myportalApplication" and "portalApp-project" from
    c:\myportalmodule into corresponding sub-directories under
    c:\myportaldomain, before I can do any development and testing. also,
    if I make some changes on c:\myportaldomain, and I want to checkin, I
    need to copy those files back to c:\myportalmodule. I tried to use
    directory softlink, but it windows NT just offer shortcut, which
    doesn't work.
    Can somebody give some education how to integerate the weblogic portal
    with CVS source control systems?
    Thanks very much

  • Bc4j: source control

    Hi,
    I'd like to know how you manage bc4j under source control.
    A bc4j project consists of a lot of files:
    Project.jpr
    Project.jpx
    package.xml
    package.xcfg
    AppModule.xml
    AppModule.java
    AppModuleImpl.java
    and some files per entity, view, assoc, viewlink
    When you do an operation on the source control system (check-in, check-out), do you perform that operation on all of these files?
    Do check-out all the files, or do you check-out only the files you need?
    We are using PVCS for source control - so I my special interest is on how to use PVCS in conjunction with BC4J.
    Thanks a lot for your comments
    Guenther

    Guenther,
    To use PVCS as you SCM System with JDeveloper, you have 2 options:
    1. Not intergerate your IDE with PVCS.
    When you need to work on an object:
    a) Open PVCS Version Manager(VM)
    b) Check out the object (set your workfile location in VM to your JDeveloper work area). Some objects consist of more than one file. For example, a view object consist of .xml and .java file. So, obviously, you have to check out both. Also, if you need to add an object to the application module, you'll need to check out the application module files. This is an opprotunity to become familiar with the different files that makes your JDeveloper workspace.
    c) Open JDeveloper and work on your file. It was necessary for me to keep JDeveloper 3.2 closed while I check out the file from VM. Otherwise I got errors when I tried to open the object. JDeveloper 9i seems to do much better.
    d) Check in the object from VM
    2. You other option is to integerate PVCS with JDeveloper, you currently have two options here:
    a) Write your own Add-in if you have a lot of extra time and looking for some excitement. Oracle is not planning on helping us with this at all. I read a thread about someone writting one but no one has made this available yet.
    b) If you are using PVCS 6.8, you can download the PVCS WebDAV Server. It took me less than 30 minutes to install and setup. It allows you to integrate JDeveloper 9i with PVCS. I have only been use it for a week now. It's workable. It is a little different. Instead of check-in/check-out, you LOCK the file and you work on it. The strange thing is that you can work on the file without locking it. This causes the creation of a new revision in PVCS everytime you save. Also, currently, I am the only one using WebDAV. So, I am still not aware of all the issues arising from working with a large group.
    Hope this helps. Good luck.
    Stephen

  • MSS - where find code for java iviews and how to copy and extract??????

    Hi All,
    Not sure if this is the correct forum, so if i'm in the wrong place apologies and if possible could  you point me in the right direction.  If I am in the right place, here it goes......
    we're using R/3 4.7, MSS 6.1.20.  We're just beginning to implement MSS.  I'm wondering if anyone could give me a couple of examples of which MSS options are based on java iviews, where is the code for these java ivews stored on the system and do i have to do anything special to extract this code.
    the reason i want the code is that i want to copy it and see how difficult it is to make changes to the code in netweaver developer studio.
    Also, as i'm new to all this, if anyone knows of a good source of info for java iview creation/manipulation, please let me know.
    Kind regards,
    Liz.

    Hi,
    This is how we access java code for ESS applications. I hope it is the same for MSS as well.
    Open your NWDS -> Window -> Preferences -> Java Development Infrastructure -> Development Configurations.
    Provide the Landscape directory server in URL field. something like http://<server name>:<port number>. Ping and  confirm the connections. Save the settings.
    Now select Window -> Open Perspective -> Development Configurations.
    Right click on the Offline and select Import configurations. Select remote option and import the respective items from the server. Create a project for the required inactive DC and you will be able to edit the code in webdynpro perspective.
    Hope this helps.
    Thanks,
    Preetham

Maybe you are looking for

  • How do I create a new Itunes account for my external HD?

    Hi. I am a graduate student with a huge amount of music files for academia.  I store the academia music files on my external HD, since it will just take up too much space on my computer.  I wanted to create a separate Itunes account just for my exter

  • Is not null?

    Hi guys, I'm trying to make this statement in java but am not sure what the correct syntax would be: text is NOT null this is what i tried so far: !text == nullHow can I say this correctly? Much appreciated

  • MMS not working LG G2

    I just got my device switched out 3 days ago due to my old phone messing up with MMS. It was working great until yesterday when the exact same problem I was having with my old LG G2 started occurring AGAIN! My picture messaging does not work at all,

  • Problem Recording Video: Automatic Screen Cropping

    My Skype video recording is being automatically cropped, and I don't know why. I record a number of Skype video interviews and before I begin, I make sure that the person is completely centered. However, after I view the recording, I often find that

  • Upgrading from solaris 9 to 10, with oracle installed

    Hi Friends i have salaries 9 on the my machine with oracle and web server configured, Now i want to upgrade to solaris 10, any effect to oracle, Cheer's Rajendra Prasad