Customizing location of Workshop generated build files

Hi,
When I perform a build from Workshop on Windows 2000, the temp build files are
created in
a dir somewhere deep in the Documents and Settings folder.
How do you customize Workshop to create build files in a different location ?
Thanks in advance
-Anil

Are you sure those differences are just timestamps?
As someone on comp.unix.programmer mentioned, those hex values map to chars,
0x4C == 'L'
0x5A == 'Z'
0x44 == 'D'
0x6A == 'j'
Which looks to me possibly like C++ name-mangling. Are you sure the function signatures didn't change between compiles? You could check:
%nm try14.o > symbols14.txt
%nm try15.o > symbols15.txt
%diff symbols14.txt symbols15.txt
What is the source of your requirement to compare binaries?
Josh Walker

Similar Messages

  • [WLW 10.3] keepgenerated option with workshop generated build script

    I want to generate java files out of JSPs for the application on weblogic 10.3.
    I am using build script generated by workshop which contains the following entry for jsp compiler:
    <jspc classpathref="jspc.classpath" source="${staging.dir}" library="${appc.library}"> </jspc>
    Now I want to know how to use keepgenerated option to generate java files using this script.
    I do not want to do the following:
    - Set this property in weblogic.xml file
    - Use manual build script such as following:
    <wlappc source= "D:\DELETE\JSP_Appc\Test_Appc" output= "D:\DELETE\JSP_Appc\Test_Appc_Output" forceGeneration= "true" verbose= "true" keepgenerated="true" deprecation= "true">
    Any pointers related to this issue will be of great help. Thank you.
    Ravikiran

    I want to generate java files out of JSPs for the application on weblogic 10.3.
    I am using build script generated by workshop which contains the following entry for jsp compiler:
    <jspc classpathref="jspc.classpath" source="${staging.dir}" library="${appc.library}"> </jspc>
    Now I want to know how to use keepgenerated option to generate java files using this script.
    I do not want to do the following:
    - Set this property in weblogic.xml file
    - Use manual build script such as following:
    <wlappc source= "D:\DELETE\JSP_Appc\Test_Appc" output= "D:\DELETE\JSP_Appc\Test_Appc_Output" forceGeneration= "true" verbose= "true" keepgenerated="true" deprecation= "true">
    Any pointers related to this issue will be of great help. Thank you.
    Ravikiran

  • Where the default location of generated source files?

    Hello!
    In my processor I create several source files and check it's names for existance before
    private String genClassName( final String packageName, final String key, final String suffix )
            final StringBuilder suggest = new StringBuilder( packageName ).append( key ).append( suffix );
            final Elements elementsUtil = processingEnv.getElementUtils();
            int i = 0;
            while( elementsUtil.getTypeElement( suggest ) != null )
                suggest.append( i++ );
            return suggest.substring( packageName.length() );
        }If I not define -s option for javac at first time compile and then set it to some location, then some generated before files are visible for this method and numbers added.
    So, the question: where to find a default "shadow" source tree to clean up it before next compilation with changed -s option?
    Sorry for my english and thanks for answers
    Edited by: Maxoid2 on Jun 3, 2008 10:34 PM

    The directory to clean up is where the -s option pointed to last time.
    The simplest way to do this is to always use the -s option and don't change it. Using the default value for -s option (which is the same as -d) tends to lead to problems. I always specify -s option, and make it different to -d option and -sourcepath.
    If you do this you don't even have to clean it up, javac only looks in there for files that it placed there. Files from previous builds get overwritten. Files from previous builds that are not overwritten are ignored.
    with a separate -s directory, it just works.
    Bruce

  • Recompilation and ant build file

    Hi, all
    I already set precompile to false in weblogic.xml. However, when we deploy, the JSPs are recompiled again claiming that they are stale. And we are using workshop ant build file. And I found out that the timestamps of compiled classes of JSPs are elder than JSP because the ant build copies the classes first to staging directory. See the following;
    &lt;for-each-resource-path&gt;
    &lt;echo level="info" message=".resource.path= ${.resource.path}"/&gt;
    &lt;if&gt;
    &lt;available file="${.resource.path}"/&gt;
    &lt;then&gt;
    &lt;if&gt;
    &lt;isfile path="${.resource.path}"/&gt;
    &lt;then&gt;
    &lt;copy file="${.resource.path}" tofile="${staging.dir}/${.resource.prefix}"/&gt;
    &lt;/then&gt;
    &lt;else&gt;
    &lt;copy todir="${staging.dir}/${.resource.prefix}"&gt;
    &lt;fileset dir="${.resource.path}" includes="${.resource.include}" excludes="${.resource.exclude}"/&gt;
    &lt;/copy&gt;
    &lt;/else&gt;
    &lt;/if&gt;
    &lt;/then&gt;
    &lt;/if&gt;
    &lt;/for-each-resource-path&gt;
    Is there any work-around to solve this? I don't want recompilation to occur again during deployment. Thanks in advance.
    Stephen

    First of all, why exactly do you care if it recompiles all the JSPs on deployment (precompile=true), even if it doesn't need to? This isn't a user experience problem, as all the pages would be compiled by the time a user referenced the page.
    If you want to avoid compiling JSPs on deployment, then have your build process compile the JSPs, include the generated servlet classes, and exclude the JSPs the generated classes were based on.

  • Where can I find a macro I can use in Project Properties to generate PDB files of different filenames each build?

    Found a better solution. The answer is given at the very bottom of this post.
    I'm looking for $(Random), %(Date), %(Time), or some %(Value) that I can put in the "Generate Program Database File" entry.
    Like "$(TargetDir)_%(CreateTime).pdb".
    But the problem is, %(CreateTime), %(ModifiedTime), and %(AccessTime) has colons in them, making them useless when putting them into the filenames.
    What other ways can I generate PDB files of different file names? Or, how do you modify %(CreateTime) so that I can remove the colons and just obtain the numeric values?

    Hi Tom_mail78101,
    It seems that there is no built-in macro for renaming the PDB files randomly.
    You could submit this feature request:
    http://visualstudio.uservoice.com/forums/121579-visual-studio
    The Visual Studio product team is listening to user voice there. You can send your ideas/suggestions there and people can vote.
    I agree with Viorel. The possible way to rename the PDB files is that you write your own script to rename the PDB file after building the project and put the script to Post-Build event in Build Event. As for whether this way can accomplish it, you can try
    to consult on: MSBuild
    forum like this thread: https://social.msdn.microsoft.com/Forums/vstudio/en-US/bcf39fd6-0e0c-4486-9438-7a724ded44de/postbuild-event-command?forum=msbuild
    Best regards,
    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.

  • How to use the build file generated by Jdev to automate bpel deployment

    Hi everyone I am trying to deploy bpel jar files and human task ear files using ant. When i use the ant which is generated by Jdev I am gettinng an error
    C:\Documents and Settings\254876\Desktop\BPEL_ANT>ant
    Buildfile: build.xml
    deployTaskForm:
    BUILD FAILED
    C:\Documents and Settings\254876\Desktop\BPEL_ANT\build.xml:39: Could not create
    task or type of type: deployTaskForm.
    Ant could not find the task or a class this task relies upon.
    This is common and has a number of causes; the usual
    solutions are to read the manual pages then download and
    install needed JAR files, or fix the build file:
    - You have misspelt 'deployTaskForm'.
    Fix: check your spelling.
    - The task needs an external JAR file to execute
    and this is not found at the right place in the classpath.
    Fix: check the documentation for dependencies.
    Fix: declare the task.
    - The task is an Ant optional task and the JAR file and/or libraries
    implementing the functionality were not found at the time you
    yourself built your installation of Ant from the Ant sources.
    Fix: Look in the ANT_HOME/lib for the 'ant-' JAR corresponding to the
    task and make sure it contains more than merely a META-INF/MANIFEST.MF.
    If all it contains is the manifest, then rebuild Ant with the needed
    libraries present in ${ant.home}/lib/optional/ , or alternatively,
    download a pre-built release version from apache.org
    - The build file was written for a later version of Ant
    Fix: upgrade to at least the latest release version of Ant
    - The task is not an Ant core or optional task
    and needs to be declared using <taskdef>.
    - You are attempting to use a task defined using
    <presetdef> or <macrodef> but have spelt wrong or not
    defined it at the point of use
    Remember that for JAR files to be visible to Ant tasks implemented
    in ANT_HOME/lib, the files must be in the same directory or on the
    classpath
    Please neither file bug reports on this problem, nor email the
    Ant mailing lists, until all of these causes have been explored,
    as this is not an Ant bug.

    Ensure JDEV and SOA versions are in sync.

  • Media editor - Browse media files from a custom location

    Hi,
    I am using media banner cartridge, which provides a media editor for choosing media files. The media files have to be in Endeca\Apps\<application>\config\media folder for me to browse the media files from media editor. Is there a way to change this location to some other custom location say doc root of my webserver ?

    Thanks Kristen, Naresh for your responses.
    Kristen,
    I had earlier read through the documentation for storing media assets directly in MDEX. However, what i understood is that it would require a separate MDEX instance (the document calls it media MDEX engine) and thereby additional licenses. Is my understanding correct? I was very keen on the MDEX approach earlier as there are limitations with ECR (wrt to # of media files and size). If the MDEX approach wont require additional instance, then certainly that is the approach i would take. Kindly advise.

  • How to automatically generate a build file of the application from command-line

    Hi All
    How can we automatically generate a build file of the application from command-line (as opposed to using Jdev IDE to click to generate a build.xml) ?
    Thanks

    User, which jdev version do you use?
    I don't think you can do this. You can only create an ant build.xml from the project inside jdev.
    You can use ojdeploy to build the project.  This is the only method which will also make the necessary changes to the descriptors.
    Timo

  • Generating "arraytofile" files in different locations

    Hello everyone,
    I am confronting a real problem here. I am using ArrayToFile to generate certain files. What I want to do is to every time I run the system to get these files in different locations, say in different folders. Another option I have is to get different version of this files, for example, filename: light.dat, light_2.dat, light_3.dat... etc. Any help will be appreciated.
    Best,
    LM

    Oh, instead of using the file name in the first argument (File Name), use the absolute path.  This argument takes relative or absolute paths.
    if you give it output.dat, then in the current working directory, it saves it.  If you pass it "C:\output.dat" it saves it there.
    With string manipulation, you combine paths and filenames.  
    FYI:
    GetDir() and SetDir() are functions that get and set the current working directory. (In Utility Library > Directory utilities)  But I don't recommend changing teh working directory without setting it back to it when done.

  • Workshop IDE Build does not include all files

    We have property files also which we want included as part of the build process
    but if we use the IDE build it does not include them. We have to therefore export
    the IDE build and customize it to include *.properties like this
    <zip basedir="${dest.path}" zipfile="${ejb.outputJar}" encoding="UTF8"> <!-- JARs
    filenames are encoded UTF8 -->
    <zipfileset dir="${project.local.directory}" includes="*.properties" />
    </zip>
    which causes a problem for us because the exported build file is specific to a
    user's local PC and cannot be used in a team environment.
    How can we have the IDE build include all the files within a project i.e. include
    properties files also.
    Thanks
    Mindy

    Hi Mindy,
    Why not in EJB?
    Yes there is no argument as to why property files cannot be copied over from EJB
    project.
    The reason is that Workshop has not implemented the feature with EJBProject. We
    have that feature only for Java projects and not for EJB project.
    Thanks a lot,
    Vimala
    "Mindy" <[email protected]> wrote:
    >
    You are saying the same thing again. My question is why not for EJB projects?
    I know we can create the files in Java project and read them with specific
    java
    files to read them but WHY NOT IN EJB IS THE QUESTION?
    "Carl" <[email protected]> wrote:
    Feature of the EJB Project:)
    "Mindy" <[email protected]> wrote in message
    news:4034c351$[email protected]..
    We have these property files in the EJB project, not Java project.Why
    should they
    not be copied if they are part of the EJB project?
    "Carl" <[email protected]> wrote:
    The properties file do get copied over if they are part of Java project.
    Hence, we have created utility classes in Java project that read
    the
    property file.
    For other project types, like EJB the property files didn't get copied...
    "Mindy" <[email protected]> wrote in message
    news:4033b944$[email protected]..
    We have property files also which we want included as part of the
    build
    process
    but if we use the IDE build it does not include them. We have to
    therefore
    export
    the IDE build and customize it to include *.properties like this
    <zip basedir="${dest.path}" zipfile="${ejb.outputJar}" encoding="UTF8"><!-- JARs
    filenames are encoded UTF8 -->
    <zipfileset dir="${project.local.directory}"includes="*.properties" />
    </zip>
    which causes a problem for us because the exported build file is
    specific
    to a
    user's local PC and cannot be used in a team environment.
    How can we have the IDE build include all the files within a projecti.e.
    include
    properties files also.
    Thanks
    Mindy

  • How to automatically generate build.xml file in eclipse?

    Hello every body,
    I am learning about ANT. e.g I have writen a very simple programme which displays output "no worries". But how can I compile it with ANT and how can I generate build.xml file using eclipse.

    This is not really a Java issue but rather is an Eclipse issue. You may wish to look for their support sites or forums.

  • How to generate .build.appxrecipe file

    Hi!
    I would like to generate using m s build utility or may be something else .build.appxrecipe file. Does anybody know how i can do this?
    VS generates it automatically, but i want to generate .build.appxrecipe file by me.

    Here's the documentation:
    https://msdn.microsoft.com/library/windows/apps/hh924768.aspx?f=255&MSPPError=-2147217396
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Can't install Extention Builder 2.1 generated ZXP-file

    Hi,
    I just build a *.zxp file from Exension builder 2.1 trial.
    It generates the file without any problem, but when installing it using Extension Manager CS6 6.0.7.6. it gives me this error:
    'plugin.zxp' is not a valid Creative Suite Extension. Creative suite extensions need to be signed and 'CSXS/manifest.xml' and META-INF/signatures must be included...
    could anyone help me getting this fixed?
    regards
    Mario

    Actually it's quite simple. But you have to be warned. This
    doesn't guarantee a bug free Eclipse setup and it isn't supported
    by Adobe in any way. It is how-ever your only shot at getting
    Eclipse with Flex Builder 2 AND php-development support, as Zend
    has stopped deploying the php-development-requirement for Eclipse
    3.2 (or at least I haven't found it in their archives.)
    Flex Builder 2 simply checks for some files to see if the
    directory you want to install to exist, so it recognizes the
    directory as an Eclipse 3.1+ directory. Eclipse 3.3 however misses
    the file startup.jar. If you simply copy startup.jar from an
    Eclipse 3.2 directory into the 3.3 directory, Flex Builder 2 will
    install in the 3.3 directory.
    Again. This is not supported in any way by Adobe.
    For more info, Google on: eclipse-3.3 Flex-builder-2
    startup.jar
    http://www.google.com/search?hl=en&q=eclipse-3.3+Flex-builder-2+startup.jar
    Kind regards.
    PS. I would still like to have an Adobe Representative answer
    the simple question: Is Adobe or is Adobe not working on getting
    Flex Builder 2 to work on Eclipse 3.3? A simple yes or no will
    suffice.

  • [svn] 4000: Updating build files to generate dita xml with lenient as true.

    Revision: 4000
    Author: [email protected]
    Date: 2008-11-03 13:39:40 -0800 (Mon, 03 Nov 2008)
    Log Message:
    Updating build files to generate dita xml with lenient as true.
    QE Notes: None
    Doc Notes: None
    tests: checkintests
    Modified Paths:
    flex/sdk/trunk/asdoc/build.xml
    flex/sdk/trunk/frameworks/projects/airframework/build.xml
    flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
    flex/sdk/trunk/frameworks/projects/flex/build.xml
    flex/sdk/trunk/frameworks/projects/flex4/build.xml
    flex/sdk/trunk/frameworks/projects/framework/build.xml
    flex/sdk/trunk/frameworks/projects/haloclassic/build.xml
    flex/sdk/trunk/frameworks/projects/rpc/build.xml
    flex/sdk/trunk/frameworks/projects/utilities/build.xml
    flex/sdk/trunk/frameworks/projects/wireframe/build.xml

    Any idea, I'm looking for your opinion, what do you think of the above

  • Customized Seeded report to XMLP report but its not generating output file?

    I want to customize "Dunning Letter Print from Dunning Letter Generate" Report, which is called from "Dunning Letter Generate" Report
    Steps i followed to Customize reports are.
    1. Changed output format to xml for "Dunning Letter Print from Dunning Letter Generate" Report.
    2. Ran report to generate xml data and using xml data created RTF file
    3. Registered data definition and template with code and short name same which is ARDLP_NON_SRS
    Now while i am running report its completing normal, but its not generating output file giving Error like –
    "Unable to find Published Output for this request"
    “No Output File Exist for Request No - xxxxx”
    No Idea why its not picking template, Can anyone help me in this?
    Using:
    Oracle Applications : 10.0.5.2,
    MS Word 2007
    Thanks,

    I am not giving the solution, providing you a hint..
    This is the query you need to satisfy,
    SELECT NVL(R.DESCRIPTION ,CP.USER_CONCURRENT_PROGRAM_NAME)
    FROM FND_CONCURRENT_REQUESTS R, FND_CONCURRENT_PROGRAMS_VL CP,XDO_DS_DEFINITIONS_B XDS
    WHERE ( ( FND_PROFILE.VALUE('CONC_REPORT_ACCESS_LEVEL') = 'U'
    AND R.REQUESTED_BY = :$PROFILES$.USER_ID ) or
    ( FND_PROFILE.VALUE('CONC_REPORT_ACCESS_LEVEL') = 'R'
    AND R.RESPONSIBILITY_ID = :$PROFILES$.RESP_ID ) )
    AND R.PROGRAM_APPLICATION_ID = CP.APPLICATION_ID
    AND R.CONCURRENT_PROGRAM_ID = CP.CONCURRENT_PROGRAM_ID
    AND XDS.APPLICATION_SHORT_NAME=
    ( SELECT APPLICATION_SHORT_NAME
    FROM FND_APPLICATION
    WHERE APPLICATION_ID=CP.APPLICATION_ID)
    AND XDS.DATA_SOURCE_CODE = CP.CONCURRENT_PROGRAM_NAME
    AND R.OUTPUT_FILE_TYPE='XML'
    AND R.STATUS_CODE not in ('E', 'D', 'T', 'X')
    ORDER BY R.REQUEST_ID DESC
    Go to system profiles and query for 'Concurrent:Report Access Level', responsibility you need and modify the profile name accordingly....

Maybe you are looking for

  • How to restrict lot numbers for customers

    We have customers who will not accept products from certain suppliers. Is there any solution that impose restriction and modifies the order fulfillment logic enforcing customer/supplier restrictions. eg., We receive the parts against PO/receipt, whil

  • AP Aging Reports

    I have looked through all of the discussions in regards to the various AP aging reports provided by SAP.  I'm hoping that someone has some documentation they are willing to share that explains these reports in better detail (especially what the resul

  • Why Did I Lose My Render?

    I rendered a 3rd party clip effect in a timeline last night that took a couple of hours to complete. The next time I started Premiere, there was a red line over the part i rendered. I looked, and the preview files are where they are supposed to be. W

  • Backing up crashed HDD

    My mid 2011 MacBook Pro's Hard drive recently became corrupted, I cannot verify or repair the disk, I am also unable to clone it to an external drive. When attempting to repair the disk (in Disk Utility) all goes well, until the repair is moments awa

  • Webservice: No endpoints found

    Hi gurus! I'm not sure on witch forum to post this thread... so here goes... I'm trying to create a webservice for an RFC function module (ZBAPI_HELLO_WORLD). I've already tried some manuals like http://help.sap.com/saphelp_nw70/helpdata/EN/0d/2eac5a