Problem with JAXBContext.newInstance  internal error

Hey!
I am working on an upgrade of the JAXB version in our Enterprise application. Class generation and build apparently works fine. From the class that invokes the webservice I try to create a JAXBContext using the newInstance method. Like this:
JAXBContext.newInstance("com.myapp.myschema.packagename");This worked fine with JAXB1.0, but now I get the following stacktrace. I suspect that this error occurs due to som package problems, but I have no idea how to fix it. Can anyone help me??
Heres the stacktrace:
java.lang.InternalError
     at com.sun.xml.bind.v2.model.annotation.RuntimeInlineAnnotationReader.getClassValue(RuntimeInlineAnnotationReader.java:99)
     at com.sun.xml.bind.v2.model.annotation.RuntimeInlineAnnotationReader.getClassValue(RuntimeInlineAnnotationReader.java:17)
     at com.sun.xml.bind.v2.model.core.Adapter.<init>(Adapter.java:43)
     at com.sun.xml.bind.v2.model.impl.PropertyInfoImpl.<init>(PropertyInfoImpl.java:88)
     at com.sun.xml.bind.v2.model.impl.SingleTypePropertyInfoImpl.<init>(SingleTypePropertyInfoImpl.java:35)
     at com.sun.xml.bind.v2.model.impl.AttributePropertyInfoImpl.<init>(AttributePropertyInfoImpl.java:23)
     at com.sun.xml.bind.v2.model.impl.RuntimeAttributePropertyInfoImpl.<init>(RuntimeAttributePropertyInfoImpl.java:18)
     at com.sun.xml.bind.v2.model.impl.RuntimeClassInfoImpl.createAttributeProperty(RuntimeClassInfoImpl.java:68)
     at com.sun.xml.bind.v2.model.impl.ClassInfoImpl.addProperty(ClassInfoImpl.java:747)
     at com.sun.xml.bind.v2.model.impl.ClassInfoImpl.getProperties(ClassInfoImpl.java:257)
     at com.sun.xml.bind.v2.model.impl.RuntimeClassInfoImpl.getProperties(RuntimeClassInfoImpl.java:89)
     at com.sun.xml.bind.v2.model.impl.ModelBuilder.getClassInfo(ModelBuilder.java:127)
     at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:49)
     at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:41)
     at com.sun.xml.bind.v2.model.impl.ModelBuilder.getTypeInfo(ModelBuilder.java:189)
     at com.sun.xml.bind.v2.model.impl.TypeRefImpl.calcRef(TypeRefImpl.java:56)
     at com.sun.xml.bind.v2.model.impl.TypeRefImpl.getTarget(TypeRefImpl.java:33)
     at com.sun.xml.bind.v2.model.impl.RuntimeTypeRefImpl.getTarget(RuntimeTypeRefImpl.java:22)
     at com.sun.xml.bind.v2.model.impl.RuntimeTypeRefImpl.getTarget(RuntimeTypeRefImpl.java:15)
     at com.sun.xml.bind.v2.model.impl.ElementPropertyInfoImpl$1.get(ElementPropertyInfoImpl.java:38)
     at com.sun.xml.bind.v2.model.impl.ElementPropertyInfoImpl$1.get(ElementPropertyInfoImpl.java:41)
     at java.util.AbstractList$Itr.next(AbstractList.java:422)
     at com.sun.xml.bind.v2.model.impl.ModelBuilder.getClassInfo(ModelBuilder.java:139)
     at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:49)
     at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:41)
     at com.sun.xml.bind.v2.model.impl.ModelBuilder.getTypeInfo(ModelBuilder.java:189)
     at com.sun.xml.bind.v2.model.impl.TypeRefImpl.calcRef(TypeRefImpl.java:56)
     at com.sun.xml.bind.v2.model.impl.TypeRefImpl.getTarget(TypeRefImpl.java:33)
     at com.sun.xml.bind.v2.model.impl.RuntimeTypeRefImpl.getTarget(RuntimeTypeRefImpl.java:22)
     at com.sun.xml.bind.v2.model.impl.RuntimeTypeRefImpl.getTarget(RuntimeTypeRefImpl.java:15)
     at com.sun.xml.bind.v2.model.impl.ElementPropertyInfoImpl$1.get(ElementPropertyInfoImpl.java:38)
     at com.sun.xml.bind.v2.model.impl.ElementPropertyInfoImpl$1.get(ElementPropertyInfoImpl.java:41)
     at java.util.AbstractList$Itr.next(AbstractList.java:422)
     at com.sun.xml.bind.v2.model.impl.ModelBuilder.getClassInfo(ModelBuilder.java:139)
     at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:49)
     at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:41)
     at com.sun.xml.bind.v2.model.impl.ModelBuilder.getTypeInfo(ModelBuilder.java:189)
     at com.sun.xml.bind.v2.model.impl.RegistryInfoImpl.<init>(RegistryInfoImpl.java:63)
     at com.sun.xml.bind.v2.model.impl.ModelBuilder.addRegistry(ModelBuilder.java:232)
     at com.sun.xml.bind.v2.model.impl.ModelBuilder.getTypeInfo(ModelBuilder.java:201)
     at com.sun.xml.bind.v2.runtime.JAXBContextImpl$3.run(JAXBContextImpl.java:352)
     at com.sun.xml.bind.v2.runtime.JAXBContextImpl$3.run(JAXBContextImpl.java:350)
     at java.security.AccessController.doPrivileged(Native Method)
     at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:349)
     at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:215)
     at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:76)
     at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:55)
     at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:124)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:132)
     at javax.xml.bind.ContextFinder.find(ContextFinder.java:286)
     at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:372)
     at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:337)
     at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:244)

I did have the same problem and it took me several hours to figure it out. Here is what I did, it might be useful for others later.
I have a number of opened projects and needed to reference them in my ant build.xml
The program runs fine from eclipse, but dies when I run the created jar file from command line.
The line of code where it stopped was
JAXBContext context = JAXBContext.newInstance(jaxbPackage);
with the above InternalError printstack printed. Which was not really informative.
Apparently, one of the referenced projects indirectly required other projects which I did not mention in my build.xml It was obviously the packaging problem.
You can also check the version of you jvm in your terminal and in your eclipse; check the class path in eclipse and temporarily add all the missing lines to your CLASSPATH. If the problem goes away, you can easily figure out which class path was missing.

Similar Messages

  • Premiere Pro CS5: please help problem with importing a file error output "there was an error decompressing audio or video"

    please help problem with importing a file error output "there was an error decompressing audio or video"

    this is related to what adobe program/version?

  • Problem with Emailing the Internal table data as an excel attachment

    Hi Friends,
    I am facing problem with Emailing an internal table data as an excel file. I am using standard function module "SO_NEW_DOCUMENT_ATT_SEND_API1" which is using SOLI structure can have record with 255 character length. But my Internal table having each record means after concatenating all the fields it is going to be morethan 450 characters. so i t is not displaying all the data in excel file.
    Can somebody help me if there is any other function module or any other way that i need to follow.
    thanks for help
    venkat.

    You must use the the :
    CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB as a field seperator and
    CL_ABAP_CHAR_UTILITIES=>CR_LF as a record seperator.
    Check this example:
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm
    Regards,
    Naimesh Patel

  • Media center problem with Qosmio G35-650 - error message

    hello all
    I have a problem with media center on qosmio g35-650.
    When starting live tv , an error message appears and writes "application failure please restart your computer again. if problem persists again please contact with your hardware assistance"
    It was working yesterday and today something happened.
    Also it cant find any tv signal available. Is it a hardware problem?
    regards
    cem mete

    Hello
    Please dont be mad on me but in most cases is the user the problem and not the machine. I really dont know what is problem in your case but if the unit has well TV signal there should not be any problem.
    Your unit must be an US model. Those notebooks are not known to me but I presume that Qosmio player is preinstalled too. I have G20 and TV works perfect (WMCE and Qosmio player). What is with Qosmio player in your case? Does it work well?
    Be sure that TV tuner is listed properly in device manager and also TV antenna is connected properly.

  • Installation problems with Creative Suite CS5 (Error (-1))

    I'm trying to install the Adobe Creative Suite CS5 on a Windows XP 32-Bit laptop.
    After entering the serial number, the installation begins and stops at around 7%. Each time I get this error: The Setup encountered an error(-1) during install. Please restart the machine and try again.
    I've tried restarting the machine, uninstalling Adobe Reader, and using the Adobe Cleaner tool. None of these things have worked.
    I've tried searching and can't seem to find any solution to this problem. I provided the error summary below. Any help would be appreciated.. this is driving me crazy.
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 8 error(s), 5 warning(s)
    WARNING: DW024: The payload: Adobe Photoshop CS5 Core  {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} requires a UI parent with following specification:
        Family: Photoshop
        ProductName: Adobe Photoshop CS5 Core_x64
        This parent relationship is not satisfied, because this payload is not present in this session.
    ERROR: DW025: The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: Adobe Player for Embedding x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: Shared Technology
        ProductName: Photoshop Camera Raw (64 bit)
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: AdobeCMaps x64 CS5
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: Adobe Linguistics CS5 x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: AdobePDFL x64 CS5
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: AdobeTypeSupport x64 CS5
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: Adobe WinSoft Linguistics Plugin CS5 x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has recommended dependency on:
        Family: Adobe Web Suite CS5
        ProductName: Adobe Media Encoder CS5 X64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this payload from the dependency list.
    WARNING: DW025: The payload with AdobeCode:  {E8815668-95B0-443D-AC92-2BFD7DD8F16A} has recommended dependency on:
        Family: Adobe Web Suite CS5
        ProductName: Adobe Media Encoder CS5 X64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this payload from the dependency list.
    ERROR: DW025: The payload with AdobeCode:  {F9766AC1-1461-1033-B862-DF8FE1C033BE} has required dependency on:
        Family: InDesign
        ProductName: Adobe InDesign CS5 Icon Handler x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {F9766AC1-1461-1033-B862-DF8FE1C033BE} has recommended dependency on:
        Family: Adobe Web Suite CS5
        ProductName: Adobe Media Encoder CS5 X64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this payload from the dependency list.
    WARNING: DW039: Payload {A1BC7068-C1BA-410F-8B9A-DB807C803DE2} Creative Suite 5 Design Premium 5.0.0.0 is not installed so should not be there in the deployment file
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 0 - No error.

    I usually start from the bottom of the log and search for Error and Fatal.  I then search for the error in the Adobe knowledge base, the search bar at http://www.adobe.com/ accesses this.
    You can try using the Adobe Support Advisor - http://www.adobe.com/support/loganalyzer/.  There as an option there which allows you to package for support.  You can then post the token to this thread.

  • Problems with iTunes Festival "A error occurred loading this content"

    Hi
    I'm having problems getting iTunes Festival to work, I can click through shows but when i click on "play" for any particular one I get the dreaded "An Error Occured loading this content"
    So far from what I've tried, most things work well, some things give me that error:
    What works well:
    Netflix
    Podcast
    Redbull TV
    Bloomberg
    What give me "an error occured loading this content":
    iTunes Festival
    Crackle
    (note: i havent tried everything yet)
    What I've tried:
    1) restarting apple tv
    2) resetting (pressing down and menu at the same time)
    3) resetting my wifi router
    4) changing ATV DNS to google 8.8.8.8
    5) changing ATV DNS to auto
    I'm pretty sure its not my wifi or router because netflix and etc work in HD with no pr

    I have the same problem I use a BT home hub the old white one and a iPad 4 if I reboot the hub it works ok for pics and some I player content then when I try to load a certain program it crashes and I need to reboot the hub again. Is this a problem with the hub?

  • Export terminated with ORA-00600: internal error code, arguments: [kcfrbd_1

    when i am taking an export of a particular table , i got following message. please help
    ORA-00600: internal error code, arguments: [kcfrbd_1], [0], [400], [], [], [], [], []
    Export terminated successfully with warnings.

    with out a versioninfo it's not possible tomgive appropiate information. Anyway, an ORA-00600 is almost certainly a job for the oracle support.
    And lastly, the right forum for this question would be a database forum, maybe the Database-General-forum.

  • Problem with Support Package SAP_BASIS (Error Stop) IMPORT_PROPER

    Hi Everyone,
    i want to apply Support Pack for SAP_BASIS. Now Its Level is 0009 (ECC 6.0).
    i did import the SPs SAPKB70010 and SAPKB70011. We only want until Stack 11.
    The test scenario was without an error. But during the Standard scenario there occurred a problem:
    SPAM Status: Error Stop
    Import Phase: IMPORT_PROPER
    I guess there are different reasons:
    1) We didn´t make a SPAM update before! it´s still version 7.00/0021.
    2) I have no idea if the guy before me made a kernel update.
    And now i wanted to update SPAM to version 27. but first i should "repair" this problem because the SAP_BASIS is still in the queue.
    Is there a possibility to delete the queue, update SPAM and the Kernel and then try it again with this support package?
    We cannot go further than Stack 11!
    please help me!

    Hi,
    This is not because of SPAM version nor the upgrade of kernal.If that was a SPAM problem then it will
    not allow you to define the queue.
    There are some know problems with this basis patches please read the note .Just run the import again this error would not occur.
    If this error occurs  then post the import logs for further analysis.
    Regards,
    Vamshi.

  • Help! Problem with Struts tag html:errors/

    Hi everybody,
    In my JSP page called addUser.jsp, i have the different Struts Tag
    <html:errors/>
    <html:form action="/addUser" focus="firstName">
    </html:form>
    I have of course the ApplicationResources.properties file with differents Struts properties:
    errors.footer=</ul><hr>
    errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul>
    errors.ioException=I/O exception rendering error messages: {0}
    and an other one:
    error.fieldsNeeded=<font color="#FF0000">Some fields are missing.</font>
    when I call the addUser form, my JSP page display:
    null Some fields are missing. null
    Have u any suggestion about my prob?
    tx a lot
    s.

    Hi,
    can u post the java code where u are actually adding the error to the action errors. may be there is something wrong with that. I dont see any problem with the jsp or the applicationsResources.properties.
    Thanks
    Latha

  • 'A problem with the cooling system' error message on Satellite A660

    Hi all,
    Hope I can get some help here. I've had about 5 HP laptops after all of them had problems and faults. I got sick of them and therefore got a refund and bought a high spec A660-1FH.
    The A660 has been a great laptop for two days until yesterday when I started getting a warning message saying 'A problem with the cooling system has been detected. Please turn off the computer immediately, and return it for service'.
    The cpu fan works fine as you can here it spinning and the temperature of the i5-460m processor is around 40 degrees for both cores - which seems normal to me. I've noted that it happens only when running on battery and if you switch from eco utility to power saver mode. Its fine when running on the 'balanced' power setting. The fan is louder before when this message appears.
    As its under 28 days my retailer swapped it for a brand new one straight away. Got the new one home, and the same message appears again. Has anyone else experienced this. As two laptops have had this, I'm wondering if this is normal for the A660 series laptop or if there is really a hardware issue?!
    I have tried to upgrade eco utility and the bios of the laptop but both are the latest versions. Can anyone help or share if they experience a similar issue with their laptop?
    Thanks

    In front of me I have Satellite A660-13Q (PSAW3E) and I have it about 6 weeks now. It runs almost 10 hours daily and until now I didnt notice such message or anything else that can be suspect for hardware functionality.
    I really dont know why this happen on your notebook and dont think there is anything you can do about it.
    I would exchange it again. What you can also try is to contact nearest Toshiba service. Make a call, explain the situation and ask if they can help you with this.

  • Problem with DW-Q28A internal burner

    Looking at this board, I know that others have had all kinds of problems with this burner - DW-Q28A. I can't find one solution, however. Here's my problem. Using Toast 6.1.1, I'm able to burn a DVD with success. That DVD will play in the burner and my set top DVD player. However, the DVD will not play in any other computer drive. The other computers try to read it and then eject the disc. And this is happening on client computers that I'm sending the DVD's to. Is this burner just junk? I've had this computer with the burner for about a year and have random problems throughout the year. I have a Plextor external burner on another computer that is rock solid. Never a problem. I'm I going to have to replace this drive? Doesn't seem right - it's barely a year old.
    G5 2.7   Mac OS X (10.4.8)  

    It may need a cleaning, go to your local office supply store and buy a DVD/CD cleaning kit which will clean the laser in your drive.
    Sometimes resetting the PRAM takes 2-3 attemps so try at least 2 more times and while you are it also reset the SMC 2-3 times back to back. The correct instructions for both can be located by clicking Intel iMac SMC and PRAM resets

  • Problem with file opening and error message

    Hi there,
    In CP 7, I am having a problem opening a file adn was wondering if anyone else has had this and whether the file was recoverd effectively or at all...
    See message below
    Cheers
    Rossdo

    Are you trying to open a CP8 file in CP7? If you are facing the problem with CP7 file itself, first thing you need to do is check whether you got any .lck file (lock file) in the source file folder, which indicates that the file was opened and not closed properly.
    If not, try the method here:
    Recovering the project « Rapid eLearning | Adobe Captivate Blog
    Sreekanth

  • Numerous problems with X1 platform and error message RDK-03032

    Daily I have problem with the X1 system where the TV signal goes out and I get a message that says " Call 1-800-XFINITY and reference RDK-03032." This problem is randum and can occur at any time of day, resulting in outages for many hours, or usually the remainder of the day. If I call Comcast customer service, usually the wait is usually about 20 minutes before someone comes on and goes through another process of sending signals to my box, at which time they say they need to send a technician out. I then get a call from the technician who says he doesn't need to come out because the problem is with XFINITY's network, and that they are working on it. If I call back into customer service, I need to first make sure I have about an hour for the process because the customer support person has to go through the same diagnostic test of sending signals to confirm the system is down, before they will refer the problem back to a technician in the field. Usually during this diagnostic process, the technician puts me on hold for another 30 minutes, at which time the phone is hung up, at which time I have to start the process all over again. RDK-03032 problem continues to occur with no resolution and no one seems to be able to tell me what the problem is, or how to fix it, and no one in customer support knows how to fix this problem. I have no idea how to get this problem resolved. Does anyone have any idea?  

    awsomely sad / they put this item on the market and i would recomemmend you contact the fcc for a form to fill out a complaint asap as i will be doing as soon as i receive the letter in the mail , they say it is a latency problem . late is late but no show at all for hours on end is the new future.  what is that suppossed to keep us victoms happy  untill they can figure out what to do to cover theyre mistakes , now they are trying to replace the incoming signal which has left me with no services 10 times in 14 days , i watched a tech install a new cable from pole to house with 2 supervisors standing rigth there , when the 12th visit by a tech i explained my story and the tech said let me look out side 1 hour later after my services were cut off again the tech came to my door and told me the cable from my house to the pole was terrible and rotten and needed to be replaced again , i knew he was lying but it was after 7 pm and i had enough , i saw them a week or so before , as did the 2 supervisors , cut a brand new peice of the roll in his truck replace it with new ends , a totally new peice , so i guess the cable they are using only has a 2 week life expectancy or the tech was lying , which i beleive the tech wanted to get paid for the call , so he probably did but once again my xi service is not right still , when they get to far in they start lying because they are probably getting screwed for have to service this x1 numerous times , when i sit here and listen to the supervisors and techs  tell me that the system is the problem and they are trying every 3 months to figure what the last  program upgrade has screwed up for  them and laugh jokingly it doesent give you to much faith in theyre ability to resolve any issues with this system face it we have no recoarse . over 200 hrs on the phone . i must have talked to every employee in the company even tom karinshank yhe ceo was contacted and after his rep sat there and picked appart evry thing i said got rude and now wont return my calls or emails they pass it to the next person , ????????????????????????????????????

  • Problem with downloading the internal table onto the presentation server.

    Hey folks,
    I have a problem where in i am downloading one year of sales done by the company. I wrote a program to download the file onto the presentation server . The error occurs in the FM GUI_DOWNLOAD where if the file exceeds 105843504 bytes its giving me a dump saying that
    When the program was running , it was established that more memory was needed than the operating system is able to safely to provide.
    The current program has to be terminted because of the program already requested 105843504 bytes from the operating system with malloc when the operating system reported after further memory request that there was no more memory space available.
    Could somebody provide an alternative soltuion for this.
    Its really urgent as i can download the file with 70,000,000 bytes
    Regards
    Rock

    Hi Rock,
    Please download the files on to Application Server, else as suggested by Ashish download into 2 or 3 files and merge them manually.
    Declare same internal tables may be 5 times.
    When you fill the internal table check for a counter and when you hit a certain number stop appending to it and start appending to the next.
    After you are done so download all the internal tables.
    I guess this would be a good way. I am not sure if there are any ther alternative good methods.
    Hope this helps.
    Shreekant

  • Problem With Remote, and strange error that crashes diagnos

    Hey guys. I'm a n00b to the forum, but I think this is my best hope. I'm having this problem getting my remote to work, and I'm getting an error that appears to common, but I haven't been able to find a solid solution. I can't do a reload, since I have savegame files that can't be backed up, and a large home-video backup on this computer. I don't have enough DVDs to back it all up onto. The one thing that I REALLY want to work is the Remote. For some reason it won't work. I know it isn't the battery, because it worked fine before I reloaded this system last (September?), and I have tried a new battery in it. I've also tried turning up the sensitivity settings. I've noticed the red light occaisionally flickers on the Creative Hub thing when I'm not even touching the remote. When I try to run the diagnostic program I get an error (The instruction at "0x77f536f7" memory "0x00000000". The memory could not be "written". Click OK to Terminate the program, or Click CANCEL to Debug the program) I've tried clicking CANCEL on this, and that does nothing but pop up the error message (The instruction at "0x084c42f" referenced memory at 0x00000008". The memory could not be "read". Click OK to terminate the program). Clicking OK on the previous window also gives you that error. Clicking OK on the error just mentioned closes down the diag program. I've tried using the Restore Defaults option, and that didn't fix the problem either. I've also run DocMemory on my computer, and according to it, my RAM is fine. As far as product updates go, I've downloaded them all and installed them all too. Everything works but the remote... and I think it may be partially b/c of the supposed RAM-based error. I haven't tried running it in safe mode yet... I'll try that and get back to you ASAP.
    --> Creative Soundblaster Audigy 2 ZS Plat. Pro.
    --> 52mb OCZ DDR400.
    --> AMD 64 3000+
    --> 20gig WD HDD
    --> 28mb PowerColour ATi Radeon 9200se
    --> Asus WiFi B
    --> XP Home
    I'm a huge computer junkie so feel free to go technical on me. Hopefully somebody can fix my problem.
    Thanks,
    -Richard-
    btw: I often see these same errors when shutting down my computer.
    [EDIT: 2/26/2004 @ 0:43PM]
    Okay, I just tried running the diag in safemode... still came up with the errors.
    -Richard-Message Edited by wardrich on 2-27-2004 03:40 AM

    Wardrich,
    There are a couple of things I would suggest. First off I would make sure that the remote control is enabled in Mediasource, it is not by default. To do this go into Mediasource and go to Tools/Settings. In here there is a remote control tab. Make sure the remote and the OSD is enabled in here. If it is then we need to look at doing a cleansweep and reinstall of the card. Here are the instructions on cleansweeping the card:
    http://forums.americas.creative.com/...&message.id=72
    Jeremy

Maybe you are looking for

  • Inbound delivery for Production Order in EWM

    Hi We have a scenario of creating Inbound Delivery, Pack (HU), GR and Putaway via an interface in EWM from an external system. Basically the transaction of /scwm/grpi and /scwm/prdi. I found this below thread which is little old. Could you please con

  • Cannot get a URL to work

    My son sent me a link to a video but I cannot get it to open. My daughter can so I know it works, but what could it be on my Mac that it won't open for me? I have no problem with anything else I view. TIA, Connie

  • How can I byu and Ship an Imac to Kiev (Ukraine)?

    I want to buy an Imac 27" core i7", and i want it to be in a legal way, straignt from the apple.com I want to be shure that i'm getting a genuine Imac foк it's price, and not to overpay illegal retail dealers.How can I buy an Imac and ship it to Ukra

  • Drivers for notebook

    Hi all! Sorry for my English. I have a problem with the drivers, I can't find them for the following devices: Device ID 1: USB\VID_0A5C&PID_216C&REV_0112 Device ID 2: PCI\VEN_8086&DEV_0F18&SUBSYS_227C103C&REV_0E Device ID 3: PCI\VEN_10EC&DEV_5229&SUB

  • Updating Serial # Location via DTW???

    Hi,  we recently had to relocate some inventory from one location to another.  During initial upload we populated the serial # location during goods receipt.  I now need to change that location for about 100 serial numbers.  Is there a way to do this