"Import Price Catalogs" fails with RATE not valid

Importing BLANKET using "Import Price Catalogs" but it fails with Error RATE cannot be null, IF I pass rate it fails with RATE not valid.
CASE#1
po_headers_interface
rate_type: Corporate
Rate: 6.5
rate_date: xx-xx-xxxx ( same as PO creation date)
CASE#2
po_headers_interface
rate_type: NULL
Rate: NULL
rate_date: NULL
PO currency is USD but its a china PO. ORG currency is USD.
Any help is appreciated.
Thanks

RDBMS : 11.1.0.7.0
Oracle Applications : 12.1.2
OS: WIN 7
Log File:
Purchasing: Version : 12.0.0
Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
POXPDOI module: Import Price Catalogs
Current system time is 13-APR-2011 13:23:43
+-----------------------------
| Starting concurrent program execution...
+-----------------------------
Arguments
Blanket
N
N
APPROVED
N
Y
Start of log messages from FND_FILE
To get the log messages for PDOI, please use the following id to query against FND_LOG_MESSAGES table:
AUDSID = 36565489
End of log messages from FND_FILE
Executing request completion options...
------------- 1) PRINT   -------------
Printing output file.
Request ID : 24725515      
Number of copies : 0      
Printer : noprint
Finished executing request completion options.
Concurrent request completed successfully
Current system time is 13-APR-2011 13:23:44
---------------------------------------------------------------------------

Similar Messages

  • Error Landed Cost - Customs rate not valid (SAP B1 9.0 PL10)

    Hello experts,
    We would like your advise on the following issue.
    We are currently using SAP Business One 9.0 (PL10) and we are trying to add a Landed Cost document, but the following error occurs:
    Customs rate not valid.  [Landed Costs - Rows - Duty Rate]
    The SAP Note: '1928862 - An Error occurs when adding Landed Costs', which describes the error, is listed in the References section of PL09 and PL10 upgrade. However, the error still occurs.
    Any advise on how to solve this issue?
    Kind Regards,
    Vassilis Korolis

    Hi,
    Is it happening for same scenario has mentioned in SAP note? If yes, raise ticket to SAP support.
    Thanks & Regards,
    Nagarajan

  • Patch failing with Class not found: oracle.apps.ad.jri.adjcopy

    Hi.
    Running a patch today and it is failing with:
    Class not found: oracle.apps.ad.jri.adjcopy
    The log states this:
    STRT_TASK: [Run adjcopy.class] [] [Tue Mar 02 2010 13:18:22]
    Running adjcopy.class:
    adjava -mx512m -nojit oracle.apps.ad.jri.adjcopy @D:\oracle\testappl\admin\TEST\out\apps.cmd
    Error:
    Program exited with status 1
    Cause: The program terminated, returning status code 1.
    adjava -mx512m -nojit oracle.apps.ad.jri.adjcopy @D:\oracle\testappl\admin\TEST\out\apps.cmd
    Calling D:\oracle\testcomn\util\jre\1.1.8\bin\jre.exe ...
    Class not found: oracle.apps.ad.jri.adjcopy
    AD Run Java Command is complete.
    D:\oracle\testappl\admin\TEST\out>
    I have tried running maually and still no luck.
    It is a frteshly cloned environment. Autoconfig has been run successfully.
    The only help from Metalink was that I have unzipped the patches in a folfer with space in it. So I renamed folder but still same error.
    The patch is 7415848 ATG Framework Patch.
    oracle 11.5.10.2, Windows 2003, RDBMS 10.2.
    Thanks in advance,
    DA
    Another thing I tried was to relink, but got the following:
    Do you wish to force regeneration of all jar files? [No] ?
    Generating any out of date or missing jar files.
    Signing product JAR files in JAVA_TOP -
    D:\oracle\testcomn\java
    using entity Customer and certificate 1.
    Class not found: oracle.apps.ad.jri.adjversion
    AD Administration error:
    aiojavaGetJavaVersion(), ERROR [code= 1] creating javaversionFile.
    Error : java version file format not correct
    adogjf() Unable to generate jar files under JAVA_TOP
    Backing up restart files, if any......Done.
    You should check the file
    D:\oracle\testappl\admin\TEST\log\adadmin.log
    for errors.
    D:\oracle\testappl\ad\11.5.0\bin>
    Edited by: Dan A on Mar 2, 2010 10:03 AM

    Dan,
    Please see if these documents are applicable.
    Note: 392870.1 - Generate product JAR files aiojavaGetJavaVersion(),ERROR creating javaVersionFile
    Note: 264911.1 - adutilities error out aiojavaGetJavaVersion(), Error creating javaversionFile
    Regards,
    Hussein

  • Import Purchase orders failing with numeric/value error issue

    Import Purchase orders failing with numeric/value error issue

    Hi All,
    Import Purchase Orders program is failing with PL/SQL Numeric or Value Error.
    DECLARE
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 55
    Kindly help me to get the issue fixed

  • Assistance with Error - virtualmachinemanager.psd1 module cannot be imported, one or more members are not valid.

    Hello,
    We use Orchestrator, System Center 2012 version 7.1.3022.0.  I have an orchestrator script that reads through a txt file to find unresponsive virtual machines (Windows 2000 VM's cannot have the SCOM agent installed on them) so we can restart any
    machines that are not responding. 
    The step to Get Computer/IP Status runs successfully in that it reports which VM's are running and which are not running.  The next step then is to run a Powershell script that restart the VM's that are down.  Here is my Powershell Script:
    $ErrorActionPreference = "Stop"
    try
    Import-Module 'C:\Program Files\Microsoft System Center 2012\Virtual Machine Manager\bin\psmodules\virtualmachinemanager'
    Get-VMMServer -ComputerName mlivsmsscvmm
    # get vm object
    $vm = get-SCVirtualMachine | where { $_.ComputerName -eq "\`d.T.~Ed/{A255D4D8-BD4D-4FF4-9A51-B1ABA82720B9}.Computer-name\`d.T.~Ed/" }
    # save data to publish for future activities
    $OrigVMMStatus = $vm.StatusString;
    $AlertAdded = "\`d.T.~Ed/{A4B4EC8A-E4F8-40AB-9897-6906EAE139AE}.TimeAdded\`d.T.~Ed/";
    $VMName = $vm.Name;
    # we are at this point because the VM is not responding.
    # Start VM - if VM status is "Running" then Stop the VM first
    if($vm.StatusString -eq "Running")
    { Stop-SCVirtualMachine -vm $vm -force };
    Start-Sleep -s 20;
    if($vm.StatusString -eq "Stopped")
    { Start-SCVirtualMachine -vm $vm
    $VMrestart = "Yes"
    catch
    Throw $_.Exception
    Upon running the Powershell script I receive the following error in Orchestrator Log histry:
    The 'C:\Program Files\Microsoft System Center 2012\Virtual Machine Manager\bin\psmodules\virtualmachinemanager\virtualmachinemanager.psd1' module cannot be
    imported because its manifest contains one or more members that are not valid.
    This script used to run without errors and nothing has been upgraded in our environment with regards to Orchestrator, VMM, SCOM.  How would I find the 'one or more members' that is causing my issue?
    Thank you.

    Hi,
    the thing is that PowerhShell in the "Run .Net Activity" is version 2.0 (http://www.sc-orchestrator.eu/index.php/scoblog/102-running-powershell-30-with-the-run-net-script-activity)
    So, try your script embedded in PowerShell {}
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • Import Map file failes with single/Multiple Occurance

    Hi All,
    Using a file I mapped the source and target structures.. The source file has one multiple occurance node . so I used look up option in source table and mapped with target fields...saved the map..
    When I used the following XML file .. I used the same map created befoe... I see the Remote System fields are not failed to map to target structure.. How can I get rid of this issue....
    <Product>
    --<Name>Rajeev</Name>
    --<REMOTE_SYSTEM>
    <Z_MDM_REMOTE_SYSTEM>
           <Z_MDM_SYSTEM_NAME>Panaroma AW Customer ID</Z_MDM_SYSTEM_NAME>
         <Z_MDM_VALUE>600013</Z_MDM_VALUE>
         <Z_MDM_VALUE1>600011</Z_MDM_VALUE1>
         <Z_MDM_VALUE2>600012</Z_MDM_VALUE2>
    </Z_MDM_REMOTE_SYSTEM>
    --<REMOTE_SYSTEM>
    </Product>
    Using above I saved the map.. Its fine.. I am able to import data in to MDM..
    When the file has multiple values of remote system as shown below then field are unmapped... vice versa is also the same..
    <Product>
    --<Name>Rajeev</Name>
    --<REMOTE_SYSTEM>
    <Z_MDM_REMOTE_SYSTEM>
           <Z_MDM_SYSTEM_NAME>Panaroma AW Customer ID</Z_MDM_SYSTEM_NAME>
         <Z_MDM_VALUE>600013</Z_MDM_VALUE>
         <Z_MDM_VALUE1>600011</Z_MDM_VALUE1>
         <Z_MDM_VALUE2>600012</Z_MDM_VALUE2>
    </Z_MDM_REMOTE_SYSTEM>
    <Z_MDM_REMOTE_SYSTEM>
           <Z_MDM_SYSTEM_NAME>Panaroma AW Customer ID</Z_MDM_SYSTEM_NAME>
         <Z_MDM_VALUE>600013</Z_MDM_VALUE>
         <Z_MDM_VALUE1>600011</Z_MDM_VALUE1>
         <Z_MDM_VALUE2>600012</Z_MDM_VALUE2>
    </Z_MDM_REMOTE_SYSTEM>
    --<REMOTE_SYSTEM>
    </Product>
    Do I need to create a seperate map for multiple iteration and single occurance..OR missing some thing? Please advice..
    Thanks
    Rajeev

    HI Ravi,
    May be I took the wrong example..
    I am not talking about remote systems... I am talking about XML source file.. If the XML source file consist of single occurance of any qualifier table then those qualifier table fields are not mapping.. IF I used the base file as multiple occurance Qualifier table....
    In the same way if I use base file as single occurance of Qualifer table .. Qualifier Fields are not getting mapped if the source file is single occurance..
    Suppose :If I use the base file as this and save the map.. I am able to import files whcih are single occurance of EMAIL...
    Fields are not getting mapped if the EMAIL occurnace is multiple.....
    <Product>
    --<Name>Rajeev</Name>
    --<EMAIL>
    <Z_MDM_EMAIL>
    <ID>ABC_yahocom</ID>
    <TYPE>TEMP</TYPE>
    </Z_MDM_EMAIL>
    --</EMAIL>
    </Product>
    In the same way: If I use the following XMl as base and create a map and save it.. Able to import files which had email occurance multiple.. Unable to import data and the fields are not mapped ......
    <Product>
    --<Name>Rajeev</Name>
    --<EMAIL>
    <Z_MDM_EMAIL>
    <Z_MDM_EMAIL>
    <ID>ABC_yahocom</ID>
    <TYPE>TEMP</TYPE>
    </Z_MDM_EMAIL>
    <Z_MDM_EMAIL>
    <ID>CDE_yahocom</ID>
    <TYPE>TEMP</TYPE>
    </Z_MDM_EMAIL>
    --</EMAIL>
    </Product>
    Please advise.. Thanks Rajeev.

  • RSEOUT00 failing with "Could not write IDoc to file" TPRI_DEF table

    Outbound Idoc processing fail with the following error:
    Could not write IDoc to file
    Message no. EA299
    Diagnosis
    The system could not convert data from the data record 000027.
    Procedure
    Check the port definition of the receiver port.
    You can use the "Continue despite conversion error" option to write the IDoc to the file from transaction BD87 with replacement characters.
    Short dump indicate that there is a some junk character in th e TPRI_DEF for program SAPLSPRI that it is unable to convert.
    I have set the flag on the we21 port to "continue despite conversion error" and that seem to help, but I would like to figure out how to fix the junk characters from coming through from the TPRI_DEF table.  
    This is what shows up in the short dump after RSEOUT00 is run.
    TPRI_DEF                                   /  /       :  :     00002932
        010GV21            \0\0\0\0\x0006āȂ耀㐱〲\0\0嬇\0ሟ鴂푎眩\x0802儔잏퉓
    I do not see any entries for area "GV" in the table, there is one for "GF".  which has no user assigned to it and it is of key version 21.
    I am not sure if the table is supposed to have an entry with no user assigned?
    thank you for looking at this issue .

    HI Jurgen,
    we have the same issue, chinese charecter is in PO text header. so facing error. If we click unicode format then it works fine as my testing in development.
    I just want to knom what is the impact if i clicked directly unicode format ?( with refernce to your reply above " have you set the Unicode format flag directly above in WE21?" )
    I doc is going from SAP sytem - (PO information )
    Pls adivce..
    waiting for your reply..
    Thanks in advance

  • Install of SAP HANA Studio Dev Ed v1.00.80 fails with "Could not create the Java Virtual Machine"

    Hello,
    Scope: JVM error during initial install of SAP HANA Studio Developer Edition v1.00.80, Win86/32bit
    Source: installation files pulled from HANA Studio tab at https://hanadeveditionsapicl.hana.ondemand.com/hanadevedition/, which is a link from the main HANA site of http://scn.sap.com/community/developer-center/hana.  zip folder: "sap_hana_win32_studio_rev80"
    Targeted O/S: Windows 7, 32-bit, local Java is SE 7, update 67.   Java environment has been confirmed via checks provided at http://www.java.com/en/download/manual.jsp
    Actions taken:
    Attempted to update the installation's eclipse.ini file by reducing the -Xmx value; see details below.
    Read thru postings such as http://scn.sap.com/thread/3390626 and the threads it recommended.
    Checked OSS (ie Note 1859686 - HANA Studio does not start)
    Description of installation error:
    Shortly after executing "hdbinst", it fails with the error "Could not create the Java Virtual Machine".  I've verified that there is nearly 3G of memory free.  What I did notice, as shown in the attached files, is that Eclipse is part of this installation and it's pre-loaded with the "eclipse.ini".  I firmly believe the solution could be to reduce parameter "-Xmx1024m" to "-Xmx512m" but it's a catch-22 because even after updating eclipse.ini (in installation folder C:\Program Files\SAP\hdbstudio\tmp_p2director2014.08.13_13.36.44\director), the install program requires that the "hdbstudio" folder to be empty upon restarting it.
    Since the installation is basically a package with a lot of .jar files, there is no eclipse.ini file available in the source install folder; otherwise, updating it there would be the easiest solution if that option were available. The file is only available in the targeted deployment folder above.
    If you have encountered this same error and were able to resolve it, I would be grateful to know of your solution.  Thanks very much.
    FYI: the HANA Client installed with no issues.
    Jim Cleek
    FYI: the images below reflect the sequence of images produced during the installation.
    after clicking OK above, the screen below gets updated (see the "is not empty" msg).
    Below is the eclipse.ini file located in the deployed/target folder:
    Message was edited by: Jim Cleek
    FYI: Using information from the SAP HANA Database - Studio Installation and Update Guide, I tried to override the installation's use of its eclipse.ini file by passing my own modified version (with "-Xmx512m") of that file that was placed in a separate folder.  The cmd used via DOS window was "hdbsetup.exe -a studio --configfile=C:\Users\Admin\Downloads\eclipse.ini" and even though it successfully launched the SAP HANA Lifecycle Management gui, it failed on the first step with the same JVM create error as above because it appears to have used its own eclipse.ini file, which has "-Xmx1024m".

    Update: a message was opened with SAP but unfortunately they could not provide a resolution for this particular scenario.  They admitted that the eclipse.ini file cannot be updated since it is bundled as part of the installation package.  One point to make that I did not make before was that this was being attempted on an Oracle VirtualBox (4.3.10); the SAP HANA contact said he assumed that SAP has not tested this particular scenario, thus it could not be supported.
    Resolution: the end result was to abort trying to install SAP HANA Client and Studio on the Oracle VirtualBox but to install it locally on my own desktop, which runs on Windows 7 Enterprise 64-bit with 8G of memory.  The SAP HANA files below were downloaded, extracted and installed successfully in the order shown.
    FYI: the Studio installation detected that a 64-bit version of Java was not installed so I installed that and then adjusted the User environmental variable JAVA_HOME to point to that new path, leaving the System variable still pointing to the pre-existing 32-bit Java path.
    SAPCAR 7.20 -> Windows on x64 64bit:  SAPCAR_315-20010453.EXE
    IMDB_CLIENT100_80_0-10009664.SAR   Revision 80 for SAP HANA CLIENT 1.00
    Support Package SAP HANA CLIENT 1.00 Windows on x64 64bit
    IMC_STUDIO100_80_0-20007647.SAR   Revision 80 for SAP HANA STUDIO 1.00
    Support Package SAP HANA STUDIO 1.00 Windows on x64 64bit
    jre-7u67-windows-x64.exe - http://www.oracle.com/technetwork/java/javase/downloads/jre7-downloads-1880261.html
    Jim Cleek
    HP Enterprise Services

  • Importing from libary fails - With no error.

    I recently downloaded a bunch of music from ocremix.org (completely legal - don't worry), and i cant seem to import it into my itunes library. when i try importing files it only imports one of perhaps, 25-30 songs.
    i've also tried importing them singly, and still does not give me an error.
    are there any other programs i can use to download music to my ipod, any settings i can fiddle with that i dont know of?
    thank you for any replies
    windoze IBM laptop Windows XP Pro

    Alas - its my own stupidity. there was a problem with the copy and all my songs are 1kb.
    Argh. sorry to waste your time.

  • Downloading via XHR and writing large files using WinJS fails with message "Not enough storage is available to complete this operation"

    Hello,
    I have an issue that some user are experiencing but I can't reproduce it myself on my laptop. What I am trying to do it grab a file (zip file) via XHR. The file can be quite big, like 500Mb. Then, I want to write it on the user's storage.
    Here is the code I use:
    DownloadOperation.prototype.onXHRResult = function (file, result) {
    var status = result.srcElement.status;
    if (status == 200) {
    var bytes = null;
    try{
    bytes = new Uint8Array(result.srcElement.response, 0, result.srcElement.response.byteLength);
    } catch (e) {
    try {
    Utils.logError(e);
    var message = "Error while extracting the file " + this.fileName + ". Try emptying your windows bin.";
    if (e && e.message){
    message += " Error message: " + e.message;
    var popup = new Windows.UI.Popups.MessageDialog(message);
    popup.showAsync();
    } catch (e) { }
    this.onWriteFileError(e);
    return;
    Windows.Storage.FileIO.writeBytesAsync(file, bytes).then(
    this.onWriteFileComplete.bind(this, file),
    this.onWriteFileError.bind(this)
    } else if (status > 400) {
    this.error(null);
    The error happens at this line:
    bytes = new Uint8Array(result.srcElement.response, 0, result.srcElement.response.byteLength);
    With description "Not enough storage is available to complete this operation". The user has only a C drive with plenty of space available, so I believe the error message given by IE might be a little wrong. Maybe in some situations, Uint8Array
    can't handle such large file? The program fails on a "ASUSTek T100TA" but not on my laptop (standard one)
    Can somebody help me with that? Is there a better way to write a downloaded binary file to the disk not passing via a Uint8Array?
    Thanks a lot,
    Fabien

    Hi Fabien,
    If Uint8Array works fine on the other computer, it should not be the problem of the API, but instead it could be the setting or configuration for IE.
    Actually using XHR for 500MB zip file is not suggested, base on the documentation:
    How to download a file, XHR wraps an
    XMLHttpRequest call in a promise, which is not a good approach for big item download, please use
    Background Transfer instead, which is designed to receive big items.
    Simply search on the Internet, and looks like the not enough storage error is a potential issue while using XMLHttpRequest:
    http://forums.asp.net/p/1985921/5692494.aspx?PRB+XMLHttpRequest+returns+error+Not+enough+storage+is+available+to+complete+this+operation, however I'm not familiar with how to solve the XMLHttpRequest issues.
    --James
    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.

  • Suplied activating pin comes with music not valid ...

    Hi there,
    Just picked up a brand new X6.
    When I try to activate my  one year free "comes with music" theres a message saying my pin is not valid for this region..
    I live in the Netherlands, surely that can't be the problem :-)
    Any feedback would be nice.
    O and yes I have entered the correct pin, multiple times I must say..
    Thanks in advance
    M  

    ok i just got the solution:
    The Ovi Player, when installing, sometimes defaults to a different Ovi Music store than the one selected. Instead the installer selects the regional settings from the Operating System and sets the Ovi Music Store to that country. If this is the case, manually select the store of the country you wish to log in to.
    Run the following command:
    Start > Run > oviplayer://musicplayer/?setTerritory=en-GB
    The en-GB needs to be replaced with the code for the region that you want to be pointed at. See below for all the correct URI commands:
    oviplayer://musicplayer/?setTerritory=en-GB
    oviplayer://musicplayer/?setTerritory=fr-FR
    oviplayer://musicplayer/?setTerritory=de-DE
    oviplayer://musicplayer/?setTerritory=it-IT
    oviplayer://musicplayer/?setTerritory=es-ES
    oviplayer://musicplayer/?setTerritory=nl-NL
    oviplayer://musicplayer/?setTerritory=en-IE
    oviplayer://musicplayer/?setTerritory=fi-FI
    oviplayer://musicplayer/?setTerritory=sv-SE
    oviplayer://musicplayer/?setTerritory=da-DK
    oviplayer://musicplayer/?setTerritory=en-AU
    oviplayer://musicplayer/?setTerritory=zh-SG
    oviplayer://musicplayer/?setTerritory=pt-pt
    oviplayer://musicplayer/?setTerritory=nb-no
    oviplayer://musicplayer/?setTerritory=ar-AE
    oviplayer://musicplayer/?setTerritory=de-CH
    oviplayer://musicplayer/?setTerritory=de-AT
    oviplayer://musicplayer/?setTerritory=es-MX
    oviplayer://musicplayer/?setTerritory=pt-BR
    oviplayer://musicplayer/?setTerritory=af-ZA
    oviplayer://musicplayer/?setTerritory=pl-PL
    oviplayer://musicplayer/?setTerritory=hi-IN
    oviplayer://musicplayer/?setTerritory=ms-MY
    oviplayer://musicplayer/?setTerritory=ru-RU
    Once you’ve got the corresponding URI:
    For Windows XP, Vista Business/Enterprise and Windows 7 users:
    * Start/Orb > Run
    * Copy the URI into the run box and then Enter.
    * Ovi Music Player should launch (or activate, if it’s already running).
    * Wait a few seconds and you should find the Ovi Player now directs to the correct store and, on restart, your homepage will be that store.
    * If you see 'No internet connection...' message, click on the Home button and wait for the new page to load.
    * Even after doing this, you are not able to access the LIVE store, delete the MDataStore.db3 file and start Ovi Music Player again.
    * On the start-up screen, select correct country location
    For me its working now ....though its the german store its fine

  • Manual Kernel Compilation fails with "Error: not a valid kernel..."

    I wanted to try out the Zen kernel to compile my own custom kernel. The basic steps that I did were:
    1. $ make localmodconfig
    2. $ make -j3
    3. # make modules_install
    4. # cp -v ~/<build directory>/arch/x86_64/boot/bzImage /boot/vmlinuz-linux-zen-3.1.4.img
    5. # mkinitcpio -k vmlinuz-linux-zen-3.1.4 -g /boot/initramfs-linux-zen-3.1.4
    and I get the error:
    ==> ERROR: '/lib/modules/vmlinuz-linux-zen-3.1.4' is not a valid kernel module directory
    Inside of /lib/modules I have a new files called "3.1.4-zen-ARCH-g30db333 (and the original files that were there from the stock kernel).
    Inside of /boot/ I have the stock image and the stock initram as well as "vmlinuz-linux-zen-3.1.4.img"
    Which step am I missing? Also, I was thinking it was possible to NOT use an initram if I just compiled the ext2 and ext4 (root is ext4) into the kernel instead of building them as modules. Is my thinking correct? Also, if anyone needs a reason why I'm using the zen sources instead of the nice Liquorix binary, the answer is simply that I wanted to mess around with it to satisfy my curiosity. Thanks.

    As per the man page:
    -k kernelversion
    Use kernelversion, instead of the current running kernel. This may be a path to a kernel image or a
    specific kernel version. If specified as a path to an image, this will always be prefixed by the basedir.
    You've picked... neither? I guess you want "/boot/vmlinuz-linux-zen-3.1.4.img" or "3.1.4-zen-ARCH-g30db333".
    Compiling the filesystem module into the kernel alone is not sufficient to avoid using an initramfs. You also need, at a minimum, drivers for the disk controller and a block device driver.
    Last edited by falconindy (2011-12-08 04:43:21)

  • JWSDP 1.6 xws-security Simple fails with "block not properly padded"

    Environment:
    - Windows 2000
    - Tomcat50-jwsdp
    - JAVA_HOME=C:/Progra~1/Java/jdk1.5.0_05
    - Security environment handler: SecurityEnvironmentHandler.java supplied with JWSDP 1.6 (Hello, Ron!)
    I get the following in the Tomcat Window:
    ==== Received Message End ====
    Nov 13, 2005 10:38:56 AM com.sun.org.apache.xml.internal.security.encryption.XMLCipher decryptKey
    INFO: Decryption of key type http://www.w3.org/2001/04/xmlenc#tripledes-cbc OK
    Nov 13, 2005 10:38:56 AM com.sun.xml.wss.impl.apachecrypto.DecryptionProcessor decryptElementWithCipher
    SEVERE: WSS_ENC0004: Exception [ Given final block not properly padded ] while trying to decrypt message
    Nov 13, 2005 10:38:56 AM com.sun.xml.wss.impl.filter.DumpFilter process
    INFO: ==== Sending Message Start ====
    <?xml version="1.0" encoding="UTF-8"?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:enc="http://schemas.xmlsoap.org/soap/enco
    ding/" xmlns:ns0="http://xmlsoap.org/Ping" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.or
    g/2001/XMLSchema-instance">
    <env:Body>
    <env:Fault>
    <faultcode xmlns:ans1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">ans1:Fail
    edCheck</faultcode>
    <faultstring>Unable to decrypt message</faultstring>
    </env:Fault>
    </env:Body>
    </env:Envelope>
    ==== Sending Message End ====
    Please help!
    George

    Hi, I got the xws-security/samples/simple application
    working successfully with my own keystores. I have 2
    questions regarding this sample application.
    1) When running the application with the
    encrypt-server.xml and encrypt-client.xml
    configuration, why is it necessary to import the
    client's certificate into the server's truststore and
    the server's certificate into client's truststore when
    their certificates have already been signed by a
    trusted root CA (e.g. Verisign), whose certificate is
    in both truststores? Shouldn't their certificates
    containing their public keys get automatically
    exchanged during the connection request? It's a pain
    to publish a web service and expect a manual public
    certificate import for each client wanting to use the
    service.Certificates are sent only when the keyReferenceType is "Direct" which is the default. It's possible that our code is checking the certificate sent with one found in the KeyStore, but a quick scan of the code doesn't show it. If that's what's happening it's a bug. All of the other key reference strategies send only a referece to the sender's certificate in which case the reciever must have a copy of that certificate in its keystore.
    2) I use Tomcat to run the sample application and did
    set up the SSL connector to point to the keystores.
    When the client connects to the server, it uses a
    http endpoint not https. I'm aware that htpps is
    needed for SSL support but not clear on where does
    https come into play during the client's
    request/server's response process.We share the SSL keystore so that certificates don't have to be stored in more than one place. The functionality of XWS-Security and SSL is logically the same so it make sense to use the same keystore. XWS-Security operates completely separately from the transport and never knows whether HTTPS is in use or not.
    Phil Goodwin
    Technical Lead
    XWS-Security

  • Trying to verify my app using codesign, but it fails with "does not satisfy its designated Requirement"

    Hello,
    When attempting to verify my ios app using codesign it fails:
    macmini:MyApp admin$ codesign -vvvv Payload/MyApp.app
    Payload/MyApp.app: valid on disk
    Payload/MyApp.app: does not satisfy its designated Requirement
    I tried to diagnose it, so I ran this command that as far as I know shows what the requirements are:
    macmini:MyApp admin$ codesign -d -r- Payload/MyApp.app Executable=/Volumes/Share/Temp/appstore/MyApp.3.12.2.0/Payload/MyApp.app/MyApp designated => identifier "com.bla1.bla2" and certificate root = H"40characterstring"
    But I'm not sure how to proceed now. The identifier looks correct and not sure what to do with that 40 character string for the certificate root. Any ideas?
    Thanks in advance!

    Hi candn14 and welcome to the forums!
    Since internet connection is working fine on the laptop computer when plugged directly into the modem, you just need to configure your router settings.
    Are you using a DSL or Cable connection? Please see the links below on how to configure your router with your internet provider (ISP).
    Setting-Up a Router with Cable Internet Service
     Setting-Up a Router with DSL Internet Service
    Once you are finished doing so and your laptop is able to connect to the internet when connected to the modem > router > laptop, then you are now ready to configure the wireless settings of the router for you to be able to connect wirelessly.
    Here are the steps:
    Setting-Up the Wireless Settings on a Router
    And please secure your network w/ a password.
    Setting-Up Wireless Security on a Linksys Router
    Please feel free to ask any questions again if you encounter any problems. Hope this helps.

  • Import DNG Hang Problem with OSX not with Win 7

    I installed LR4 on both my Mac Pro and Win7 machines for comparison purposes and have encountered a problem with importing files and converting to DNG format with OSX that is not present with Win7.
    OSX machine
    first gen Intel MAC Pro + 8GB memory multiple disks OSX 10.7.2
    Win7 Machine - latest set of MS patches installed
    Sandy Bridge Processor I5 2500K + 8GB memory multiple disks
    On both machines:
    I am importing 12 test images taken with my Nikon D300 and using a Kingston USB card reader
    Copying to a data only disk that does not contain the catalog
    Convert to DNG with copy to a sub-directory
    Renaming the files to DSC_0001.DNG sequence format
    Standard Previews
    Dont import suspected duplicated enabled
    No develop settings
    Metadata with a simple copyright statement
    OSX seemed to import the 12 DNG's ok as they all showed up on the Library grid screen... but the import seemed to hang before completion and no CPU was being consumed - this was prior to the previews being generated
    I waited for 10 minutes with no CPU activity and then cancelled the Lightroom task, at that point LR4 generated the previews and everything looks fine, I can modify the DNG images and everything seems normal with them
    With Win7 everything went as expected and completed in under 1 minute
    I have screen shots available and I can reproduce this behaviour consistently on OSX

    UPDATE - Further testing
    I tried to import the images into LR3 and it worked fine on OSX (I don't have LR3 on WIN7)
    However when under LR4 the hanging problem also occurs if I do a straight copy as well (ie: Dont convert to DNG format)

Maybe you are looking for

  • How to get Target document

    Dear Experts, Plz have a look on this query for Total Purchase Report. It's working fine. All I need is that Target Documents of A/P Invoice should also return on Report in front of A/P Invoice document with details like A/P Cr. Memo No, DocTotal. *S

  • Booklet Printing in Acrobat Pro 8 Help!

    I am printing 500 of an 18 page - 5 page in the signature - booklet through Acrobat Pro 8.0.1. It takes HOURS for the file to load into the printer and I am only trying to print 50 at a time. I changed the default printer to Adobe PDF 8.0.1 and that

  • U430 dull display colors

    I got a new u430 touch. Everything seems great except the display. I get the feeling that the colors are washed out and no black levels. Tried a simple test http://www.lagom.nl/lcd-test/black.php  Unable to see the first 5 black squares. Poor contras

  • Is my mac compatible for Final Cut Pro?

    Hi, I was wondering if my Mac OS X is compatible for any of the final cut pro studios? It's about 5 or 6 years old. Or, does the software only work on imac computers? Is there any way I can bring my computer in and get better RAM or something to hope

  • Connector program

    Hi all, I'm trying to register a .NET program in SAP gateway. But when it gets registered it is registered wwith the below attributes TP Name: aspnet_w Syst type: NORMAL_CLIENT Status: Connection pending But I connected with the follwing parameters -