Help with a SOAP message

Wondering if it's possible to send a byte array in a SOAP message?
This is what I originally have, but now I need to send an additional variable that's a byte array.
//create connection
      SOAPConnectionFactory soapConnFact = SOAPConnectionFactory.newInstance();
      SOAPConnection connection = soapConnFact.createConnection();
      //create message
      MessageFactory msgFact = MessageFactory.newInstance();
      SOAPMessage msg = msgFact.createMessage();
      //add SOAP action to header
      MimeHeaders headers = msg.getMimeHeaders();
      headers.addHeader("SOAPAction", "url");
      //create objects for message parts
      SOAPPart soapPart = msg.getSOAPPart();
      SOAPEnvelope envelope = soapPart.getEnvelope();
      SOAPBody body = envelope.getBody();
      //populate body and create main element and namespace
      SOAPElement bodyElement = body.addChildElement(envelope.createName("Name", "Name", "http://tempuri.org/"));
      //add content
      bodyElement.addChildElement("username").addTextNode(_user);
      bodyElement.addChildElement("password").addTextNode(_password);
      bodyElement.addChildElement("xmlStr").addTextNode(_xml);
      //save message
      msg.saveChanges();

The whole point of the Base64 encoding was so that you would have a string. So your question about whether you can now send a byte array indicates a serious degree of incomprehension. Could you please review the entire thread before posting again?
And yes, XML is a text format. You are using XML are you not? Therefore you need text data.

Similar Messages

  • Help with the error message that ADE is not allowed to copy a book onto my Nook. I have tried authorizing and unauthorizing many times--at wits end with this issue.

    Help with the error message that ADE is not allowed to copy a book onto my Nook. I have tried authorizing and unauthorizing many times--at wits end with this issue.

    I too am having the same problem. I have a new hard drive that was imaged from the old one and I'm trying to side load a book to my Nook Simple Touch.. I first installed ADE 4 then borrowed and downloaded a book from Overdrive. I tried a few times to delete and reauthorize both the computer and the Nook and each time I get an authorization error when I try to side load the book. I then found on the Nook forum that the Simple Touch and ADE 4 don't get along. So I uninstalled ADE 4 and installed ADE 3.
    I then followed this recommended procedure found on the forum: I deleted the Digital Editions folder from my Nook, launched ADE 3 and authorized the computer, then connected the Nook. For a few seconds, hovering the mouse over the setting icon for the Nook displayed everything on the context menu grayed out. But then it showed the context menu and I was able to display the Nook's authorization, which was the same as the computer's. Still get the same error side loading the book. Deleting and reauthorizing doesn't help.  And the Digital Editions folder is still missing from the Nook.

  • Web service client needs to share data with a SOAP Message Handler

    I have a web service client that is built using WebLogic 10 clientgen. I also have a Soap Message Handler configured that will create the required Soap Headers for the web service call.
    Creating these Soap Headers works great as long as the header data is static but the problem comes up when I need to place some dynamic data in these headers. The web service client has this data and somehow needs to pass it to the Soap Message Handler. It looks like I need to somehow have the client place this data in the MessageContext before the call so the data can be accessed by the Soap Message Handler.
    How do I get access to the MessageContext from the client or is there a better way to do this?
    Thanks in advance for any help you can give.

    You may want to check the response to this previous post to see if it yields any ideas for you:
    Not able to Pass header info to Microsoft MapPoint WebService using WLS10

  • Help in forming SOAP message for Bpel process

    Hi,
    I have a following schema file - UnpackMessage.xsd
    <?xml version="1.0" encoding="windows-1252"?>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.w3.org/2001/XMLSchema/UnpackMessage"
    xmlns:tns="http://www.w3.org/2001/XMLSchema/UnpackMessage"
    elementFormDefault="qualified">
    <complexType name="PackHandlerProcessRequestType">
    <sequence>
    <element name="instanceId" type="string"/>
    <element name="activityName" type="string"/>
    <element name="result" type="string"/>
    </sequence>
    </complexType>
    <element name="PackHandlerProcessRequest" type="tns:PackHandlerProcessRequestType"/>
    </schema>
    and the following wsdl file for a bpel process
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <definitions name="PackManagerWSDL"
    targetNamespace="http://xmlns.oracle.com/PackManager"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:client="http://xmlns.oracle.com/PackManager"
    xmlns:tns="http://xmlns.oracle.com/PackManager"
    xmlns:ns2="urn:UnpackHandler"
    xmlns:ns3="http://www.w3.org/2001/XMLSchema/UnpackMessage">
    <types>
    <schema attributeFormDefault="qualified" elementFormDefault="qualified"
    targetNamespace="http://xmlns.oracle.com/PackManager"
    xmlns="http://www.w3.org/2001/XMLSchema"
    >
    <import namespace="http://www.w3.org/2001/XMLSchema/UnpackMessage" schemaLocation="UnpackMessage.xsd"/>
    <element name="PackManagerProcessResponse">
    <complexType>
    <sequence>
    <element name="result" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </types>
    <message name="PackManagerRequestMessage">
    <part name="payload" type="ns3:PackHandlerProcessRequestType"/>
    </message>
    <message name="PackManagerResponseMessage">
    <part name="payload" element="client:PackManagerProcessResponse"/>
    </message>
    <portType name="PackManager">
    <operation name="initiate">
    <input message="client:PackManagerRequestMessage"/>
    </operation>
    </portType>
    <portType name="PackManagerCallback">
    <operation name="onResult">
    <input message="client:PackManagerResponseMessage"/>
    </operation>
    </portType>
    <plnk:partnerLinkType name="PackManager">
    <plnk:role name="PackManagerProvider">
    <plnk:portType name="client:PackManager"/>
    </plnk:role>
    <plnk:role name="PackManagerRequester">
    <plnk:portType name="client:PackManagerCallback"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    The receive activity in bpel process expects input message "PackManagerRequestMessage" of type "PackHandlerProcessRequestType"
    Now on invoking the Bpel process directly by using the console ... the default input to the process looks like this -
    <payload xmlns="" xmlns:def="http://www.w3.org/2001/XMLSchema/UnpackMessage"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:type="def:PackHandlerProcessRequestType">
    <instanceId xmlns="http://www.w3.org/2001/XMLSchema/UnpackMessage">600</instanceId>
    <activityName xmlns="http://www.w3.org/2001/XMLSchema/UnpackMessage">receive</activityName>
    <result xmlns="http://www.w3.org/2001/XMLSchema/UnpackMessage">ok</result>
    </payload>
    and the receive activity gets the following as input (as taken from Flow in bpel console)
    <ReceiveInput_initiate_InputVariable>
         <part name="payload" >
              <payload xsi:type="def:PackHandlerProcessRequestType" >
                   <instanceId>800</instanceId>
                   <activityName>receive</activityName>
                   <result/>
              </payload>
         </part>
    </ReceiveInput_initiate_InputVariable>
    But when i invoke the same process using a SOAP message which looks like
    <?xml version = "1.0" encoding = "UTF-8"?>
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns2="http://www.w3.org/2001/XMLSchema/UnpackMessage" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <SOAP:Body>
    <payload xmlns="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:PackHandlerProcessRequestType">
    <ns2:instanceId>600</ns2:instanceId>
    <ns2:activityName>receive</ns2:activityName>
    <ns2:result>OK</ns2:result>
    </payload>
    </SOAP:Body>
    </SOAP:Envelope>
    the receive activity now gets the following as input (taken from Flow in bpel console)
    <ReceiveInput_initiate_InputVariable>
    <part name="payload">
    <ns1:instanceId>600</ns1:instanceId>
    </part>
    </ReceiveInput_initiate_InputVariable>
    So i am losing input data. Can someone help me form appropriate SOAP message for this ?
    Thanks,
    Srini

    Thanks Marc,
    The SoapUI is really useful. The SOAP request as generated by the SoapUI for above case is
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:add="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:pack="http://xmlns.oracle.com/PackManager" xmlns:unp="http://www.w3.org/2001/XMLSchema/UnpackMessage">
    <soapenv:Body>
    <pack:initiate>
    <payload>
    <unp:instanceId>800</unp:instanceId>
    <unp:activityName>receive</unp:activityName>
    <unp:result/>
    </payload>
    </pack:initiate>
    </soapenv:Body>
    </soapenv:Envelope>
    and the input received at BPEL was as expected.
    Thanks a lot.
    Srini.

  • Help with Pagefile error message on startup

    So, I recently setup a pagefile on a separate harddrive (harddrive is new and has never had anything on it).  On my C, I selected on page filing.  So, Windows 7 goes a head and creates the pagefile on the new specified harddrive.  I reboot and receive the following message:
    Windows created a temporary paging file on your computer because of a problem that occured with your paging file configuration when you started your computer. The total paging size for all disk drives may be somewhat larger than the specified size.
    So, I don't want to see this message anymore.  How do I get rid of it and keep the new configuration? Thanks very much

    Search
    http://search.microsoft.com/search.aspx?mkt=en-US&setlang=en-US for help with Microsoft messages

  • Need Help with Kernel Panic Message

    Can someone help with what this kernel panic log is telling me.
    Wed May 19 15:15:29 2010
    panic(cpu 3 caller 0x001A49CB): Unresolved kernel trap (CPU 3, Type 14=page fault), registers:
    CR0: 0x80010033, CR2: 0xff42e900, CR3: 0x017b5000, CR4: 0x000006e0
    EAX: 0xff42e900, EBX: 0x00130000, ECX: 0x00000001, EDX: 0x00001bbf
    CR2: 0xff42e900, EBP: 0x379b37f8, ESI: 0x00000008, EDI: 0x06c805dc
    EFL: 0x00010202, EIP: 0x001c4784, CS: 0x00000008, DS: 0x4a4c0010
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x379b35f8 : 0x128d0d (0x3cc65c 0x379b361c 0x131f95 0x0)
    0x379b3638 : 0x1a49cb (0x3d2a94 0x3 0xe 0x3d22b8)
    0x379b3748 : 0x19b3a4 (0x379b3760 0x379b37a8 0x379b3778 0x4a4cef70)
    0x379b37f8 : 0x1c5866 (0x61ed7b0 0x6086e0a 0x0 0x7069ad4)
    0x379b3818 : 0x1d2532 (0x7069ad4 0x44345c 0x379b3848 0x6)
    0x379b3878 : 0x1d279f (0x647ae1c 0x647ae1c 0x379b38b8 0x19a809)
    0x379b38c8 : 0x1d413c (0x1 0x443340 0x252fae8 0x6476e60)
    0x379b3928 : 0x2f4439 (0x0 0x34 0x379b39d8 0x7a4640c)
    0x379b3a38 : 0x310417 (0x6303c04 0x6b32840 0x379b3de4 0x379b3af8)
    0x379b3b48 : 0x310ace (0x379b3e6c 0x379b3f48 0x0 0x2)
    0x379b3b68 : 0x1e7c06 (0x379b3b84 0x100 0x379b3cd8 0x6203004)
    0x379b3bb8 : 0x1d2bbc (0x6b32840 0x379b3cd0 0x379b3de4 0x379b3e6c)
    0x379b3c18 : 0x1df73c (0x6b32840 0x379b3cd0 0x379b3de4 0x379b3e6c)
    0x379b3c68 : 0x1d774a (0x379b3cb8 0x379b3e2c 0x379b3e6c 0x379b3e9c)
    0x379b3e48 : 0x1d7bb8 (0xa02 0x379b3e6c 0x6d7360c 0x1)
    0x379b3f58 : 0x37b300 (0x6c805dc 0x6d735c8 0x6d7360c 0x0) Backtrace continues...
    Kernel version:
    Darwin Kernel Version 8.11.1: Wed Oct 10 18:23:28 PDT 2007; root:xnu-792.25.20~1/RELEASE_I386

    Pretty hard to decipher logs for most of us.
    Bad or incompatible RAM is the most common cause of KP's. It could just need to be reset…… to make sure there's a good connection.
    Here's a great site for Resolving Kernel Panics. Please do all the steps in order, even if you don't think you need to do a certain step.
    Here's a great MacFixIt article.
     Good Luck! DALE

  • Help with an error message: This edit cannot be done...

    "This edit cannot be done because a transition would be cut or an item to one side of a transition would become too short."
    Can someone please help me understand this one? I have a project with self made lower thirds from a .tif graphic on V2 and a text track on V3. Each track has a 15 frame Edge Wipe on both ends. Within the sequence I have no problem either drag copying both tracks together or even copy/pasting them further down the sequence.
    The error pops up when I try to copy/paste to a different sequence. Regardless of whether I try to paste it above my video on V1 or past the video's end I still get that error message.
    If I delete the transitions, I can copy/paste just fine and re-add them, but it's so frustrating. I really just want to understand what's going on here. Could someone explain this in layman's terms?
    Edit: I should also add that if I Option-Click the Toggle Auto Select for track two, I can paste just fine. Which might lead me to believe that it's trying to paste to track V1 where video is already laid down, except that even if I try to paste after the video it still won't work. If I'm copying track V2 and V3, shouldn't paste automatically past to V2 and V3?
    Message was edited by: The Bundok

    I had this problem before. I like to disable extra services to speed up my computer and I disabled the Apple Mobile Device service and had to re-enable this.
    You can do that by going Control Panel>Administrative Tools>Services. Once you have gone to the services window, look for Apple Mobile Device and right-click. Select "Properties". There should be some information about the service as well as the label "Startup Type" with a drop-down menu beside it. If it says "disabled", that is your problem; Change the selection to anything except disabled (Automatic is easier and ensures that you can sync as soon as itunes opens).
    If this doesn't work, I would look into your anti-virus' settings. Good Luck!

  • Looking for some help with an error message when exporting master file. I'm stuck and would even pay to get this sorted out!

    Hey guys, I'm really in a bind here and need some urgent help tonite. I would even be willing to pay for some actual help and not some vague information that i may not be able to understand if we could do something via skype or some other way that would be much quicker than a message board. Of course I have to have the project done by tomorow . so I'm new to fcpx, but have succesfully exported 2 other projects. I've also ran into this predicament before (error message not allowing me complete export) and have been able to solve that by converting the files i imported off my camera (canon g20) to a different file type (prores).
    so where I'm at now: i have a 13 min short, all shot on my canon g20, imported and converted to prores422 with the brorsoft video converter with all the shots in a single event in fcpx. i'm using fcpx version 10.0.08. I have one main video track in my timeline that is completely full of very fast edits. (all quick 2-5 second clips, sped up shots in 2x, 4x, or 8x, tons of transitions, titles, and a little fx. theres 2 audio tracks, one is narration/speech and the other is an ongoing music track that constantly ducks everytime the subject speaks (tons of ducks/edits). Have you seen mtv cribs? Well i filmed an EXACT replica. So If you've seen one of those episodes, its literally the same exact same thing. I have all of my work completed, everything has been fully rendered, and i have it exactly as I want it.
    I'm including all this information in case it may help. my successful projects ive exported in the past were rather simple, and this one is very complex and full of edits. here is what it looks like in the timeline:
    Ive tried exporting the master file using almost all the different ways with no luck. My primary objective is to get it on youtube by any means by tommorow for a showing to a potential buyer (long story) and so I've been told using the h.264 is the best format for that. This, along with the other methods give me the same error message:
    It think it gives this error message when i reach 24% everytime during export.
    So first of all, what is that error message? Do i need to be concerned about the specifics of it, or is there something major that I'm missing? Like i said, i dont care how, but I need to get this video up on youtube tonite for an important viewing tomorrow. Conceptually, I think if i can figure this one out I shouldnt have any more trouble in the future doing something so basic, yet critical, such as exporting my 40+ hours of work for someone to see.
    anyway, I apologize in advance for my lack of knowledge with this software, and for my extremely long winded question which will probably have the opposite effect for me as most wont want to take the time to read all this, BUT i figured if i was as thorough as possible it might help actually getting a concrete answer, instead of a "read the manual, exporting is on page 37." or "use the share button on the right of the timeline then just click export master file and it will work everytime."
    Cheers everybody, and thank you. Like i said if someone is up, and willing to talk via skype, phone, messanger or any other method that works for you I would be totally down and will compensate you generously for your time. thanks again.
    Taphabit

    boom! that advice was correct and worked. i was able to export the full project as a quicktime movie and it can be uploaded to youtube.
    NOTE, theres is definately quite a few noticeable audio glitches/lags/pops that werent there before doing this. I believe, and will test to make sure, that having a project such as this one needs to render before exporting. I'm not sure if the advice requires the project to be unrendered before exporting for a specific reason, because if it will export fine after rendering the project that's the way to go. like i said the edited version i have in my timeline plays back perfectly but this exported version has quite a few noticeable audio glitches (a few video glitches too). I'm going to retry doing the first few steps of your advice, but then at the end render, then export and compare the results...
    OK, so this leads to a big question, Is this something that is standard for everyone when trying to export? If its not, what causes this error?
    is there any way of preemptively avoiding it in future projects?
    thanks again, and hopefully this information will help others as exporting seem to be one of the biggest problems in fcpx. any word on a new patch or firmware update?

  • Help with my error message

    this is my second iPOD with the same error message. "Attempting to copy to the disk "CYNDIEBRAY" failed. The disk could not be read from or written to."
    can someone help me use my iPOD.. the genius desk just exchanged my other on. i have a new 80GB and it hasn't been used yet.

    Maybe you're right, if this is the second one to have this exact problem. It is probably the computer if you aren't up to date. If your operating system is outdated, or your computer needs updates, such as a USB update. Also you might have some damaged music or photo files, that are causing this error. Your hard drive could be damaged in your computer or ipod that would cause problems also.
    I once got a similar message, it always happend while updating when i got to a certain song. I deleted that song, and then it worked again. I'll keep looking around for solutions to that error message though.

  • I need help with an error message

    Has anyone run across this error   java.lang.class cast exception ? I dont know what caused it and how to fix it. It also seems to be killing my battery life. Any suggestions?  Thanks

    Hi and welcome to the forums!
    Read user sgardne'spost on how to troubleshoot the cause of the error message.
    Let me know if you agree with the steps and how you want to proceed.
    Thanks,
    Bifocals
    uncaught exception java lang classcastexception dated 06-11-2012
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Need help with an error message: Can't repair volume.

    Hi, folks.
    While checking my HD with Disk Utility, I found a message error. It says that I have to repair the disk but the button "Repair Disk" is not available.
    The message is copied below... if anyone can read it and help me, I'd appreciate.
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Overlapped extent allocation (file 1022303 /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/MacOS/Dreamweaver)
    Overlapped extent allocation (file 1034457 /Users/Johnny/Library/Mail/[email protected]/INBOX.mbox/Messages/16 143.emlx)
    Overlapped extent allocation (file 1034472 /Users/Johnny/Library/Caches/Mail/11/05/1521797044-3222719574.cache)
    Overlapped extent allocation (file 1035396 /Users/Johnny/Library/Mail/[email protected]/Junk E-Mail.mbox/Messages/16148.emlx)
    Overlapped extent allocation (file 1035401 /Users/Johnny/Library/Mail/[email protected]/Junk E-Mail.mbox/Messages/16149.emlx)
    Overlapped extent allocation (file Overlapped extent allocation (file s/DisplayPictures/[email protected]/VnRhV1J0dXR3eG41aG04T3UxOXIrU lZWZ3AwPQ==.png)
    Overlapped extent allocation (file 1042618 /Users/Johnny/Mercury/MSN/Resources/DisplayPictures/[email protected]/ R3FDbDlPNllTRGhhUmNXd3p2Sm55clQ0aUx3PQ==.png)
    Overlapped extent allocation (file 1049904 /Users/Johnny/Library/Mail/[email protected]/Sent Messages.mbox/Messages/16257.emlx)
    Overlapped extent allocation (file Overlapped extent allocation (file ail/02/12/4236346157-3219157957.cache)
    Overlapped extent allocation (file 1050553 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6261.emlx)
    Overlapped extent allocation (file 1050558 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6262.emlx)
    Overlapped extent allocation (file 1050573 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6263.emlx)
    1050573 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6263.emlx
    @)",1)
    1054976 /Users/Johnny/Mercury/MSN/Resources/CustomEmoticons/patinhodeborracha22@hotmail .com/NUxYOXd5ZkZiRjR0Wm5Ob3NZY0p6K09oWWFnPQ==.gif
    Overlapped extent allocation (file 1055000 /Users/Johnny/Mercury/MSN/Resources/DisplayPictures/patinhodeborracha22@hotmail .com/TzNFcmEzTWxaMmV4L0NOelVEUllsaEJjd1BRPQ==.png)
    Overlapped extent allocation (file 1057743 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/16313.emlx)
    1057743 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/16313.emlx
    t allocation (file %@)",1)
    1057789 /Users/Johnny/Documents/Yazigi/Events/OFICIO_SDUMA.doc
    Overlapped extent allocation (file 1057880 /Applications/Microsoft Office 2004/Clipart/Yázigi)
    Overlapped extent allocation (file 1058044 /Users/Johnny/Library/Caches/Mail/04/11/2078440011-2247275449.cache)
    Overlapped extent allocation (file 1058045 /Users/Johnny/Library/Caches/Mail/10/07/0272707744-3809369458.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file ny/Library/Caches/Mail/00/15/2244060425-1075118591.cache)
    Overlapped extent allocation (file 1058051 /Users/Johnny/Library/Caches/Mail/09/11/0695285650-1820972980.cache)
    Overlapped extent allocation (file 1058052 /Users/Johnny/Library/Caches/Mail/00/11/0589583874-0597952182.cache)
    Overlapped extent allocation (file 1058053 /Users/Johnny/Library/Caches/Mail/05/12/0478257501-4274710467.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file Mail/00/01/0993945094-0587616530.cache)
    Overlapped extent allocation (file 1058055 /Users/Johnny/Library/Caches/Mail/00/05/0791764484-0602406228.cache)
    Overlapped extent allocation (file 1058056 /Users/Johnny/Library/Caches/Mail/00/15/1220797701-0859034105.cache)
    Overlapped extent allocation (file 1058057 /Users/Johnny/Library/Caches/Mail/00/07/1625158921-0865946749.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file 179-0596073421.cache)
    Overlapped extent allocation (file 1058060 /Users/Johnny/Library/Caches/Mail/00/11/1196125704-0590536112.cache)
    Overlapped extent allocation (file 1058062 /Users/Johnny/Library/Caches/Mail/00/11/1422978311-0856115643.cache)
    Overlapped extent allocation (file 1058063 /Users/Johnny/Library/Caches/Mail/04/12/2763023681-0835402695.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file he)
    Overlapped extent allocation (file 1058065 /Users/Johnny/Library/Caches/Mail/00/03/1827339531-0863388223.cache)
    Overlapped extent allocation (file 1058066 /Users/Johnny/Library/Caches/Mail/07/03/3539577467-0911802683.cache)
    Overlapped extent allocation (file 1058067 /Users/Johnny/Library/Caches/Mail/00/04/1321888006-0860911682.cache)
    Overlapped extent allocation (file 1058069 /Users/Johnny/Library/Caches/Mail/00/02/1726249226-0867834918.cache)
    1058069 /Users/Johnny/Library/Caches/Mail/00/02/1726249226-0867834918.cache
    extent allocation (file %@)",1)
    1058070 /Users/Johnny/Library/Caches/Mail/05/01/0121999446-2569076246.cache
    Overlapped extent allocation (file 1058071 /Users/Johnny/Library/Caches/Mail/12/14/3415372742-4138529506.cache)
    Overlapped extent allocation (file 1058076 /Users/Johnny/Library/Application Support/Skype/joaopaulo_yazigi/chatsync/19/19e520537f725be8.dat)
    Overlapped extent allocation (file Overlapped extent allocation (file nc/d5/d5f85bf4508148d5.dat)
    Overlapped extent allocation (file 1074308 /Users/Johnny/Library/Caches/com.apple.AddressBook/MetaData/2A56AA5D-FD59-4B78- BF65-25589E601017/ABPerson.abcdp)
    Overlapped extent allocation (file 1083386 /Users/Johnny/Music/iTunes/iTunes Music/Podcasts/NEWSWEEK On Air Podcast/NEWSWEEK On Air 1092005.mp3)
    Overlapped extent allocation (file Overlapped extent allocation (file XlSOE96L2VJPQ==.png)
    Overlapped extent allocation (file 1094018 /Users/Johnny/Library/Application Support/Skype/joaopaulo_yazigi/chatsync/15/150fcbaa76a7fb93.dat)
    Overlapped extent allocation (file 1120553 /Users/Johnny/Documents/Yazigi/Events/PRELISTAECOLOCICA2005.doc)
    Overlapped extent allocation (file 1182160 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/17264.emlx)
    Overlapped extent allocation (file Overlapped extent allocation (file /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/17267.emlx)
    Overlapped extent allocation (file 1182217 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/17269.emlx)
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Volume Bit Map needs minor repair_
    Checking volume information.
    Invalid volume free block count_
    (It should be 3677631 instead of 3677630)
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    Thanks in advance.
    JP

    You will need to try and repair the drive with Disk Warrior. Otherwise, the only option is to reformat the drive. Note that DW may not be successful in fixing all the errors, and you may end up having to reformat anyway.
    It may be possible to fix the problem manually, but it's quite involved. Here's the info:
    http://docs.info.apple.com/article.html?artnum=25770
    Manually fix Overlapped Extent Allocation Errors without Disk Warrior
    Overlapped overlapped extent allocation errors can be the bane of any Mac user's existence. Often, these errors go unnoticed until the problem becomes visible: your Mac might refuse to boot, crash unexpected, or worse, critical data might disappear from the Finder. Disk Utility can detect, but not fix overlapped extent allocation errors, and certain third-party utilities, such as Alsoft Diskwarrior, can fix them, but generally without reporting the consequences.
    Overlapped extent allocation error occur when the file system thinks that two files are occupying the same area on the hard disk, hence overlapping on the same "inode," which is the structure which holds the location of the data blocks the file occupies, and also file permissions and flags.
    Clearing the "overlapped" or "overallocated" extent allocation essentially means that you'll have to lose some data, because the only way to remove the overlap is to delete the file that's occupying the inode. So, if you suspect, or find out, that the guilty file is a critical system file that resides in one of the hidden system directories such as /etc /var /usr/ or visible system directories such as /System or /Library, and you don't want to reinstall the whole OS (which might not fix the overlapped extent allocation anyway), it's good to have another disk available to copy the files back to your original disk if necessary: a second bootable hard drive or a firewire drive connected to your Mac when you remove the misbehaving file. Just make sure that when you copy the file back to your boot disk that the permissions are correct, so it's best to use the "ditto" command, so that all sticky bits, flags, and permissions are preserved.
    In case you didn't know, you don't have to boot from an install CD in order to check for overlapped extent allocations. All you need to do is restart your Mac, while holding down command + S to boot in "single-user mode."
    At the command prompt that appears, type:
    $ fsck -fy
    If you have an overlapped extent allocation, you'll see:
    "Overlapped Extent Allocation" (File 123456d)
    No matter how many times you run fsck -fy, you'll never be rid of the error.
    So, simply issue the following command:
    find / -inum 123456 -print
    Note the "d" was dropped, or any extra letter that appears after the inode number.
    The find will return a file name that matches with the inode number, and the path to that file. If you remove the file then the fsck will not return this error next time you run it.
    However, before you can delete the file(s) in single-user mode, you'll need to mount the file system. Type:
    $ mount -uw /
    When done, issue the "sync" command, and that will flush the write cache so that all pending writes are written from memory to the disk. Also, since most OS X 10.3 Macs use the HFS+ Journaled file system, it might be a good idea to disable the journal before booting into single-user mode by typing:
    $ sudo diskutil disableJournal /
    then re-enable it when done fixing the overlapped extents and rebooting normally:
    $ sudo diskutil enableJournal /
    Chris Anderson is a long-time Linux propellerhead who just got his first Mac, an ibook G4, and can't keep his hands off of it. He currently works as a "The Architect" and general visionary for a maker of world-class collectibles.

  • Need help with an error message when making changes to an IMAP account

    I have several IMAP accounts in my Mac Mail. Today when I tried to edit the, "Full Name" associated with the account I got an error message that said:
    Invalid Directory
    The account path /Users/kristen/Library/Mail/[email protected]@host365.ISPhost.com is already being used by the account "Silver"
    Did I somehow corrupt something? I'm not sure why making this small change to the full name would cause such an error. Please help.
    Thanks!!

    stop() forcibly kills a thread. You shouldn't use this method because if the thread is in a critical section of code, you can cause data corruption or deadlock.
    Instead, if you need to stop execution from another thread, invoke the interrupt() method.
    Good luck.

  • HELP with weird Suitcase Message in Entourage...

    Hello all.
    I would have to say that my office PM G5 has been "plagued" with fonts problem recently... and the bottomline is, it seems that all my fonts are corrupted??
    Lately when I launch Entourage and click on a new email to read, a little window pop up will say:
    (! in a dialog bubble icon)
    Suitcase
    From Suitcase (TM)
    There was a conflict when attempting to activate the font 'Bookmam Old Style' in the suitcase Bookman Old Style for this document. Please close the document and resolve the conflict in the Suitcase application
    OK Button
    I click OK and can still continue to read the email, but seems like every new email will have a similar message, with different font in the pop up.
    A check in Suitcase and the Bookman font in question is not activated, at least by Suitcase, but it shows it is active, with a User icon besides... so I "suspect" it is either activated by Font Book (which I have loads of problems previously) or it is already in the systems.
    This series of font-related problems occur only recently, so I don't know what might have cause all these...
    I have not update the latest MS Office Updater yet... should I?
    The problem is not major, but very inconvenient and "annoying"...
    I have a more major font-related problem when trying to open a Word or Excel docu:
    http://discussions.apple.com/thread.jspa?threadID=547731
    Thanks and cheers

    Hello azain
    Welcome to the Community
    Please check the Article below to help you solve the issue.
    "Unable to login to your BlackBerry ID account" or "Unable to update your BlackBerry ID account info...
    Goodluck and please let us know if it helps you
    Ron
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up Blackberry Battery Saving Tips | Follow me on Twitter

  • OWB 10.2 - deploying to Discoverer 10g - HELP with cryptic error message

    Hi all,
    Does anyone know what the helpful message below is trying to tell me about my deployment to Discoverer? The validations all pass. The generation is error free. The execution gives the following as "INFORMATIONAL" - however, the EUL is not generated because the error appears to be fatal.
    How can I lookup the object based on the identifier below? The message sucks.
    Thanks in advance,
    Mike
    INFORMATIONAL
    The import has failed (your End User Layer has not been modified) - No joins found between component folders of complex folder with identifier '50202FC115E94BFABAD5BBB906CC238F'
    RPE-02154: Failed to deploy EUL

    Replying to myself. I'm still not at all sure what the error means but I encountered it when I had selected "match objects by name" rather than object id prior to deployment.
    Setting it back to object id allowed the deployment to the EUL to work. Still, something seems wrong there.
    - Mike

  • I need help with this error message "seek encountered an internal error"

    I wonder if anyone can help me with a Captivate issue: I just upgraded to 5.5 - when I try to insert a video slide I get an error "seek encountered an internal error". The video is a 35.3 MB flv file.
    This is a prroject that I have been working on for months and need to switch the video on the slide to an updated video - so I try to delete the video slide that is there and insert a new slide but when browse for the new video file I want to use, I keep getting this error message.

    Try <fx:XML>

Maybe you are looking for