Problem with model trying several options (import,compare)

Hi all,
I have a problem in one of my models,
When I try to import fromdata dictionary or when I try to compare/merge with other models (i had no test other options)
I 'm gettint diferent errors :
Import from data dictionary;
2012-08-06 14:26:44,638 [main] INFO DataModelerAddin - Oracle SQL Developer Data Modeler 3.1.1.703
2012-08-06 14:27:32,183 [Thread-31] ERROR ModelChooserDialog - Error in Compare status
java.lang.NullPointerException
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addDeletedFKAssociation(Unknown Source)
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addTableDetails(Unknown Source)
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addTable(Unknown Source)
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addFromSourceModel(Unknown Source)
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.<init>(Unknown Source)
     at oracle.dbtools.crest.swingui.compare.CompareModelsDialog.<init>(Unknown Source)
     at oracle.dbtools.crest.swingui.compare.CompareModelsDialog.<init>(Unknown Source)
     at oracle.dbtools.crest.swingui.compare.ModelChooserDialog$OKAction$1.run(Unknown Source)
compare/merge;
2012-08-06 14:16:51,458 [Thread-50] ERROR DBMExtractionController - Error Generate Design: DB_POST
java.lang.NullPointerException
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addFK(Unknown Source)
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addTableDetails(Unknown Source)
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addTable(Unknown Source)
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.addFromSourceModel(Unknown Source)
     at oracle.dbtools.crest.model.design.compare.CompareModelToModel.<init>(Unknown Source)
     at oracle.dbtools.crest.swingui.compare.CompareModelsDialog.<init>(Unknown Source)
     at oracle.dbtools.crest.swingui.compare.CompareModelsDialog.<init>(Unknown Source)
     at oracle.dbtools.crest.imports.metadata.DBMExtractionController$Runner.run(Unknown Source)
     at java.lang.Thread.run(Thread.java:619)
I can do the same operations with other models in the same application, for this reason I guess the problem is in the model and not in the tool,
please, could anyone help me?
Version: 3.1.1.703
Thanks in advance and Regards

Hi Philip,
I finally could solve the problem,
one FK in the model was in strange status, I could not drop the foreign key, the DELETE function on the menu was not working for this object,
I have dropped from the folder the xml of this object and I have deleted from objects.local in the "rel" directory the reference to this object.
after that I'm able again to use the model,
for more information I have to add that the FK was duplicated, I mean, two FK with the same name and one of them I could view the properties and I could drop it from the model but the other one I couldn't until I drop the xml,
Thanks anyway for your help and I guess this problem comes from a SVN conflict or something related to control version,

Similar Messages

  • Compilation problem with templates while using option -m64

    Hi,
    I have compilation problem with template while using option -m64.
    No problem while using option -m32.
    @ uname -a
    SunOS snt5010 5.10 Generic_127111-11 sun4v sparc SUNW,SPARC-Enterprise-T5220
    $ CC -V
    CC: Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25
    Here is some C++ program
    ############# foo5.cpp #############
    template <typename T, T N, unsigned long S = sizeof(T) * 8>
    struct static_number_of_ones
    static const T m_value = static_number_of_ones<T, N, S - 1>::m_value >> 1;
    static const unsigned long m_count = static_number_of_ones<T, N, S - 1>::m_count + (static_number_of_ones<T, N, S - 1>::m_value & 0x1);
    template <typename T, T N>
    struct static_number_of_ones<T, N, 0>
    static const T m_value = N;
    static const unsigned long m_count = 0;
    template <typename T, T N>
    struct static_is_power_of_2
    static const bool m_result = (static_number_of_ones<T,N>::m_count == 1);
    template <unsigned long N>
    struct static_number_is_power_of_2
    static const bool m_result = (static_number_of_ones<unsigned long, N>::m_count == 1);
    int main(int argc)
    int ret = 0;
    if (argc > 1)
    ret += static_is_power_of_2<unsigned short, 16>::m_result;
    ret += static_is_power_of_2<unsigned int, 16>::m_result;
    ret += static_is_power_of_2<unsigned long, 16>::m_result;
    ret += static_number_is_power_of_2<16>::m_result;
    else
    ret += static_is_power_of_2<unsigned short, 17>::m_result;
    ret += static_is_power_of_2<unsigned int, 17>::m_result;
    ret += static_is_power_of_2<unsigned long, 17>::m_result;
    ret += static_number_is_power_of_2<17>::m_result;
    return ret;
    Compiation:
    @ CC -m32 foo5.cpp
    // No problem
    @ CC -m64 foo5.cpp
    "foo5.cpp", line 20: Error: An integer constant expression is required here.
    "foo5.cpp", line 36: Where: While specializing "static_is_power_of_2<unsigned long, 16>".
    "foo5.cpp", line 36: Where: Specialized in non-template code.
    "foo5.cpp", line 26: Error: An integer constant expression is required here.
    "foo5.cpp", line 37: Where: While specializing "static_number_is_power_of_2<16>".
    "foo5.cpp", line 37: Where: Specialized in non-template code.
    "foo5.cpp", line 20: Error: An integer constant expression is required here.
    "foo5.cpp", line 43: Where: While specializing "static_is_power_of_2<unsigned long, 17>".
    "foo5.cpp", line 43: Where: Specialized in non-template code.
    "foo5.cpp", line 26: Error: An integer constant expression is required here.
    "foo5.cpp", line 44: Where: While specializing "static_number_is_power_of_2<17>".
    "foo5.cpp", line 44: Where: Specialized in non-template code.
    4 Error(s) detected.
    Predefined macro:
    @ CC -m32 -xdumpmacros=defs foo5.cpp | & tee log32
    @ CC -m64 -xdumpmacros=defs foo5.cpp | & tee log64
    @ diff log32 log64
    7c7
    < #define __TIME__ "09:24:58"
    #define __TIME__ "09:25:38"20c20
    < #define __sparcv8plus 1
    #define __sparcv9 1[snipped]
    =========================
    What is wrong?
    Thanks,
    Alex Vinokur

    Bug 6749491 has been filed for this problem. It will be visible at [http://bugs.sun.com] in a day or two.
    If you have a service contract with Sun, you can ask to have this bug's priority raised, and get a pre-release version of a compiler patch that fixes the problem.
    Otherwise, you can check for new patches from time to time at
    [http://developers.sun.com/sunstudio/downloads/patches/]
    and see whether this bug is listed as fixed.

  • Can you help with technical problems with the stereo imagry option

    can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3'

    Because this forum software is so absolutely USELESS now, you don't get to see the whole of the question in this view. In the other (non-list) view it says:
    "can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3"
    And the answer is that if you can't isolate the vocal in the stereo field, or it is one of these odd ones where it's used inverted polarity in different parts of the stereo signal for the same vocal, then you won't be able to. But without a sample, it's impossible to tell. If you can post a link to one, that might help. It has to be external to this site though - Adobe in their infinite wisdom don't allow the posting of audio files on their audio U2U forum. Helpful, that, isn't it?

  • Compare Merge Model problems with models from different connections

    Hi all,
    I've experienced a problem while using the compare/merge model funcion under tools.
    Just to put in place:
    I've 4 model, one for each enviroment that I have: DEV, INT, TEST, PROD(*each model imported from different connections*). Because I haven't found any reliable way to keep them sincronyzed, using DLL deltas. Is there a way to do that?
    Anyway, regarding the main subject problem. Whem I try to sync for example, from PROD, to TEST, using compare/merge model function under tools, the process find the differences. When I selecte those that I want, and click on merge, the destination model TEST, get the selected objects merged into.
    But now, the model Schema, when I select sincronyze model with data dictionary to get de DLL delta, things get crazy, and the merged objects doesn't get detected to be created.
    If it's help, I think that the is with the associated import connection than the merged objects have. They have the PROD connection name, instead of the TEST connection name. Also when I try to syncronize the relational model againts de data dictionary(database), datamodeler ask me wich connection to use, PROD or TEST. When, before, merging, model, data modeler did not ask me anything.
    Why is data modeler doing this?
    What I have seen is when you import in a model things from different connections/models, when you try to sincronyze agains a connection, all objects that are not from the selected connection doesn't get compared.
    Is there a bug or a problem?
    How can I can keep a schema in different enviroments, sync? What are the step that I shoulf follow?
    Thanks in advance.
    Edited by: morfeo8marc on 14-mar-2012 11:17

    I shall try to explain what is happening here.
    When you import objects from TEST data dictionary, their source information (see Summary info in Properties dialog) will refer to TEST.
    The relational model for TEST will contain source information (see Summary info in Properties dialog) for the connection to TEST.
    Similarly, imported objects from PROD will refer to the PROD data dictionary, and the PROD relational model will hold connection details for PROD.
    If you merge PROD objects into the TEST model, they will retain their source information (i.e. referring to PROD).
    The TEST model will be updated to include connection details to PROD.
    When you synchronize a model, if it only has one source connection, it uses that.
    If it has more than one, it will prompt you to decide to which data dictionary it should synchronize.
    In your case, for the TEST data dictionary, it will synchronize all objects that have source information for TEST (i.e. those imported from TEST).
    It will also compare any new objects (i.e. those not imported from a data dictionary).
    It will not compare objects that were imported from a different data dictionary (e.g. PROD).
    This supports the scenario where a model consists of objects imported from more than one data dictionary, and where the data dictionaries are maintained separately.
    We may need to review the above strategy in light of your experience and development process.
    In the meantime, may I suggest that from your updated TEST model, you Import from Data Dictionary using the TEST connection.
    The resulting Compare Models dialog should show all objects (i.e. those from TEST and PROD).
    You may need to set the Swap Models option to generate DDL with which to update your TEST data dictionary.
    Thank you for raising this matter.
    Regards,
    Tony Rose

  • Problem with model size in Visual Composer

    Hello madam/sir,
    We are using ECC 5.0 and VC 700.8.0.1. We got error message during
    deployment "Error in compiling Flex application. Branch between 19217
    and 228774 around line 0 exceeds 32K". When we delete several blocks in
    the model, it works good. So tried to delete different blocks so we
    think that the problem is not with specific block but with model size.
    Our model is in one iView. We cannot use additional nested
    iViews because we have HTML View blocks that cannot be in
    nested iView (according to VC documentation). Is there any solution for
    this error? What does it mean?
    Best Regards,
    Sergey Kozyrev

    I agree with Ashutosh, you have to remodeling your model. You can also try to restart VC and deploy your model again, this might also help sometimes (I had sometimes the issue, that I removed any components and then I get the 32K error, after restarting the error disappeared).
    You can also check if you have any global entry list, which you do not use in your model, this also could help to reduce you model size.
    Best Regards,
    Marcel

  • Problem with Loader, trying to load multiple png files, error 1069 on the contentLoaderInfo

    Hi helpers !@
    im trying to load multiple external png files from a folder.  the path for the images comes from an xml attribute and i got no problem with the path. The error message pops on when i try to add the loader into an array for later use and then when im done remove each child i created.  There is something in my pratice that is not ok , i meen i know im wrong with at some point !  Duh theres an Error message for each loader i create .. .
    ReferenceError: Error #1069: Property Loader not found on flash.display.LoaderInfo and there is no default value.
    here some code  , pls  guide me !
    function affichageM(){
      var nodeM:XML;
    for each ( nodeM in listeM ){
       var reqM:String = localLogoM + nodeM.attribute("icon_max2");
       var imageLoaderJ = new Loader();
       imageLoaderJ.contentLoaderInfo.addEventListener(Event.INIT,addM);
       imageLoaderJ.load(new URLRequest(reqM));
         // just counting for fun
       iNodeM ++;
    function addM(e:Event){
    try { var l_img:Loader = Loader(e.currentTarget.Loader);
           l_img.name = "imageLoaderJ" + mc_ArrayImg.length().toString() ;
           l_img.visible = false;
           mc_ArrayImg.push(l_img);
           mc_Jour.addChild(l_img);
             //calling the fucntion that will animate all img in the array and had some text to them.....
          drawMyImg(mc_ArrayMImg.length()-1);
    catch (error:Error) {
           //just counting errors for fun
          iErreurM++;
            var errorMessage:TextField = new TextField();
            errorMessage.autoSize = TextFieldAutoSize.LEFT;
            errorMessage.textColor = 0xFF0000;
            errorMessage.text = error.message + " " +  mc_Jour.numChildren + " " + mc_ArrayImg.length;
            errorMessage.x = 10*iErreurM;
            addChild(errorMessage);
            return;

    Hi, I'm not sure you are on the correct forum. This is the Flash Player forum. When you first open your thread, look to your right "More like This" and perhaps one of those forums would be helpful. Perhaps the Flash forum?
    Thanks,
    eidnolb

  • Problem with transition between tracks of imported mp3 compilation

    We publish audio travel guides. I just received 17 mp3 files from our sound engineer and imported them into iTunes and set them as a compilation. I then manually moved them to my G4 iPod.
    There is a problem with the end of track 1 and the beginning of track 2.
    When we played back from the iPod, about 6 seconds before the end of track 1, it skipped fwd to the start of track 2.
    When I played from iTunes (Windows Vista), track 1 was fine, but track 2 started about 4 seconds in.
    I set track to to start playing at 0:00 and it still skipped.
    argh!
    Message was edited by: Newmarket2

    To fully test this, burn to a disk. The length of such pauses varies.
    Also, consider ceating the "transition" as a motion menu with a loop point.
    http://help.adobe.com/en_US/encore/cs/using/WSA5513911-0AD1-440c-BDAD-2E0E806B425E.html

  • Problems  with CS4 when several photos are open

    Hello all,
    I have a problem with Photoshop CS4. When I have several photos open, the borders of the underlying is shining through:
    This remains until I move the upper picture. Its a rather ennoying effect...
    My configuration is the following:
    Windows XP Professional SP3, Pentium 4 Dual 3.2 Ghz, 3.25 GB RAM, NVidia Quadro FX 1500, driver 6.14.11.8120, plenty of HD space, etc...
    Photoshop CS4 11.0.1
    Who can help?
    Thanks in advance, Dan

    What springs to the eye is that it's the UI elements (the frames around the images) not the pixel content, so I'd rule out any OpenGL issues. More likely it's a general memory shortage of the graphics system, which either is due to using excessive screen resolutions, another app stealing resources or a configuration problem. I would definitely check the NVidia panel and see, if you have not inadvertently toggled some critical setting. Furthermore look, whether some program is running in the background that may steal the screen buffer. Funnily, Corel Capture could be such a suspicious tool, if it's running all the time. Also turn off the rulers. There has been an issue with those and it may still not be fixed in the latest update. As a last thing to look into, of course make sure to get rid of any fancies you may be using, e.g. drop shadows on your windows, a desktop image, transparent window dragging and such. all those consume memory on the graphics card.
    Mylenium

  • Printing Problem with Model HP Deskjet 2640 Series

    To Whom It May Concern, I am having problem with printing. There is always  a notification from the printer says" A footer of section list ser outside the printable area".Please advise. Thank you

    Hello @Tellen,
    Thank  you for visiting the HP Support Forums! I understand you are running into some print quality problems with your HP Deskjet 3050. I see when you attempt to print a letter you will only see the email address and its in blue ink.
    First I would like you to click here to download and run the Print and Scan Doctor > www.hp.com/go/tools- It was designed by HP to provide users with the troubleshooting and problem solving features needed to resolve many common problems experienced with HP print and scan products connected to Windows-based computers.
    What does the PSDR find? If you are still not getting black text, please continue here: Fixing Print Quality Problems for the HP Deskjet 3050 (J610) All-in-One Printer Series
    If after the troubleshooting has been done and you are still seeing the issue leave me with the following information:
    1. What is your current Operating system, Windows or Mac and which version?
    2. How is the printer connected, USB or Wireless?
    3. If you print a test page from the front panel do you see the same issue?
    I hope to hear from you soon.
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Problem with Model import through exsiting webservice

    i created one converter webservice and deployed on sap j2ee engine,tested successfully.
    after that i am trying to import the existing webservice as model class in to my webdynpro.
    but it is saying invalid WSDL or no WSDL exits.
    below one is my webservice
    http://INLD50043555:50000/converter/Config1?wsdl 
    finally i able to import the webservice with small modification on the above url that is replaced <b>INLD5004355</b> with <b>localhost</b>.
    my doubt is why it is not recognising the system name.
    if webservice is on remote machine what is the case?
    can any one give me the explanation to this?
    thanks in advance

    Please try with IP
    Regards, Anilkumar

  • Problem with jax-ws and optional attributes

    Hello,
    I'm developing some web services, starting by defining the object model in schemas, then doing WSDL first to define the services.
    I've come across a problem that appears to be caused by jax-ws not properly handling optional attributes. I've tried this with both 2.0 and 2.1ea3 and both fail the same way.
    I created a simplified test case to repeatably demonstrate the problem.
    The type definition for the object looks like this :
    <xsd:complexType name="TestObject" >
    <xsd:attribute name="name" type="xsd:string" use="required"/>
    <xsd:attribute name="subId" type="xsd:integer" use="optional" />
    </xsd:complexType>
    And in the wsdl:
    <wsdl:message name="testRequest">
    <wsdl:part name="testrequest" type="mf:TestObject"/>
    </wsdl:message>
    <wsdl:operation name="testAction">
    <wsdl:input name="testRequest" message="mf:testRequest"/>
    <wsdl:output name="successResponse" message="mf:successResponse"/>
    </wsdl:operation>
    and the test code:
    public void testOptionalAttrs()
    TestObject testObj = new TestObject();
    testObj.setName("testName");
    //testObj.setSubId(2);
    MDSProvisioningResourcePortType resourceManager = factory.getGatewayResourceManager();
    boolean success = resourceManager.testAction(testObj);
    Running the test code with the 'setSubId' uncommented works.
    With the 'setSubId' call commented out out results in this error:
    javax.xml.ws.WebServiceException: javax.xml.bind.MarshalException
    - with linked exception:
    [com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException]
         at com.sun.xml.ws.message.jaxb.JAXBMessage.writePayloadTo(JAXBMessage.java:301)
         at com.sun.xml.ws.message.AbstractMessageImpl.writeTo(AbstractMessageImpl.java:124)
         at com.sun.xml.ws.encoding.StreamSOAPCodec.encode(StreamSOAPCodec.java:91)
         at com.sun.xml.ws.encoding.SOAPBindingCodec.encode(SOAPBindingCodec.java:225)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:121)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:69)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:541)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:497)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:392)
         at com.sun.xml.ws.client.Stub.process(Stub.java:213)
         at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:120)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:238)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:212)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:103)
         at $Proxy58.testAction(Unknown Source)
         at com.qualcomm.mf.prov.ProvisioningGatewayClientFactoryTest.testOptionalAttrs(ProvisioningGatewayClientFactoryTest.java:118)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.junit.internal.runners.TestMethodRunner.executeMethodBody(TestMethodRunner.java:99)
         at org.junit.internal.runners.TestMethodRunner.runUnprotected(TestMethodRunner.java:81)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75)
         at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45)
         at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71)
         at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35)
         at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52)
         at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
    Caused by: javax.xml.bind.MarshalException
    - with linked exception:
    [com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException]
         at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:255)
         at com.sun.xml.bind.v2.runtime.BridgeImpl.marshal(BridgeImpl.java:64)
         at com.sun.xml.bind.api.Bridge.marshal(Bridge.java:105)
         at com.sun.xml.ws.message.jaxb.JAXBMessage.writePayloadTo(JAXBMessage.java:292)
         ... 35 more
    Caused by: com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException
         at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:224)
         at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:239)
         at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeAttributes(ClassBeanInfoImpl.java:302)
         at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:661)
         at com.sun.xml.bind.v2.runtime.BridgeImpl.marshal(BridgeImpl.java:111)
         at com.sun.xml.bind.v2.runtime.CompositeStructureBeanInfo.serializeBody(CompositeStructureBeanInfo.java:71)
         at com.sun.xml.bind.v2.runtime.CompositeStructureBeanInfo.serializeBody(CompositeStructureBeanInfo.java:19)
         at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:663)
         at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:250)
         ... 38 more
    Caused by: com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException
         at com.sun.xml.bind.v2.runtime.reflect.AdaptedAccessor.get(AdaptedAccessor.java:33)
         at com.sun.xml.bind.v2.runtime.reflect.TransducedAccessor$CompositeTransducedAccessorImpl.print(TransducedAccessor.java:199)
         at com.sun.xml.bind.v2.runtime.property.AttributeProperty.serializeAttributes(AttributeProperty.java:61)
         at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeAttributes(ClassBeanInfoImpl.java:295)
         ... 44 more
    Caused by: java.lang.NullPointerException
         at org.w3._2001.xmlschema.Adapter3.marshal(Adapter3.java:23)
         at org.w3._2001.xmlschema.Adapter3.marshal(Adapter3.java:1)
         at com.sun.xml.bind.v2.runtime.reflect.AdaptedAccessor.get(AdaptedAccessor.java:31)
         ... 47 more
    So am I missing something or is jax-ws not handling optional attributes correctly?
    Thanks,
    Hank

    Hi,
    This is not a direct answer to your question. But if you want to build restful web services with Weblogic 10.3, why not use Jersey . It is the implementation of the new JAX-RS spec. In my experience, although Jersey is part of the Java EE 6 spec, it appears to work ok with Java EE 5 container like Weblogic 10.3.1. The [JAX-RS section of Java EE tutorial|http://java.sun.com/javaee/6/docs/tutorial/doc/giepu.html] is another good source of example code.
    Edited by: vamsee2 on Sep 25, 2009 12:38 PM

  • On my mac firefox 4 and 3 i can't simply even open it, it just crashes and crashes, although if i try to open it in another acount yes it opens, i'ts like my account has a problem with firefox (tryed cleaning it all with appzaper, but nothing)))

    Hello,
    I have an iMac osX snow leopard (newest version) and strangely since some months, strangely when i tryed to open firefox it started crashing, firefox 3 and firefox 4 beta, i open them and in 5 seconds they crash.
    Strangely enough on another account on my mac firefox WORKS perfectly, and it seems it's only crashing on my account, i even used cleanmymac and appzaper to clean totaly firefox files and re install it.
    Please help me i can't stand chrome going so slow with 10 tabs

    Thanks Sig for getting back to me.  I really do appreciate it!  But I'm not sure how erasing my drive is going to help.  And besides, my problem is that I can't even boot to my original Tiger install DVDs anymore.  I'm unable to execute any kind of boot-level command -- including holding down "c" key to boot from the drive, holding "T" key to go into Target Disk Mode or holding down "option" in order to bring up my bootable partitions!
    Holding down any of these keys after the boot chime simply causes the screen to go black and then hang. The DVD drive will show it's being read from but nothing ever comes up.
    Since I can't boot to my install DVD, there is no way for me to access the Disk Utility to erase my hard drive.  Do you see the problem?
    I am able to boot to my Windows 7 DVD, since I was able to install that to my old Tiger Partition, but I don't see how using my Windows install DVD would help me to re-install OS X.
    I need to figure out why none of my boot-level opterations are available.  If I was able to boot to my original Tiger discs (or any OS X DVD) than my problem would be solved, but I can't do that!
    Any other ideas?  Thanks in advance!  --e

  • Problem with model N73. Sometimes the other side h...

    I have Nokia N73 and in start very big problem. Sometimes someone which I speak with complain that hear me very bad, with noise, sound like a robot (Level of signal on the both sides is exelent). It is a new phone, and I sent it to Nokia servis. They reinstalled software and sent me phone back, but after 2 or 3 days I used a bluetooth headset in the car and the problem reappeared. The same thing was when I disconected bluetooth headset. In a setup of phone there is one option "Network mode" with 3 suboptions: Dual mode, UMTS and GSM. Initialy it was setup on Dual mode. I changed to GSM. After reseting phone the problem was disappeared, but I am not sure that the problem is solved.
    I'll be very greatfull if anybody know what is the problem, and posibly solution.

    I have the exact same problem. Everything works great exept for the fact that everyone I speak to using Bluetooth headsets complain that I sound "tinny", "weak" or "robot-like".
    I've tried with two different headsets (Jabra JX10 and Nokia BH-200) and the problem is the same. I have also tried to reset the headsets, delete pairing and pair them all over again - still the same problem.
    Seems like the Bluetooth and 3G signals/frequencies may interfere with each other or something.
    The wired headset that came with the phone works without problems. Problem is only there when using Bluetooth headsets.
    Any solution?
    Regards,
    Michael

  • Problem with model instantiation

    I have an EJB model and while instantiating it in WDP I am getting  an error at runtime:
    The initial exception that caused the request to fail, was:
       java.lang.NullPointerException
        at -- Optimized, preallocated exception. No stack trace. Run VM with -XX:-OmitStackTraceInFastThrow to avoid this optimization. -- .()
    I cant make any head and tail out of this. There is absolutely nothing in stackTrace other than the above message. I could instantiate my other EJB models and they are working fine. I dont know why this one particular model is giving some problems...
    I tried reimporting/rebuilding/reload but in vain. My WS (which encapsulates EJB) is working fine.
    Please help!!!

    The compiler does not generate template instances that are already in libCstd, which is linked by default to programs. Instead of trying to force those instances into your shared library, you should build your library with a dependency on libCstd.
    Remember that no system libraries are referenced automatically when you create a shared library -- you have to mention them explicitly. Normally you want to link against libCstd, libCrun, libm and libc. Refer to the C++ User's Guide that comes with the compiler, the "Building Libraries" chapter.

  • SQL Developer:Problem with multi byte size after import using excel format

    Hi,
    Need your help. I am trying to export multibyte characters from our China instance(r11i instance) using SQL Developer's export data via Excel format into an R12 Vision instance. I have a staging table with exactly the same structure in both instances. Prior to export to excel, I check the byte size of the sample data below using LENGTH and LENGTHB sql functions and these are the results:
    Sample data = 材料LI(USD)
    LENGTH=9
    LENGTHB=13
    Then, I exported the table as excel file. Afterwards, I used SQL Developer to import the excel file into the table of the target instance. I check the bytesize again and here are the results:
    Sample data = 材料LI(USD)
    LENGTH=9
    LENGTHB=17
    The byte size increased from 13 to 17. I did not change anything on the excel file. Just straight forward export to excel file then imported it to the target instance. How come there is an increase in byte size? Has anyone encountered this in SQL Developer? We really need to export the files as excel.
    Source:
    Database version = 9.2.0.5.0
    Target:
    Database version = 11.1.0.7.0
    Regards,
    Wendell
    Edited by: user13038177 on May 13, 2010 9:05 PM
    Edited by: user13038177 on May 13, 2010 9:06 PM

    Wendell,
    This forum is for handling issues migrating from non-Oracle databases to Oracle databases.
    As this is an Oracle to Oracle issue using SQL*Developer export it would be better to open a new thread in the SQL*Developer forum -
    SQL Developer
    There will be more people there who can help with this problem.
    Regards,
    Mike
    Edited by: mkirtley on May 14, 2010 10:16 AM

Maybe you are looking for

  • How do I shrink the page size of a PDF when printing?

    I opened up a PDF and it opened in Preview and i need to print the page of the pdf but shrink it so it takes up 1/4 of the page and it has to be in the corner. What do I do?

  • Mail V3.1 can not create a new Cablevision Optimum Online mail account

    Apple Technical support asked me to report this on this forum. I have OS X 10.5.1 with Mail 3.1. My ISP is Cablevision Optimum Online, which uses mail.optonline.net as their POP and SMTP servers. Pre-existing mail accounts, created under 10.4.x (Tige

  • BPM Loop in PI  7.1

    I have an scenerio where I need to traverse through an xml file , and for each node of XML I need to loop with certain operation in BPM . e.g   xml as per the XSD --> Loop through each node --> with in each loop BPM will call a different webservice t

  • Camera Raw 6.4 released

    Details here: Lightroom 3.4 and Camera Raw 6.4 now available New Camera Support: Canon      EOS 600D (Rebel T3i / Kiss X5 Digital) Canon      EOS 1100D (Rebel T3 / Kiss X50 Digital) Fuji      FinePix S200 EXR Fuji      FinePix F550 EXR Fuji      Fine

  • . What is the client concept in SAP? What is the meaning of client independ

    hi, send me replay