Problem in exporting library files with project(Classpath in manifest file)

I've developed a J2EE application client using Eclipse 3.3.1.1, now I want to export my project as a executable jar file but there is a lot of external jar files so when I put their name in Class-Path variable of project's Manifest, I see "Too long" error because there are too many external jar files.
How I can export required jar files with executable file of my project?
In my idea, the process of application client exporting is so foolishly and silly! why there isn't any standard and easy-to-use utility for this reason?!

Nazi wrote:
I've developed a J2EE application client using Eclipse 3.3.1.1, now I want to export my project as a executable jar file but there is a lot of external jar files so when I put their name in Class-Path variable of project's Manifest, I see "Too long" error because there are too many external jar files.
How I can export required jar files with executable file of my project?
In my idea, the process of application client exporting is so foolishly and silly! why there isn't any standard and easy-to-use utility for this reason?!Probably a Jewish Bolshevik conspiracy...
Abuse reported

Similar Messages

  • Powershell: How do I upload files with metadata from a manifest file?

    I am using the script from this blog to try to upload files into SharePoint, using a manifest file to specify the metadata associated with each file. Right now, the script works, but is not populating
    the metadata from the manifest (xml) file. When I write the $metadataManifest variable out to the console, I get the contents of my xml file, so the code is reading the file when it should. However when it gets to the line in bold ($metadataManifest.Columns.Column),
    it does not go into that block...it just skips on to checkin the file. Again the $metadataManifest variable shows all the content in my xml manifest file. Here is what the script looks like...
    #Get web and document library objects
    $web = Get-SPWeb "http://companySite"
    $Library = "My Library"
    $docLibrary = $web.Lists[$Library]
    $ManifestFilePath = "C:\PowerShellScripts\Manifest.xml"
    $LocalPath = "C:\Upload\Test Upload\My Upload Directory\"
    if ($ManifestFilePath)
    $metadataManifest = (Get-Content ($ManifestFilePath))
    write-host "Manifest file: " $metadataManifest
    else
    write-host "Manifest file not specified for categorising uploaded documents"
    #Check for the LibraryStartFolder parameter to specify a root folder
    if ($PSBoundParameters.ContainsKey('LibraryStartFolder')) {
    $folder = $web.GetFolder($docLibrary.Title + $LibraryStartFolder)
    else
    $folder = $docLibrary.RootFolder
    #Attach to local folder and enumerate through all files
    if($IncludeSubFolders) {
    $files = Get-ChildItem $LocalPath -Recurse
    else
    $files = Get-ChildItem $LocalPath
    $files | ForEach-Object {
    #Check if the object is a folder - if so, create it in doc library
    if ($_.PSIsContainer) {
    if (($IncludeSubFolders) -and (!$FlattenStructure)) {
    #Generate folder path for creation in SharePoint
    #by looking at the parent folder on the local path
    $spFolderPath = ($_.Parent.FullName.Replace($LocalPath,"")).Replace("\","/")
    #Get the folder into which the new folder will be created
    #by adding the folder path generated above, if one existed
    if ($spFolderPath -eq "") {
    $currentFolder = $web.GetFolder($folder.Url)
    else
    $currentFolder = $web.GetFolder($folder.Url + $spFolderPath)
    #Check to see if subfolder already exists
    #and create it if not
    $testFolder = $currentFolder.SubFolders[$_.Name]
    if ($testFolder -eq $null) {
    write-host "`nAdding folder" $_.Name "to" $docLibrary.Title "in" $web.Title "..." -foregroundcolor Green
    $newFolder = $currentFolder.SubFolders.Add($_.Name)
    else
    write-host "`nFolder" $_.Name "already exists in" $docLibrary.Title "and shall not be created" -foregroundcolor Red
    else
    #Generate file path for upload into SharePoint
    if ($FlattenStructure) {
    $spFilePath = ("/" + $_.Name)
    else
    $spFilePath = ($_.FullName.Replace($LocalPath,"")).Replace("\","/")
    $spFullPath = $folder.Url + "/" + $spFilePath
    #Check if the file exists and the overwrite option is selected before adding the file
    if ((!$web.GetFile($spFullPath).Exists) -or ($Overwrite)) {
    #Add file
    write-host "`nCopying" $_.Name "to" $spFullPath.Replace("/" + $_.Name,"") "in" $web.Title "..." -foregroundcolor Green
    $spFile = $folder.Files.Add($spFullPath, $_.OpenRead(), $true)
    #$spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    #Walk through manifest XML file and configure column values on the file
    $metadataManifest.Columns.Column | ForEach-Object {
    #Single value text columns
    try
    if (($_.Type -eq "Text") -or
    ($_.Type -eq "Choice") -or
    ($_.Type -eq "Boolean") -or
    ($_.Type -eq "Number") -or
    ($_.Type -eq "Currency")) {
    $columnName = $_.Name
    write-host "Setting value on column"$columnName "..." -foregroundcolor Blue
    $_.Values.Value | ForEach-Object {
    $spItem[$columnName] = $_
    write-host "Value set to"$_
    catch {}
    #Multiple line text column
    try
    catch {}
    #Multiple choice columns
    try
    catch {}
    #Hyperlink columns
    try
    catch {}
    #Single User column
    try
    catch {}
    #Multiple User column
    try
    catch {}
    #Single value Managed Metadata column
    try
    catch {}
    #Multi value Managed Metadata column
    try
    catch {}
    #Update document with new column values
    $spItem.SystemUpdate($false)
    #Check in file to document library (if required)
    #MinorCheckIn=0, MajorCheckIn=1, OverwriteCheckIn=2
    if ($CheckIn) {
    if ($spFile.CheckOutStatus -ne "None") {
    $spFile.CheckIn("File copied from " + $filePath, 1)
    write-host $spfile.Name"checked in"
    #Approve file (if required)
    if ($Approve) {
    if ($spItem.ListItems.List.EnableModeration -eq $true) {
    $spFile.Approve("File automatically approved after copying from " + $filePath)
    if ($spItem["Approval Status"] -eq 0) { write-host $spfile.Name"approved" }
    else
    write-host "`nFile"$_.Name "already exists in" $spFullPath.Replace("/" + $_.Name,"") "and shall not be uploaded" -foregroundcolor Red
    $web.Dispose()
    And here is what the manifest file looks like...
    <?xml version="1.0" encoding="utf-8"?>
    <Columns>
    <Column Name="Column1" Type="Text">
    <Values>
    <Value>First File</Value>
    </Values>
    </Column>
    <Column Name="Column2" Type="Text">
    <Values>
    <Value>12585</Value>
    </Values>
    </Column>
    <Column name="Column3" type="Text">
    <Values>
    <Value>Some Data</Value>
    </Values>
    </Column>
    <Column name="Column4" type="Text">
    <Values>
    <Value>More Data</Value>
    </Values>
    </Column>
    </Columns>
    <Columns>
    <Column Name="Column1" Type="Text">
    <Values>
    <Value>Second File</Value>
    </Values>
    </Column>
    <Column Name="Column2" Type="Text">
    <Values>
    <Value>9876</Value>
    </Values>
    </Column>
    <Column name="Column3" type="Text">
    <Values>
    <Value>Some Data2</Value>
    </Values>
    </Column>
    <Column name="Column4" type="Text">
    <Values>
    <Value>More more Data</Value>
    </Values>
    </Column>
    </Columns>
    I can't figure out what am doing wrong...why my script is not iterating through the manifest file to upload the document along with the metadata. I would really appreciate any help. Thanks

    Hi Spawn,
    Name should not be a problem.. I will probably post you the entire code (I modified it to meet your goals for having multiple column xml nodes as well)
    For the code snippet below:
    a. In powershell all my changes will have ## prefixed comments
    b. in XML I have changed one column name to "Name" to replicate your case and also added a parent node for making the xml well formed.
    and the SharePoint output
    Please see the code below
    $web = Get-SPWeb "http://intranet/sites/test"
    $Library = "My Library"
    $docLibrary = $web.Lists[$Library]
    $ManifestFilePath = "D:\Manifest.xml"
    $LocalPath = "D:\UploadPath\"
    if ($ManifestFilePath)
    ##read the xml file as an xml object
    [xml]$metadataManifest = (Get-Content ($ManifestFilePath))
    write-host "Manifest file: " $metadataManifest
    else
    write-host "Manifest file not specified for categorising uploaded documents"
    #Check for the LibraryStartFolder parameter to specify a root folder
    if ($PSBoundParameters.ContainsKey('LibraryStartFolder')) {
    $folder = $web.GetFolder($docLibrary.Title + $LibraryStartFolder)
    else
    $folder = $docLibrary.RootFolder
    #Attach to local folder and enumerate through all files
    if($IncludeSubFolders) {
    $files = Get-ChildItem $LocalPath -Recurse
    else
    $files = Get-ChildItem $LocalPath
    $counter=0
    $files | ForEach-Object {
    #Check if the object is a folder - if so, create it in doc library
    if ($_.PSIsContainer) {
    if (($IncludeSubFolders) -and (!$FlattenStructure)) {
    #Generate folder path for creation in SharePoint
    #by looking at the parent folder on the local path
    $spFolderPath = ($_.Parent.FullName.Replace($LocalPath,"")).Replace("\","/")
    #Get the folder into which the new folder will be created
    #by adding the folder path generated above, if one existed
    if ($spFolderPath -eq "") {
    $currentFolder = $web.GetFolder($folder.Url)
    else
    $currentFolder = $web.GetFolder($folder.Url + $spFolderPath)
    #Check to see if subfolder already exists
    #and create it if not
    $testFolder = $currentFolder.SubFolders[$_.Name]
    if ($testFolder -eq $null) {
    write-host "`nAdding folder" $_.Name "to" $docLibrary.Title "in" $web.Title "..." -foregroundcolor Green
    $newFolder = $currentFolder.SubFolders.Add($_.Name)
    else
    write-host "`nFolder" $_.Name "already exists in" $docLibrary.Title "and shall not be created" -foregroundcolor Red
    else
    #Generate file path for upload into SharePoint
    if ($FlattenStructure) {
    $spFilePath = ("/" + $_.Name)
    else
    $spFilePath = ($_.FullName.Replace($LocalPath,"")).Replace("\","/")
    $spFullPath = $folder.Url + "/" + $spFilePath
    #Check if the file exists and the overwrite option is selected before adding the file
    if ((!$web.GetFile($spFullPath).Exists) -or ($Overwrite)) {
    #Add file
    write-host "`nCopying" $_.Name "to" $spFullPath.Replace("/" + $_.Name,"") "in" $web.Title "..." -foregroundcolor Green
    $spFile = $folder.Files.Add($spFullPath, $_.OpenRead(), $true)
    #$spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    ## ensure we pick the corresponding node in the columns xml (first file, first xml node, second file - second node likewise)
    #Walk through manifest XML file and configure column values on the file
    $metadataManifest.FileData.Columns[$counter].Column | ForEach-Object {
    #Single value text columns
    try
    if (($_.Type -eq "Text") -or
    ($_.Type -eq "Choice") -or
    ($_.Type -eq "Boolean") -or
    ($_.Type -eq "Number") -or
    ($_.Type -eq "Currency")) {
    $columnName = $_.Name
    write-host "Setting value on column"$columnName "..." -foregroundcolor Blue
    $_.Values.Value | ForEach-Object {
    $spItem[$columnName] = $_
    write-host "Value set to"$_
    catch {}
    #Multiple line text column
    try
    catch {}
    #Multiple choice columns
    try
    catch {}
    #Hyperlink columns
    try
    catch {}
    #Single User column
    try
    catch {}
    #Multiple User column
    try
    catch {}
    #Single value Managed Metadata column
    try
    catch {}
    #Multi value Managed Metadata column
    try
    catch {}
    #Update document with new column values
    $spItem.SystemUpdate($false)
    ##increment the counter to read the next xml node
    $counter++
    #Check in file to document library (if required)
    #MinorCheckIn=0, MajorCheckIn=1, OverwriteCheckIn=2
    if ($CheckIn) {
    if ($spFile.CheckOutStatus -ne "None") {
    $spFile.CheckIn("File copied from " + $filePath, 1)
    write-host $spfile.Name"checked in"
    #Approve file (if required)
    if ($Approve) {
    if ($spItem.ListItems.List.EnableModeration -eq $true) {
    $spFile.Approve("File automatically approved after copying from " + $filePath)
    if ($spItem["Approval Status"] -eq 0) { write-host $spfile.Name"approved" }
    else
    write-host "`nFile"$_.Name "already exists in" $spFullPath.Replace("/" + $_.Name,"") "and shall not be uploaded" -foregroundcolor Red
    $web.Dispose()
    and the xml file
    <?xml version="1.0" encoding="utf-8"?>
    <FileData>
    <Columns>
    <Column Name="Name" Type="Text">
    <Values>
    <Value>First File</Value>
    </Values>
    </Column>
    <Column Name="Column2" Type="Text">
    <Values>
    <Value>12585</Value>
    </Values>
    </Column>
    <Column name="Column3" type="Text">
    <Values>
    <Value>Some Data</Value>
    </Values>
    </Column>
    <Column name="Column4" type="Text">
    <Values>
    <Value>More Data</Value>
    </Values>
    </Column>
    </Columns>
    <Columns>
    <Column Name="Name" Type="Text">
    <Values>
    <Value>Second File</Value>
    </Values>
    </Column>
    <Column Name="Column2" Type="Text">
    <Values>
    <Value>12585</Value>
    </Values>
    </Column>
    <Column name="Column3" type="Text">
    <Values>
    <Value>Some Data</Value>
    </Values>
    </Column>
    <Column name="Column4" type="Text">
    <Values>
    <Value>More Data</Value>
    </Values>
    </Column>
    </Columns>
    <Columns>
    <Column Name="Name" Type="Text">
    <Values>
    <Value>Third File</Value>
    </Values>
    </Column>
    <Column Name="Column2" Type="Text">
    <Values>
    <Value>12585</Value>
    </Values>
    </Column>
    <Column name="Column3" type="Text">
    <Values>
    <Value>Some Data</Value>
    </Values>
    </Column>
    <Column name="Column4" type="Text">
    <Values>
    <Value>More Data</Value>
    </Values>
    </Column>
    </Columns>
    <Columns>
    <Column Name="Name" Type="Text">
    <Values>
    <Value>Fourth File</Value>
    </Values>
    </Column>
    <Column Name="Column2" Type="Text">
    <Values>
    <Value>12585</Value>
    </Values>
    </Column>
    <Column name="Column3" type="Text">
    <Values>
    <Value>Some Data</Value>
    </Values>
    </Column>
    <Column name="Column4" type="Text">
    <Values>
    <Value>More Data</Value>
    </Values>
    </Column>
    </Columns>
    <Columns>
    <Column Name="Name" Type="Text">
    <Values>
    <Value>Fifth File</Value>
    </Values>
    </Column>
    <Column Name="Column2" Type="Text">
    <Values>
    <Value>12585</Value>
    </Values>
    </Column>
    <Column name="Column3" type="Text">
    <Values>
    <Value>Some Data</Value>
    </Values>
    </Column>
    <Column name="Column4" type="Text">
    <Values>
    <Value>More Data</Value>
    </Values>
    </Column>
    </Columns>
    </FileData>
    Thanks and Regards,
    Partha
    AvePoint

  • Classpath in manifest file

    what is 'classpath' in manifest file used for?
    I tried to create classpath, but doesnt have any significant different....
    thanks
    YAn

    This is what the tutorial says about class-path in a manifest file:
    Download extensions are JAR files that are referenced by the manifest files of other JAR files. See the trail on the extension mechanism for information about extensions.
         In a typical situation, an applet will be bundled in a JAR file whose manifest references a JAR file (or several JAR files) that will serve as an extension for the purposes of that applet. Extensions
         may reference each other in the same way.
         Download extensions are specified in the Class-Path header field in the manifest file of an applet, application, or another extension. A Class-Path header might look like this, for example:
              Class-Path: servlet.jar infobus.jar acme/beans.jar
         With this header, the classes in the files servlet.jar, infobus.jar, and acme/beans.jar will serve as extensions for purposes of the applet or application. The URLs in the Class-Path
         header are given relative to the URL of the JAR file of the applet or application. For more details, see the link shown below:
    http://java.sun.com/docs/books/tutorial/jar/basics/manifest.html
    V.V.

  • Read Document in FileUtilities  cannot search a file with french character in the file name

    Hi,
    I am trying to search a file with french character in the file name like 'captures écran.doc' in my unix server directory, and Write the file somewhere, say in a list of documents or, write on file system to another directory.
    I am using to Read Document in FileUtilities of Foundation, but it cannot read the file due to french character in its name. Although it can find any other file name without these french characters.
    Tried renaming but that also cannot find the file with french character name.
    Please provide any idea to solve it using LC operation.
    Regards,
    Rohan Raj.

    Hi Thomas,
    Thanks for the post, but I have already found a solution to it a month ago. Sorry for not posting the solution.
    You just have to set the '-Djava.property.file.encoding=ISO8859-1' into JVM argument of your server startup, and bounce the server back to pick the new JVM arg set. And now the service Read Document in FileUtilities of Foundation will read all french characters.
    ISO8859-1refers to "Latin alphabet no. 1," consisting of 191 characters from the Latin script. This character-encoding scheme is used throughout The Americas,Western Europe, Oceania, and much of Africa. It is also commonly used in most standard romanizations of East-Asian languages.
    regards,
    Rohan Raj.

  • Serving up files with Russian chars in the file name

    Anyone know how to get CF 8 to serve up CFM files with
    Russian characters in the file name? I can get IIS to server up
    .html files but .cfm files turn in to ?????????.cfm files.
    For example, this:
    новостииобновления.cfm
    becomes this ??????????????.cfm and throws a CF error (File Not
    Found) when clicking on the link. The strange thing is I can see
    the Russian characters in the status bar when I mouse over the link
    but CF can't handle it. And IIS will serve up the file and replace
    all the chars with their URL entity equivalent.
    Any suggestions on how to fix?

    Open the Script Editor or AppleScript Editor in one of the subfolders of Applications and run the following:
    tell application "Finder" to quit
    if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is "1" then
    do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
    else
    do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
    end if
    delay 2
    tell application "Finder" to run
    If you change your mind later, run the script again.
    (93787)

  • How to use PDF files with links to other PDF Files

    How to use a PDF file with links to other PDF files that have been transferred to the same folder

    Are you using a mouse, or a trackpad on a laptop? Either way, your cursor is usually an arrow, right? And presumably it's working/moving MOST of the time, otherwise you wouldn't be able to do anything?
    For example, can you move the cursor arrow to the "Annotate" tool to click on it and go into Annotate mode? If so, can you click on the text tool? If so, does the cursor change to a crosshairs? At what point can you NOT move the cursor around the screen?
    Matt

  • Is it possible to add pic/diagram to SP file with link to another SP file?

    Hi,
    Is it possible to add a diagram, picture, or table to a SP file with link to another SP file?
    I know this is possible in, say, Word. For example, I can add a diagram and check a box to include a link to the source file - so that when the diagram in the source file updates, the diagram in my document also updates.
    This is also my goal in SP - instead of simply including a link to a document elsewhere in SP (or on the same site in SP), I would ideally like to display a diagram, picture, or table and include (behind the scenes if possible) to the source SP file
    so that, when the diagram/table in the source SP file updates, my SP file also updates accordingly.
    For example:
    Instead of:
           The diagram is located in:
           link
    I would ideally like:
           Diagram, picture, or table (with link associated with it) - users can click on the diagram or picture if they desire.
           The diagram or picture is updated whenever the source SP file containing the diagram or picture is updated (the source SP
           file will only contain a diagram, picture, or table)
    Any suggestions are welcome.
    Thank you very much.

    Is it possible to add a diagram, picture, or table to a SP file with link to another SP file?
    I know this is possible in, say, Word. For example, I can add a diagram and check a box to include a link to the source file - so that when the diagram in the source file updates, the diagram in my document also updates.
    This is also my goal in SP - instead of simply including a link to a document elsewhere in SP (or on the same site in SP), I would ideally like to display a diagram, picture, or table and include (behind the scenes if possible) to the source SP file so that,
    when the diagram/table in the source SP file updates, my SP file also updates accordingly.
    For example:
    Instead of:
           The diagram is located in:
           link
    I would ideally like:
           Diagram, picture, or table (with link associated with it) - users can click on the diagram or picture if they desire.
           The diagram or picture is updated whenever the source SP file containing the diagram or picture is updated (the source SP
           file will only contain a diagram, picture, or table)
    Any suggestions are welcome.
    Thank you very much.

  • "Could not find project's extension manifest file."

    I am trying to load the Illustrator SDK sample FreeGridUI.  In the documentation supplied by adobe, it says:
    1. In the IDE, choose File > Import > Flash Builder > Flash Builder Project.
    2. Select "Project folder" and browse to SDK_root\samplecode\FreeGridUI.
    3. Click Finish to import the project.
    4. Build the project.
    When I do that I get an error message that says:
    "Could not find project's extension manifest file. Make sure the manifest exists at .staged-extension/CSXS/manifest.xml."
    But as you can see from the attached screen shot, the manifest is in that exact location. 
    Also when I edit the manifest in the "bundle manifest editor" and then close the manifest tab, is asks me if I want to save the manifest.  When I choose yes and re-open the manifest... none of my changes have been saved.
    Anybody got any ideas?
    -Bill

    Okay,
       I feel stupid, but I also feel like adobe should feel stupid too.  Turns out I missed the "." at the beginning of the ".staged-extension" path.  But adobe put that folder in their sample without the "." in front.  So much for a "working sample."  Anyway, I dropped into terminal and did a "mv staged-exnestion .staged-extension" and now all is well.  Hope that helps someone.  Sorry for crying wolf.
    -Bill

  • Problems exporting Premiere Pro with SWFs in as .mov files.

    Hi,
    I'm not the most competent with Premiere and am having a few problems exporting my final movie.
    I am having problems with an animation (Screen size: 1024 x 576) I am producing; I've produced all the animation in Flash then exported the files as SWFS, and want to composite it in Premiere and export it as Quicktime Movie (H.264), as this seems to give the best image quality for the final movie. All the SWFs export from Flash and import into Premiere fine, and in the main the SWFs export fine from Premiere, however a few of the SWFs don't export into the final finished movie, leaving just a blank screen, and others only partially export, either stopping halfway through the shot or exporting with some of the layers from the SWF missing. I've tried re importing the files but I still encounter the same problems.
    Can anyone shed any light onto where I may be going wrong and what I can do to get the entire movie to export fully? Or if there is a better way of exporting the files from Flash to a final finished movie?
    If you need any other information let me know,
    Many thanks
    Josh

    Hmmm...
    I did a quick test in your behalf with a test project with and without "alpha glow" applied to all of the media.
    The results were actually kind of strange:
    - export to .mp4 utilized all cores (6-core box w/ Hyperthreads) with a smooth 82% utilization for the whole export; memory usage (also from task manager) went up and once it hit a maximum, it stayed there
    - export to .mp4 with "alpha glow" applied -> CPU usage started out pretty good, then memory usage maxed out and then actually cam down; after a bit, the CPU usage stabilized at around 22%, or about 25% of what it had been at the start of the export
    Smells to me like an Adobe bug or design-flaw.
    Anyway, good luck with your testing.
    I totally agree with Bill's suggest to do a full PPBM7 test on your new rig and report the scores back here - and to the PPBM7 site of course. This will help you to have confidence in your new hardware and setup. Once your hardware and configuration (for Win7, drive caching, Premiere settings, etc.) are working fine, then your particular workflow, etc. can be a separate troubleshooting step.
    Good luck!
    Regards,
    Jim

  • Tutoring to start a workspace file with project file

    I know that I should start with a workspace file and project file.  It is in the past now.
    I need to have a complete deployment to a customer PC.
    I have TS 3.5 and LV 8.2    ( I don't have any CVI or extra DLL,...) just pure TS 3.5, LV8.2 and two excel properties files.
    I have two sequence files and about 8 LV files.
    I tested everything on the development PC and "good". 
    I need a tutoring for the workspace file and project file.
    I open a new workspace and it ask for a project file  and I don't have any project file...!!

    trout00
    1. In the deployment utility dialog go to the Installer options and click on the 'Drivers and Components' button.
    2. The 'Dialog and Components' dialog is displayed. Check the 'Include Hardware Configuration from Measurement & Automation Explorer' box.
    3. Browse for the hardware configuration file.
    I am attaching the help related with this option (You can access the help by clicking on the Help button):
    Include Hardware Configuration from Measurement & Automation Explorer—Specifies to include the hardware configuration in the installer.
    Once you execute your custom installer on a target computer, and the system reboots, the installer attempts to import your Measurement & Automation Explorer (MAX) settings automatically. In many cases, this process occurs silently. However, certain configurations and import conditions require you to complete the import interactively as follows:
    If your installer includes an NI device driver and you recently installed hardware on the target computer, you must complete the Add Hardware Wizard. In Windows, select Start»Control Panel and complete the Add Hardware Wizard before you import your MAX settings. The import process prompts you to wait until the Add Hardware Wizard completes before you proceed with the import.
    If your installer is upgrading an existing NI device driver and the hardware was previously installed and operating properly on the target computer, the import process should complete automatically. The installer should not prompt you to complete the Add Hardware Wizard.
    If the MAX import process encounters a conflict between the settings in your configuration file and the settings in the configuration file currently on the target computer, the installer prompts you to complete the import process interactively to resolve these differences.
    Note  If you cancel the import process or the import fails, you can manually import the new configuration file once you correct the problem. Restart the import process by selecting File»Import from the menu within MAX.
    Hardware Configuration File—Specifies the hardware configuration file to include with the installer. Click Browse to select another file or click New to export a new configuration file.
    Note  This control is disabled if the Include Hardware Configuration from Measurement & Automation Explorer option is disabled.
    Hope it helps.
    Antonio Lie.
    Message Edited by Antonio Lie (NI) on 04-11-2007 01:33 PM

  • Quality problem when export to DV with QT

    Hello,
    With Imovie 11, Mountain Lion, Imac 24"
    When I export my movie with HD 1080 quality no problem,
    When I export my movie with QT to DV, I have huge pixelisation on vertical line on the movie. When people move for example, their legs and arms got zebra movement.
    That didn't happen before with 4/3 screen, looks like It's coming with HD 16/9 record.
    Any Idea ?
    Bruno

    killvanrea wrote:p.P.:I have many customization on it like - intel HD graphic driver, sound manager, compiz, eclipse  and so on... so I'll be happy if I can upgrade and dont losing all of them
    Running `pacman -R` without the -n switch will leave all of your configuration files alone and just remove the package files. In this case it might be helpful to remove anything you can without removing packages from the "base" group, to minimize conflicts. After successfully upgrading the remaining packages, run `pacman -S <packages>` to (re)install the newest version of the packages you removed. At least it has worked for me to avoid package conflicts in the past; your mileage may vary. See removing packages and pacman tips.
    If all else fails, in theory you could run something like `pacman -r /mnt -R $(pacman -r /mnt -Q | cut -d ' ' -f 1)` from a live CD to remove all packages, then use pacstrap to reinstall them. Use this as a last resort and make a backup first!

  • CS3 issue with ProRes files with projects over 8bpc

    Strange issue with ProRes clips I have had in AE projects in the past. Running CS3 on an Intel Mac with 10.5.8. If I bring an SD clip encoded in ProRes and I have the project set to anything over 8bit (16 or float) the clip just turns to noise, both in a comp and in the project viewer window. I can open the clip in AE (double click) and it appears just fine, same with just opening from the desktop. HD clips encoded into ProRes don't have any issue. The strange thing is that I have had some of this material in past projects with no problem. Nothing has really changed on this box since this cropped up. I've trashed prefs and resaved interpretation rules file, with no success. I also stripped out QT components to make sure I was not having a codec conflict. Has anyone run into something similar?
    I have a very similar set up at home and I am not having any issue with these same files.

    Todd,
         I do not. I did see a post of yours earlier regarding CS5 and AJA. Other issues I should look for?

  • Problem while exporting to PDF with japanese character in Crystal Report X1

    Hi,
    I am using Crystal report X1 with classic ASP on a Windows 2003 Enterprise Server, SP 2. In my application, I have to export the report into PDF, CSV, DOC formats. I am have Japanese strings in the report. While exporting to PDF, empty boxes has displayed in the place of Japanese string and in CSV file, question mark has been displayed instead of Japanese string. But the Doc file is exported correctly. I have not installed any language support software either in server or in client machine. I have used MS Gothic and Arial Unicode MS fonts for the text-objects which has Japanese strings.
    Please give me a solution so that I will get PDF file with Japanese strings instead of empty box or question mark.
    Do I need to install any language support pack software?
    Thanks in advance.
    Regards,
    Manju

    Hi Don,
    Thank You for your reply. I have resolved the issue of exporting to pdf from crystal report X1 having Japanese data after installing the language pack.
    But when I am exporting to CSV or TXT, i am getting ??? instead of Japanese characters. I have tried "export" through crystal report designer and got ??? instead of Japanese.
    The Crystal report version I am using is Crystal report X1  11.0.0.1282
    Crystal Report Desinger is installed in Windows Xp machine
    Font set for Text object is Arial Unicode MS, MS PMincho, MS PGothic
    Does the Crystal report X1 11.0.0.1282 has the UTF-8 support for CVS / txt
    Please provide me a solution
    Thanks in advance,
    Regards,
    Manju

  • Any Problem Running Office 2010 SP2 with Project Server 2010 SP1?

    We are running Project Server 2010 SP1 April 2013 CU and the desktop clients have now been upgraded to SP2 October 13 CU. We are having issues with projects in local cache showing as checked out when they are not actually checked out on the server. I was
    wondering if it is problematic to run the desktop client on a newer service pack than the server and if it could cause this type of issue?

    Hello, Aaron.
    The answer is YES, you'll probably have some issues.
    I would recommend:
    Downgrade clients to match Server's version
    Upgrade Server to SP2+October '13 CU
    And my preferred:
    Upgrade Server and clients to SP2 + '14 April CU

  • SVG file with links to other SVG files - links don't work

    I have an SVG image with a few dozen linked images, all of which are pointing to external SVG files. If I open the main SVG in a web browser, it loads up correctly with all the linked images, so I know the file is correct.
    When I open it in illustrator, I get the following message:
    Could not find a plug-in to read the linked file "test.svg". Choose Replace to select another file or Ignore to leave the link unchanged.
    If I choose Ignore, the file loads up but the linked SVGs are removed. Obviously Illustrator doesn't really need a plugin to read an SVG file, because it loads the main SVG with no problem.
    Meanwhile I have other links pointing to PNG files which all work fine. In fact I can open the main SVG, find one of the PNG links, and click Re-Link, and then link them to an SVG, and this will work! Although it doesn't work as desired, instead of making a link, it seems to import the external SVG's layers, which is not desired.
    I'm pretty sure it's just one of those things that will never work, but does anyone have any thoughts on making it work?
    FYI here's some source code from the main SVG, where it links to the external SVG:
    <image overflow="visible" width="420" height="300" id="_x30_1_13_" xlink:href="images\graphics\SVG\test.svg"  transform="matrix(0.2534 0 0 0.2534 438.8486 458.8145)">
                        </image>
    this link, to a PNG, works just fine:
    <image overflow="visible" width="420" height="300" id="_x30_1_14_" xlink:href="images\graphics\211.png"  transform="matrix(0.2534 0 0 0.2534 246.3306 458.8145)">
                        </image>
    and like I said, both links work fine when the main SVG is opened in a web browser.

    I think the problem is that illustrator just isn't capable of linking to an SVG from within an SVG. Try it yourself with two very simple files, I just did.
    create a "main.svg" with just a line
    create a "link.svg" with another line
    save a copy of link.svg as link.png (using export to web)
    -- now you have three files, put them all in the same directory just to make life easy
    in main.svg, file >> place >> link.png
    -- illustrator will place the PNG as a linked image
    in main.svg, file >> place >> link.svg
    -- illustrator will import layers from the SVG, it will not place it as a linked image
    If you save this file and open in a text editor, you'll see your image link to the PNG file, and you'll see two <line/> elements, one that you had in main.svg and another that you had in link.svg (it has now been imported into main.svg)
    In the text editor, try duplicating the image link, and change the href of your duplicate to link.svg, then save.
    Re-open main.svg in illustrator. It should give you the error message about the linked svg, the same one I saw originally.
    I did all this using CS6. Then I tried opening the final main.svg file in CC and saw the same error message.

Maybe you are looking for

  • Windows 7 64bit Drivers.

    Ok, so I've successfully installed 64 bit Windows 7 Professional with bootcamp. However when I run the Snow Leapord "setup.exe" I only get this message: "Boot camp X64 is unsupported on this computer model.". I have Snow Leopard installed an all my s

  • MS ACCESS JAVA CONNECTIVITY

    How can I connect MS ACCESS database with JAVA.....Please post the string that needs to be given in the getConnection method????

  • Filetransfer over sockets

    hi, im currently working on a filetransfer over sockets. this is what i do: i have a connection from the client to the server. on both sides i have a PrintStream for the output and a bufferedReader to read the responses. the client asks for a file an

  • Boot Camp Manager ERROR message

    Everytime i go into Bootcamp, Bootcamp Manager error comes up "Bootcamp manager has encounted a problem and need to close we are sorry for the inconvenience" I sended the error report several times, but no solution. I have re-installed the windows an

  • Setting for E-TDS

    Hello Friends, I need your help on my below requirements: Request you to please sugest with solution: 1.     E TDS No. should come in e-TDS certificate 2.     Vendor PAN no. should also appear in e-TDS 3.     how to generate e-generation of xls file