JAVA Builder

Does Java Builder let you drag and drop objects like visual Basic ?

Does Java Builder let you drag and drop objects like
visual Basic ?I hope not.

Similar Messages

  • Cant specify the Java Build Path in the Web Module Project

    hi,
    I have a problem while specify  the project dependencies in the Web Module Project.While opening the properties of the web module project i cant choose the Java Build Path.The only two options i have are design root path and web service consistency check builder.Does anybody know why its like that?do i hav to reinstall the SAP developer studio?
    With regards,
    Jaisamma Varghese

    Hi Jaisamma,
    I just tested this, and for me it works as expected, within all explorer/navigator views.
    Before reinstalling NWDS, check if the project itself may have some problem. Just create a new clean web module project and right-click on the project and try to access the BuildPath properties now. If it works, try to set up your project content again within this new project. Otherwise reinstalling NWDS may help.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Path, classpath, java build path???

    I am happy with what path and classpath does but what is java build path for? could someone point me in the direction of where I can find more info?

    cool but the IDE also had a place where you could set the classpath. so is the java build path just like an extra way of setting up classes for different projects where the classpath in the IDE is used by all projects?

  • Wipes out classes and jars in Java Build Path

    Hello!
    All the jar and class files under Library tab gets cleared when I repair my DC project. But when I repair normal projects it does not wipe out  the jars or classes in the Library. Can someone please help me?
    Thanks
    Raj

    Hi Raj,
    The Java build path of a DC-project is based on the definitions in de DC-dependecies (shown in .dcdef file).
    Everytime you repair or build the  DC the build path will be updated into the .project file based on the .dcdef file.
    See the online documentaion for how to add libraries to the DC dependecies.
    Hope this helps.
    Regrads,
    Alain.

  • Java Build Path Errors in WD with NWDI

    Hi,
    i'm connected to a NWDI and imported a development configuration with a SC from there.
    When I create a new DC (type: Web Dynpro) within this SC, I receive a lot of errors that classes could not be resolved.
    In the projects properties, I can see that the Java Build Path has "JRE_LIB" added only. In local WD-projects (without any NWDI) there are a lot more Libraries added.
    I guess, this is the problem.
    Now the question is: How can I convince my project to use more libraries in its Build Path?
    in the used SC I've added initially the following dependencies according to a tutorial:
    DI BUILD TOOL 7.00
    SAP J2EE ENGINE 7.00
    SAP JAVA TECH SERVICES 7.00
    then, after receiving theses errors, I've added additionally (I guessed them):
    WEB DYNPRO APPLICATIONS 7.00
    WEB DYNPRO RUNTIME 7.00
    still the same...
    additional information: after cretaing the DC, I also receive the following warning/error:
    <i>Development Component Creation completed with some problems.
    Reason:
    Some used DCs are not available locally.
    You have to sync used DCs for this project.</i>
    kr, achim

    after copy&paste the missing entries from a .classpath-file of a local project to my NWDI-based projects .classpath file, the build errors are gone.
    but how to do that automatically?
    and still errors occur in the develop-config perspective:
    <i>ERROR: failed to resolve reference "sap.com/tc/..." for DC "....":Cannot find compartment of used component: sap.com:tc/wdp/metamodel/content</i>
    kr, achim

  • Java build path as appose to j2ee depenencies ?

    if i understand right j2ee depen. basicly means one is in another's build path and has to be deployed under the same war ?
    another thing , if i placed one java application in a j2ee project build path why do i have put the same jar in both of 'em ? wil it be deployed twice ?

    after copy&paste the missing entries from a .classpath-file of a local project to my NWDI-based projects .classpath file, the build errors are gone.
    but how to do that automatically?
    and still errors occur in the develop-config perspective:
    <i>ERROR: failed to resolve reference "sap.com/tc/..." for DC "....":Cannot find compartment of used component: sap.com:tc/wdp/metamodel/content</i>
    kr, achim

  • Hardware for Java build server

    I don't know if this is the correct area for the question, so I apologise if it is not...
    The company I work for is budgeting a seperate build server for our developers to use. We are currently 100% sparc in the server environment. Does anyone have any real work benchmarks or experience with using different architectures for compiling code? We are looking at benchmarks between T2000, V40z, and x4200. It looks like we will get all three to get our hands on to test ourselves, but wanted to know if this has already been done and documented somewhere. The server will not be doing any application/db/etc work, just compiling. Are the FP shortcomings of the T2000 any issue with java compiliation? Would a 2x or 4x dual-core opteron be faster? Thanks in advance.

    Depending on the size of your projects, the frequency of buildcycles, etc., you might just pull one of your oldest servers out of your serverfarm (and put a new one in instead) and use that.
    That's the way most companies (and individuals) do it.
    That machine doesn't have to be blazing fast, it hardly matters if a build takes 10 seconds or 30 for example, as usually people won't be waiting for it (or if they are they have other things to do while waiting like smoking a fag or drinking coffee which they'd otherwise do after the build was complete).
    At home I use an old laptop with a Celeron 400 and 196MB RAM as my buildbox.
    For my single project it's plenty fast enough, taking maybe 2 minutes when on my P4-2.4 with 1.5GB RAM it takes just over 1 minute to build the same project.
    It could easily handle a lot more too, but at the moment I have no need for that excess capacity.

  • SSL Error while Consuming Java build SOAP services using Dotnet Console App

    Hi, I want to consume a SOAP service developed in JAVA. I don't have any control on Service side. I have to just consume the SOAP service using my client Application which is in DotNet Console Application using C#. Here is the detail about the service:
    1. The service has SSL configured.
    2. End point looks like: https://xyz.com:443
    3. I am able to connect the service using SOAP UI Tool by configuring the Tool with the certs given by Java developer.
    4. Basically there are two certs used, one for "client authentication" purpose and the second cert is for "WS security" purpose.
    5. When i add the WSDL to my client app as a service Reference, the generated App.config file looks as shown below:
    <configuration>
    system.serviceModel>
    <bindings>
    <basicHttpBinding>
    <binding name="Hello_HTTPBinding">
    </binding>
    </basicHttpBinding>
    </bindings>
    <client>
    <endpoint address="http://localhost:8080/" binding="basicHttpBinding"
    bindingConfiguration="Hello_HTTPBinding"
    contract="Proxy_Hello" name="Hello_HTTPPort" />
    </client>
    </system.serviceModel>
    </configuration>
    6. Basically I need to pass two certs, one cert used for "client authentication" purpose and the second cert is used for "WS security purpose".
    7. I have changed the above client configuration as below marked in RED color text:
    <configuration>
    system.serviceModel>
    <bindings>
    <basicHttpBinding>
    <binding name="Hello_HTTPBinding">
    <security mode="TransportWithMessageCredential" >
    <transport clientCredentialType="Certificate" proxyCredentialType="Basic" realm="" />
    <message clientCredentialType="Certificate" algorithmSuite="Basic128" />
    </security>
    </binding>
    </basicHttpBinding>
    </bindings>
    <client>
    <endpoint address="https://xyz.com:443"
    binding="basicHttpBinding"
    bindingConfiguration="Hello_HTTPBinding"
    contract="Proxy_Hello" name="Hello_HTTPPort" behaviorConfiguration="NewBehavior"/>
    </client>
    <behaviors>
    <endpointBehaviors>
    <behavior name="NewBehavior">
    <clientCredentials >
    <clientCertificate findValue="clientxyz.com" storeLocation="CurrentUser" storeName="My" x509FindType="FindBySubjectName" />
    <serviceCertificate>
    <defaultCertificate findValue="helloabc.com" storeLocation="CurrentUser" storeName="My" x509FindType="FindBySubjectName"/>
    </serviceCertificate>
    </clientCredentials>
    </behavior>
    </endpointBehaviors>
    </behaviors>
    </system.serviceModel>
    </configuration>
    8. I am assuming the cert required for WS security  will be passed using in<serviceCertificate> element, but not fully sure....correct me if I am wrong.
    9. By creating proxy object of the service when I am trying to call the required method I am getting this Error: "Could not establish
    secure channel for SSL/TLS with authority "******xyz.com."
    10. Its working perfect in SOAP UI Tool, generating the Raw XML as shown below in ORANGE color Text:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:gw-headers-100" xmlns:urn1="urn:gw-util-100">
    <soapenv:Header><wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsse:BinarySecurityToken EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"
    wsu:Id="X509-35309F239B754D9BA414230227616161">
    aaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbccccccccccccccccccccc********dddddddddddd*****eeeeeeeeee
    </wsse:BinarySecurityToken>
    <ds:Signature Id="SIG-2" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
    <ds:SignedInfo>
    <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
    <ec:InclusiveNamespaces PrefixList="soapenv urn urn1" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#"/>
    </ds:CanonicalizationMethod>
    <ds:SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
    <ds:Reference URI="#id-1">
    <ds:Transforms>
    <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
    <ec:InclusiveNamespaces PrefixList="urn urn1" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#"/>
    </ds:Transform>
    </ds:Transforms>
    <ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
    <ds:DigestValue>
    abcabcabcabc******gggggg
    </ds:DigestValue>
    </ds:Reference>
    </ds:SignedInfo>
    <ds:SignatureValue>gggggg888******8sdsdsdss</ds:SignatureValue>
    <ds:KeyInfo Id="KI-38488AAAA222">
    <wsse:SecurityTokenReference wsu:Id="STR-ggggjj57557575">
    <wsse:Reference URI="#X509-74747477" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"/>
    </wsse:SecurityTokenReference>
    </ds:KeyInfo>
    </ds:Signature>
    </wsse:Security>
    </soapenv:Header>
    <soapenv:Body wsu:Id="id-1" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <urn1:xxxxxxx>
    </urn1:xxxxxx>
    </soapenv:Body>
    </soapenv:Envelope>
    11. Using Dotnet Tracing I am able to see the Request XML generated from the console Application as shown below in BLUE color text: But getting the SSL error as: Could not establish secure channel
    for SSL/TLS with authority "******xyz.com.
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Header>
    <o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <u:Timestamp u:Id="_0" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <u:Created>2015-02-04T04:19:29.825Z</u:Created>
    <u:Expires>2015-02-04T04:24:29.825Z</u:Expires>
    </u:Timestamp>
    <o:BinarySecurityToken>
    <!-- Removed-->
    </o:BinarySecurityToken>
    <Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
    <SignedInfo>
    <CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"></CanonicalizationMethod>
    <SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"></SignatureMethod>
    <Reference URI="#_0">
    <Transforms>
    <Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"></Transform>
    </Transforms>
    <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></DigestMethod>
    <DigestValue>aaaaaa****dddddd=</DigestValue>
    </Reference>
    </SignedInfo>
    <SignatureValue>ssssddddd888fffff****=</SignatureValue>
    <KeyInfo>
    <o:SecurityTokenReference>
    <o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-93e09c54-aee8-4f45-a8a4-d63d8a2d63fb-1"></o:Reference>
    </o:SecurityTokenReference>
    </KeyInfo>
    </Signature>
    </o:Security>
    </s:Header>
    </s:Envelope>
    12. I want to Generate the Request XML from my Dotnet console Application simiar to the SOAP UI generated XML(refer #10).. Also want to get rid of SSL error....Appreciate your Suggestion..

    Hi tksdotnet,
    This forum is used to discuss the questions about the WCF web service, for java web services questions, it will be better to post in this forum:
    #WCF, ASMX and other Web Services:
    http://forums.asp.net/28.aspx/1?WCF+ASMX+and+other+Web+Services .
    Thanks for your understanding.
    Best Regards,
    Amy Peng
    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.

  • Hacking Exposed Java Build Errors

    Hi guys,
    Im currently trying to do projects based on the "Hacking Exposed Java" book. I've currently installed
    1. j2sdk 1.4.1
    2. jwsdp 1.2
    3. j2sdkee 1.3.1
    4. jakarta ant 1.5
    Ive done all the neccessary enviromental settings and when i try to run the ant.bat file, i encounter the following errors
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\client\ClientFrame.java:28: package javax.xml.rpc.soap does not exist
    [javac] import javax.xml.rpc.soap.SOAPFaultException;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\client\ClientFrame.java:29: package javax.xml.soap does not exist
    [javac] import javax.xml.soap.Detail;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\client\WebServPersistenceService.java:25: package javax.xml.rpc does not exist
    [javac] import javax.xml.rpc.Stub;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth.java:6: package javax.xml.rpc does not exist
    [javac] import javax.xml.rpc.*;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth.java:8: package javax.xml.rpc does not exist
    [javac] public interface RetirementServerBasicAuth extends javax.xml.rpc.Service {
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:6: package com.sun.xml.rpc.encoding does not exist
    [javac] import com.sun.xml.rpc.encoding.*;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:7: package com.sun.xml.rpc.client does not exist
    [javac] import com.sun.xml.rpc.client.ServiceExceptionImpl;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:8: package com.sun.xml.rpc.util.exception does not exist
    [javac] import com.sun.xml.rpc.util.exception.*;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:9: package com.sun.xml.rpc.client does not exist
    [javac] import com.sun.xml.rpc.client.HandlerChainImpl;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:10: package javax.xml.rpc does not exist
    [javac] import javax.xml.rpc.*;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:11: package javax.xml.rpc.encoding does not exist
    [javac] import javax.xml.rpc.encoding.*;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:12: package javax.xml.rpc.handler does not exist
    [javac] import javax.xml.rpc.handler.HandlerChain;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:13: package javax.xml.rpc.handler does not exist
    [javac] import javax.xml.rpc.handler.HandlerInfo;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:14: package javax.xml.namespace does not exist
    [javac] import javax.xml.namespace.QName;
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:16: package com.sun.xml.rpc.client does not exist
    [javac] public class RetirementServerBasicAuth_Impl extends com.sun.xml.rpc.client.BasicService implements RetirementServerBasicAuth {
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:17: cannot resolve symbol
    [javac] symbol : class QName
    [javac] location: class book.webserv.basicauth.RetirementServerBasicAuth_Impl
    [javac] private static final QName serviceName = new QName("http://javajockey.com/wsdl", "RetirementServerBasicAuth");
    [javac] ^
    [javac] C:\hacking_exposed_java\book\src\book\webserv\basicauth\RetirementServerBasicAuth_Impl.java:18: cannot resolve symbol
    [javac] symbol : class QName
    [javac] location: class book.webserv.basicauth.RetirementServerBasicAuth_Impl
    [javac] private static final QName ns1_RetirementAccountInfo_QNAME = new QName("http://javajockey.com/
    There is a total of 100 errors in all. Ive tried for days and still keep getting 100 errors. Am I missing anything else? Are there any other packages i need to install in order for this to work? Any help at all would really really appreciated.
    Thanks and regards
    Frustrated....

    http://wiki.java.net/bin/view/Javapedia/ClassPath

  • Can't add jsf doc to Java Build Path of Eclipse

    hi all.
    I don't know why i can't add java document path to jsf-api.jar in eclipse , if i add it and close the settings dialog , then back , i'll see it is empty (as i've not done anything yet ), although that Validate path say ok . it' no problem with other document such as rt.jar or javaee.jar .

    I've looked at that thread, and it does look like the same problem. I've also looked at this thread which seems the same: http://forums.adobe.com/message/4025125#4025125
    That thread also brings up a good point with computer accounts; like it says there, mine is also mobile managed. I'm waiting to talk to IT and see if that's the issue - although again, everything was working fine earlier and my account permissions haven't changed since then, so that might not be it.

  • Eclipse 3.1.2 Bundle JBoss-IDE1.6 -  Java Build Path issue

    I set test/WEB-INF/classes as project output folder , why I can not find
    "WEB-INF/classes" in Eclipse "Package Explorer'. is it normal or issue?
    Thanks ahead!

    You don't need to know about the /classes folder. The classes from the Javasource will be compiled automatically into this folder.
    If you really want to see it, use the Navigator view instead, or setup it in the filters of the Package Explorer.

  • Java DC Build Failed

    I was having problem when building a Java DC for JavaBeans (to be exported to Web Dynpro DC). Therefore, there is only one Java class which has the getter and setter there.
    I <b>do not have a DTR installed</b>, so the DC was created under Local DCs -> Local Development -> MyComponents.
    The build log error is as below:
    Dec 1, 2006 10:51:46 AM /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] ERROR: jbmodel: Build failed for sap.com/jbmodel(MyComponents) in variant "default": Used component not found: sap.com/tc/bi/bp/javaLib
    Build log -
    Dec 1, 2006 10:51:46 AM /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] ERROR: jbmodel: Build failed for sap.com/jbmodel(MyComponents) in variant "default": Check for used DCs failed: Used component not found: sap.com/tc/bi/bp/javaLib. DC not found in DC syncdb
    Build log -
    Development Component Build (2006-12-01 10:51:46)
      Component name: jbmodel
      Component vendor: sap.com
      SC compartment: MyComponents
      Configuration: LocalDevelopment
      Location: local
      Source code location: julius.hock@julius
      DC root folder: C:\Documents and Settings\julius.hock\.dtc\LocalDevelopment\DCs\sap.com\jbmodel\_comp\
      DC type: Java
      Host: julius
    DC Model check:
              [dcmake] All used DCs are available locally
              [dcmake] ERROR: Check for used DCs failed: Used component not found: sap.com/tc/bi/bp/javaLib. DC not found in DC syncdb
              [dcmake] Build failed with errors.
    Any help would be appreciated. Thanks.

    Hi Denis,
    go to eclipse plugins folder and into 'com.sap.tc.ap/comp/SAP_BUILDT/DCs/sap.com/tc/bi/bp' and check if u have folder 'javaLib' with build plugin.
    <b>Ans: Yes, javaLib is there. Do you meant i need to add javalibplugin.jar to the Java Build Path?</b>
    then go to 'com.sap.tc.ap/SCs/sap.com/SAP_BUILDT/_comp/TopLevelDCs
    and check if you have 'sap.com tc bi bp javaLib.dcref' file here - if not create it
    <b>Ans: It's alrdy there.</b>
    In my local development, SAP_BUILDT, SAP_JTECHS, SAP-JEE are without any child.
    How shld i proceed?

  • Java DC Build Error

    Hi all.
    I want to have an utility Java DC, I mean a DC with some Java classes having methods and constants to use in some others DC's.
    I have created the Java DC and add into the Java build path, some Webdynpro libraries, when i use those API's  the classes compile, but the building of the DC returns errors because, it does not recognize the WDP libraries.
    I hope someone can help me.
    Regards.
    Gregory.

    Hi,
    You cant just add any external jar file into a DC project.
    There is only one way to add a external jar file is by using external library project.
    1.create an external library project type DC.
    2. put your external jar file into its lib folder.
    3. create its public part of type SDA...and API.
    4. just use SDA public part into your webdynpro project as used DC.
    4. and when you deploy your webdynpro project on server, this file will also get deployed... remember to use SDA public part..
    http://help.sap.com/saphelp_nw04/helpdata/en/5a/2e2f4234135433e10000000a155106/content.htm
    Thanks,
    Gopi

  • How to build a small application using Java API

    Hai expertise,
         I want to retreive MDM repository info using JAVA API, i am following these blogs:
    /people/andreas.seifried/blog/2006/03/26/performing-free-form-searches-with-mdm-java-api
    /people/udi.katz/blog/2005/08/21/retrieving-data-from-mdm-server-using-the-mdm-java-api
    /people/udi.katz/blog/2005/07/17/mdm-connectivity-to-java-application
    <b>where to get the jar and sda files to build the application??
    In Developer Studio.. Windows -> Preferences -> Java -> Classpath variables. Is this the only place where we need to give the jar file path??
    Are there any other configurations to do(except setting container variable to MDM4J jar file) to connect my java application to MDM repository???</b>
    Regards,
    Chand.

    Hi Govada,
    (1)You need to add the MDM4j and other JAR files at:-
    right click on project -> Java Build Path -> Libraries -> Add External JARs
    (2)If the project is Web Dynpro project one
    then right click on project -> Web Dynpro Reference -> Library Reference -> and add sap.com/com.sap.mdm.tech.mdm4j
    Are you using JAVA API 1 or 2???
    Thanking you
    Namrata Dixit

  • Building java project from CVS

    Hi, I am new to ANT and java builds. This is what I want to do. I have two projects, Proj1 and Proj2. Proj1 is on HEAD branch in CVS and Proj2 is on TREE branch on CVS. I want to be able to build TREE branch but it should pull PROJ1 from HEAD branch.
    Any idea if CVS or ANT gives an option to build a jar from TREE branch and if a project is not found on TREE branch, it will go looking for it on HEAD branch?
    Thank you.

    Thanks, Georgemc. Let me clarify it.
    I have PROJ1 and PROJ2 on HEAD branch which are production version.
    PROJ1 is architecture code which I always want to get from HEAD branch.
    I have a release project which I am working on and have created a branch named TREE for PROJ2. Now when I do a build with a tag TREE, PROJ1 doesn't exist on TREE branch and it fails saying project not found for PROJ1. What I want to find out if there is an option that I can put in ANT script or CVS so that it will go to HEAD branch automatically in case a project is not found in TREE branch.
    I know it can be hard-coded but I wanted to find out if CVS or ANT gives that option.

Maybe you are looking for