JAXB : Issue with include XSDs

Hi..
I fail to generate JAXB Schema Driven Classes when I try to use a XSD which has xsd:include tag inside. Due to this include XSD, I am getting compilation error while I try to generate files using xjc command.
Hope JAXB will have solution for handling include tags in XSD Schemas.
Pl provide me the solution.
Thanks in advance.
Venkki.

Thanx for ur quick response.
Can u pl send me the xjc command to generate JAXB Schema Driven Classes?
sothat I can verify whether any changes I need to do with that command for including schemas?
Regards,
Venkatesan R

Similar Messages

  • Issue with include

    I have an include that links to the social networking icons. For some reason, my two icons on the far right are sort of masked off so as not to allow the cursor to hover over them as a pointer finger - only in Firefox though. Issue does not occur in IE or Safari. The very edge of the graphic seems to be functioning as an active "hotspot", but not the entire icon button.
    Any idea as to why this might be?
    Thanks.

    I'd start with cleaning upall the coding errors
    It may very well solve the problem
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.beekley.com%2F&charset=%28detect+automa tically%29&doctype=Inline&group=0

  • Cache issues with include Actionscripts

    I am currently working on a project that uses the same file
    name for its banners - PROMO_SHOP.SWF. In this banner there are
    three promo squares that when each is clicked will go to different
    URLs. What I have done is the URLs are in a seperate .AS
    actionscript file that the client can update.
    Some background: I use to include the URLs within the final
    SWF file but because I charged the client everytime I made a URL
    update change, the client did not want to have to pay for it. The
    alternative was to create an include that would reference the URL
    "links.as" file.
    The issue: It seems that when I place this onto the web (in a
    JS2 template) each time you update the URLs the cache (of either
    the browser or the server) is retaining the original link from the
    included .AS file. The only work around solution is to change the
    name of the "links.as" file to something else which means I have to
    update the SWF file to reference the new file name. This really
    doesn't help the client out.
    Does anyone know why the SWF file will not recognize a new AS
    file when the AS file is updated?
    Thanks
    Jeff

    I am assuming you are using #include to include your .as
    file. When you compile a swf, any #include code will be compiled
    too. After you have made your swf, changing the .as file will have
    no effect on your swf at all. You would need to re-compile your swf
    to use the changed code in your .as file.
    Hope that helps.

  • Issue with including.

    Hi BW Experts,
    I am facing problem with my query:
    In filters,for ZPLANT i am giving the value 1000.
    My Doubt is when i inlcude a value of 1000 for ZPLANT do the other values appear for  ZPLANT(i.e 2000,2500) in report?
    please inform me

    Hi JR,
      I did a listcube and i get values related to Info-provider with ZPLANT=1000.I think problem might be with the Query.
    But i am not using any exits,i am using only Characteristic value with Manual entry/Default value.With Default value as blank.
    Any other ideas?

  • Issue with xsd Data type mapping for collection of user defined data type

    Hi,
    I am facing a issue with wsdl for xsd mapping for collection of user defined data type.
    Here is the code snippet.
    sample.java
    @WebMethod
    public QueryPageOutput AccountQue(QueryPageInput qpInput)
    public class QueryPageInput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class QueryPageOutput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class Account_IO implements Serializable, Cloneable {
    protected ArrayList <AccountIC> fintObjInst = null;
    public ArrayList<AccountIC>getfintObjInst()
    return (ArrayList<AccountIC>)fintObjInst.clone();
    public void setfintObjInst(AccountIC val)
    fintObjInst = new ArrayList<AccountIC>();
    fintObjInst.add(val);
    Public class AccountIC
    protected String Name;
    protected String Desc;
    public String getName()
    return Name;
    public void setName(String name)
    Name = name;
    For the sample.java code, the wsdl generated is as below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <wsdl:definitions
    name="SimpleService"
    targetNamespace="http://example.org"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    >
    <wsdl:types>
    <xs:schema version="1.0" targetNamespace="http://examples.org" xmlns:ns1="http://example.org/types"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://example.org/types"/>
    <xs:element name="AccountWSService" type="ns1:accountEMRIO"/>
    </xs:schema>
    <xs:schema version="1.0" targetNamespace="http://example.org/types" xmlns:ns1="http://examples.org"
    xmlns:tns="http://example.org/types" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://examples.org"/>
    <xs:complexType name="queryPageOutput">
    <xs:sequence>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="accountEMRIO">
    <xs:sequence>
    <xs:element name="fIntObjectFormat" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageType" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageId" type="xs:string" minOccurs="0"/>
    <xs:element name="fIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fOutputIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fintObjInst" type="xs:anyType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="queryPageInput">
    <xs:sequence>
    <xs:element name="fPageSize" type="xs:string" minOccurs="0"/>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    <xs:element name="fStartRowNum" type="xs:string" minOccurs="0"/>
    <xs:element name="fViewMode" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://example.org" xmlns:ns1="http://example.org/types">
    <import namespace="http://example.org/types"/>
    <xsd:complexType name="AccountQue">
    <xsd:sequence>
    <xsd:element name="arg0" type="ns1:queryPageInput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQue" type="tns:AccountQue"/>
    <xsd:complexType name="AccountQueResponse">
    <xsd:sequence>
    <xsd:element name="return" type="ns1:queryPageOutput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQueResponse" type="tns:AccountQueResponse"/>
    </schema>
    </wsdl:types>
    <wsdl:message name="AccountQueInput">
    <wsdl:part name="parameters" element="tns:AccountQue"/>
    </wsdl:message>
    <wsdl:message name="AccountQueOutput">
    <wsdl:part name="parameters" element="tns:AccountQueResponse"/>
    </wsdl:message>
    <wsdl:portType name="SimpleService">
    <wsdl:operation name="AccountQue">
    <wsdl:input message="tns:AccountQueInput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    <wsdl:output message="tns:AccountQueOutput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="SimpleServiceSoapHttp" type="tns:SimpleService">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="AccountQue">
    <soap:operation soapAction=""/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="SimpleService">
    <wsdl:port name="SimpleServicePort" binding="tns:SimpleServiceSoapHttp">
    <soap:address location="http://localhost:7101/WS-Project1-context-root/SimpleServicePort"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    In the above wsdl the collection of fintObjInst if of type xs:anytype. From the wsdl, I do not see the xsd mapping for AccountIC which includes Name and Desc. Due to which, when invoking the web service from a different client like c#(by creating proxy business service), I am unable to set the parameters for AccountIC. I am using JAX-WS stack and WLS 10.3. I have already looked at blog http://weblogs.java.net/blog/kohlert/archive/2006/10/jaxws_and_type.html but unable to solve this issue. However, at run time using a tool like SoapUI, when this wsdl is imported, I am able to see all the params related to AccountIC class.
    Can some one help me with this.
    Thanks,
    Sudha.

    Did you try adding the the XmlSeeAlso annotation to the webservice
    @XmlSeeAlso({<package.name>.AccountIC.class})
    This will add the schema for the data type (AccountIC) to the WSDL.
    Hope this helps.
    -Ajay

  • Use XSD referencing other XSDs with include statement in Message mapping

    Hello,
    I have an XSD with include statements having reference to other 4 XSDs.One XSD out of these 4,one references one more XSD
    I referred to the thread on this :
    refrencing 1 xsd to another   https://forums.sdn.sap.com/post!default.jspa?forumID=44#
    I have created 6 External Definitions one for each XSD
    Referring to the following statement in this thread:
    In XI 3.0, there is a tab there called External References. You will see there a Source and a Name. When you click the Name, click Copy Object. Then you open the target object and paste it under the Source located just before the tabs.
    The Name you see in the External References are the ones that are declared as include or import in the XSD.
    I can see included XSD names in Source column under External References tab in External definition for main XSD.
    But Name column is always blank and these columns are not editable.Also,copy doesn't work.
    We have XSD names in include statements,but I wonder when I create External definitions out of these XSDs ,how would my main External definition know,which other External definitions are referenced?
    If I use the External definition with main XSD as target structure in my mapping,I can only see the fields from this XSD and not the fields from the included XSDs.But I need to map these fields as well.
    Can anybody please let me know how can I get a complete XSD as target structure in my mapping?
    Thanks for your help.
    Regards,
    Shweta

    Plz close other duplicate threads for the same issue first..
    Regards,
    Sarvesh

  • TS1702 I'm not able to update Smurf's Village. Tried most of the things proposed on the net including restarting the iPad and trying syncing with the computer. Had a similar issue with another application. Had to delete and reinstall it, with all history

    I'm not able to update Smurf's Village. Tried most of the things proposed on the net including restarting the iPad and trying syncing with the computer. Had a similar issue with another application. Had to delete and reinstall it, with all history lost.
    Tried following up with the developer's instruction. Didn't help. Developer suggested contacting Apple if their instruction didn't work. Tried the various methods recommended on the Apple site. Same result.

    Telling is that you tried most of the things on the net doesn't tell us exactly what you did try, so we are all still left to guess .....
    Sign out of your account, restart the iPad and then sign in again.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>Store>Sign in and then try to update again
    If that doesnt work - go to Settings>General>Date and Time - set the date ahead by a few months. Try to update again. If you get an error message of any kind - go back and change the date and time to automatic again. Then try again.
    If that doesn't work, restart your router and reboot the iPad.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Validation issues with XSD

    I'm trying to validate a xml file with this schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns="http://www.jeromedroz.org/etc/lexicon.xsd"
                   targetNamespace="http://www.jeromedroz.org/etc/lexicon.xsd">
         <xsd:element name="lexicon">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element     ref="available-languages" minOccurs="1"
                                       maxOccurs="1"/>
                        <xsd:element ref="term" minOccurs="1" maxOccurs="unbounded"/>
                   </xsd:sequence>
                   <xsd:attribute name="name" type="xsd:string" use="optional" />
              </xsd:complexType>
              <xsd:key name="termPK">
                   <xsd:selector xpath="./term" />
                   <xsd:field xpath="@id" />
              </xsd:key>
              <xsd:keyref name="termFK" refer="termPK">
                   <xsd:selector xpath="./term/include" />
                   <xsd:field xpath="@idref" />
              </xsd:keyref>
         </xsd:element>
         <xsd:element name="available-languages">
              <xsd:complexType>
                   <xsd:sequence maxOccurs="unbounded">
                        <xsd:element     ref="language" minOccurs="1" />
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <xsd:element name="language">
              <xsd:complexType>
                   <xsd:attribute name="value" type="xsd:string" use="required" />
                   <xsd:attribute name="default" type="xsd:boolean" use="optional" />
              </xsd:complexType>
         </xsd:element>
         <xsd:element name="term">
              <xsd:complexType mixed="true">
                   <xsd:choice minOccurs="0" maxOccurs="unbounded">
                        <xsd:any     namespace="http://www.w3.org/1999/xhtml"
                                  processContents="skip" />
                        <xsd:element ref="translation" />
                        <xsd:element ref="include" />
                   </xsd:choice>
                   <xsd:attribute name="id" type="xsd:string" use="required" />
              </xsd:complexType>
         </xsd:element>
         <xsd:element name="translation">
              <xsd:complexType mixed="true">
                   <xsd:choice minOccurs="0" maxOccurs="unbounded">
                        <xsd:any     namespace="http://www.w3.org/1999/xhtml"
                                  processContents="skip" />
                        <xsd:element ref="include" />
                   </xsd:choice>
                   <xsd:attribute name="language" type="xsd:string" use="required" />
              </xsd:complexType>
         </xsd:element>
         <xsd:element name="include">
              <xsd:complexType>
                   <xsd:attribute name="idref" type="xsd:string" use="required" />
              </xsd:complexType>
         </xsd:element>
    </xsd:schema>And here is a portion of my xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <lexicon     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                       xsi:noNamespaceSchemaLocation="http://www.jeromedroz.org/etc/lexicon.xsd
                     ./lexicon.xsd"
                    xmlns:html="http://www.w3.org/1999/xhtml"
                 xmlns="http://www.jeromedroz.org/etc/lexicon.xsd"
                    name="lexicon">
         <available-languages>
              <language value="fr" default="true" />
              <language value="en" />
         </available-languages>
         <term id="include-this">
              <translation language="fr">inclure cela</translation>
                    <translation language="en">include this</translation>
         </term>
            <term id="home">
              <html:a href="http://www.mysite.org">    
                         <translation language="fr">accueil</translation>
                         <include idref="include-this" />
                    </html:a>
         </term>
    </lexicon>The idref attribute of the include tag is a reference to the id attribute of the term tag. The problem is the key and keyref definition in the xsd file: for example, if a term appears more than once (with the same id) the parser should notice it because the key is duplicated, but it doesn't. I've tried several places for the key and keyref definition in the xsd file but I get an error like KeyRefOutOfScope nearly all the time. Do anybody have a solution?

    I'm trying to validate a xml file with this schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns="http://www.jeromedroz.org/etc/lexicon.xsd"
                   targetNamespace="http://www.jeromedroz.org/etc/lexicon.xsd">
         <xsd:element name="lexicon">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element     ref="available-languages" minOccurs="1"
                                       maxOccurs="1"/>
                        <xsd:element ref="term" minOccurs="1" maxOccurs="unbounded"/>
                   </xsd:sequence>
                   <xsd:attribute name="name" type="xsd:string" use="optional" />
              </xsd:complexType>
              <xsd:key name="termPK">
                   <xsd:selector xpath="./term" />
                   <xsd:field xpath="@id" />
              </xsd:key>
              <xsd:keyref name="termFK" refer="termPK">
                   <xsd:selector xpath="./term/include" />
                   <xsd:field xpath="@idref" />
              </xsd:keyref>
         </xsd:element>
         <xsd:element name="available-languages">
              <xsd:complexType>
                   <xsd:sequence maxOccurs="unbounded">
                        <xsd:element     ref="language" minOccurs="1" />
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <xsd:element name="language">
              <xsd:complexType>
                   <xsd:attribute name="value" type="xsd:string" use="required" />
                   <xsd:attribute name="default" type="xsd:boolean" use="optional" />
              </xsd:complexType>
         </xsd:element>
         <xsd:element name="term">
              <xsd:complexType mixed="true">
                   <xsd:choice minOccurs="0" maxOccurs="unbounded">
                        <xsd:any     namespace="http://www.w3.org/1999/xhtml"
                                  processContents="skip" />
                        <xsd:element ref="translation" />
                        <xsd:element ref="include" />
                   </xsd:choice>
                   <xsd:attribute name="id" type="xsd:string" use="required" />
              </xsd:complexType>
         </xsd:element>
         <xsd:element name="translation">
              <xsd:complexType mixed="true">
                   <xsd:choice minOccurs="0" maxOccurs="unbounded">
                        <xsd:any     namespace="http://www.w3.org/1999/xhtml"
                                  processContents="skip" />
                        <xsd:element ref="include" />
                   </xsd:choice>
                   <xsd:attribute name="language" type="xsd:string" use="required" />
              </xsd:complexType>
         </xsd:element>
         <xsd:element name="include">
              <xsd:complexType>
                   <xsd:attribute name="idref" type="xsd:string" use="required" />
              </xsd:complexType>
         </xsd:element>
    </xsd:schema>And here is a portion of my xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <lexicon     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                       xsi:noNamespaceSchemaLocation="http://www.jeromedroz.org/etc/lexicon.xsd
                     ./lexicon.xsd"
                    xmlns:html="http://www.w3.org/1999/xhtml"
                 xmlns="http://www.jeromedroz.org/etc/lexicon.xsd"
                    name="lexicon">
         <available-languages>
              <language value="fr" default="true" />
              <language value="en" />
         </available-languages>
         <term id="include-this">
              <translation language="fr">inclure cela</translation>
                    <translation language="en">include this</translation>
         </term>
            <term id="home">
              <html:a href="http://www.mysite.org">    
                         <translation language="fr">accueil</translation>
                         <include idref="include-this" />
                    </html:a>
         </term>
    </lexicon>The idref attribute of the include tag is a reference to the id attribute of the term tag. The problem is the key and keyref definition in the xsd file: for example, if a term appears more than once (with the same id) the parser should notice it because the key is duplicated, but it doesn't. I've tried several places for the key and keyref definition in the xsd file but I get an error like KeyRefOutOfScope nearly all the time. Do anybody have a solution?

  • Known issues with CUDA 5.0.17 and 5.0.24 driver (including crashes and kernel panics) on Mac OSX

    We have recently learned of some issues with the new CUDA drivers from Nvidia that cause crashes and kernel panics in some circumstances, including when switching between applications that use the GPU.
    See this page for details.

    You are experiencing a page fault (reference to an area outside of what is owned by the software in question) in the AirPort driver, in a Mac OS X kernel that does not have obvious third-party modifications to it.
    This should not be happening. Your Mac OS X image may be Bad.
    If you do not already have a Trusted Backup, that should be your Top Priority.
    If this is a new MacBook, and it is within the first 90 days of ownership, contact telephone support and ask them to help you. They will likely suggest a re-Install, right over the Mac OS X you have in place now. This is intended to do no damage, but you should always have a Backup.

  • Known issues with CUDA 5.0.17 driver (including crashes and kernel panics) on Mac OSX

    We have recently learned of some issues with the new CUDA drivers from Nvidia that cause crashes and kernel panics in some circumstances, including when switching between applications that use the GPU.
    See this page for details.

    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the third-party developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    Here are some general guidelines. Suppose you want to remove something called “BrickYourMac.” First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickyourmac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, email the developer. While you're waiting for a response, download BrickYourMac.dmg and open it. There may be an application in there such as “Uninstall BrickYourMac.” If not, open “BrickYourMac.pkg” and look for an Uninstall button.
    If you can’t remove software in any other way, you’ll have to erase your boot volume and perform a clean reinstallation of OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" that purport to remove software.

  • Issues with this MacBook, including a new random shutting off.

    I received a MacBook as a present in late 2008. It served me well until in April 2010, I spilt water on it and it died. I then bought a new one in August of 2010, but I didn't purchase it in the store, I used a friend's discount at Apple and it was shipped to my house days later. From the first day I started having issues with it. I have to constantly be saving my word documents because word freezes all the time & I'm constantly have to force-quit and restart word. This Mac also seems more glitchy than my old one, which is Ironic considering it's the new model. In addition, I had tons of issues with iMovie and uploading to YouTube. It would spend 2 hours trying to upload in HD, then when it was "finished" and error report would pop up.
    And for the latest and greatest issue, It has recently started randomly shutting down. I've been able to cope with the previous bugs but this one scares me. It will randomly shut down (WITH FULL BATTERY) and wont boot up again for a while. I was so sure I'd lost it this morning but luckily it came back up. I also have been getting the grey-screen and pop up that says "please restart your device" and whence I do, the computer asks me, do you want to report this to Apple? And I always do because I want to know whats going on. Does anyone have any ideas/suggestions??
    Also, to my regret, I didn't by the Apple Care with this computer because I spend 4 months saving up for this one and didn't have enough to by the warranty with it... So I'm at a loss for what to do. PLEASE help.

    Welcome to Apple Discussions!
    It sounds like a lemon. Take it in to a store and tell them your experience and financial constraint. We are just end users here, and can't say how they might respond. In the future remember take care of issues in first two weeks or less, and check the store return policy when you buy.

  • I have found an issue with MS13-098 which causes systems to be renamed to MINWINPC

    I have found an issue with MS13-098 which causes systems to be renamed to  MINWINPC.  The issue has been reported in Japanese by Microsoft. The translation is:
    Phenomenon
      In Windows Server 2008 or Windows Vista, you might not be able to log an error appears to apply the new update the following programs, if you try to log on after the restart. •  MS12-024 (KB2653956)
    •  MS13-098 (KB2893294)
     Error message displayed is as follows.
     Incorrect password or user name
      Back to the top | feedback
    Collapse image  Cause
      This behavior occurs when you apply the update KB2653956 in the state of some data is damaged following registry key, or does not exist.
     HKEY_LOCAL_MACHINE \ SCHEMA \ wcm :/ / Microsoft-Windows-CoreOS? ...
     Any string will contain the part of the ... Note:.  Also, make sure to load the SystemRoot% \ system32 \ SMI \ Store \ Machine \ SCHEMA.DAT file% if the HKEY_LOCAL_MACHINE \ SCHEMA does not exist.
     When you apply the update of KB2653956 in the state where the registry key is not present, the value of the following registry is changed to MINWINPC, logon will not be able to.
    •  HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Control \ ComputerName \ ActiveComputerName
    •  HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Control \ ComputerName \ ComputerName
      Back to the top | feedback
    Collapse image  Solution
      If this occurs, change to the correct computer name the value of the ComputerName registry and ActiveComputerName start in safe mode, has been mentioned above, and then restart.
      Back to the top | feedback
    Collapse image  Workaround
      To prevent this phenomenon occurs, you download and run the System Update Readiness Tool from the following KB.
     http://support.microsoft.com/kb/947821
     By performing the system update Preparation tool registry that is described in Section Symptoms are repaired.
     If the repair is made, starting with log Recreated missing key as the following WinDir% \ Logs \ CBS \ CheckSUR.log file% is recorded.
     Recreated missing key:? Wcm :/ / Microsoft-Windows-CoreOS ... \ metadata \ elements \ ComputerName
     In addition, regardless of the presence or absence of entry damaged Microsoft-Windows-CoreOS, you can set the value of the ComputerName key in this tool.  For this reason, the following log is recorded in the CheckSUR.log.
     Recreated value: @ _type.
     Recreated value: @ dataOnly.
     Recreated value: @ default.
     Recreated value: @ description.
     Recreated value: @ displayName.
     Recreated value: @ handler.
     Recreated value: @ legacyName.
     Recreated value: @ legacyType.
     Recreated value: @ migrate.
     Recreated value: @ scope.
     Recreated value: @ xsd: type.
      Back to the top | feedback
     Note: This is a "FAST PUBLISH" article created directly from within the Microsoft support organization.  It contains information in response to emerging issues are listed.  As a result of the speed of information provided may be
    typographical errors are included in the article, you might be revised at any time without prior notice.  For other considerations, and use conditions
     Please refer to.
      Back to the top | feedback
    Collapse image  Property
      December 11, 2013 - Revision: - Last Review: 2901584: 4.0 Document Number
      This document that was written about products for.
    •  Windows Vista Business
    •  Windows Vista Business 64-bit edition
    •  Windows Vista Enterprise
    •  Windows Vista Enterprise 64-bit edition
    •  Windows Vista Home Basic
    •  Windows Vista Home Basic 64-bit edition
    •  Windows Vista Home Premium
    •  Windows Vista Home Premium 64-bit edition
    •  Windows Vista Starter
    •  Windows Vista Ultimate
    •  Windows Vista Ultimate 64-bit edition
    •  Windows Server 2008 Datacenter
    •  Windows Server 2008 Datacenter without Hyper-V
    •  Windows Server 2008 Enterprise
    •  Windows Server 2008 Enterprise without Hyper-V
    •  Windows Server 2008 for Itanium-Based Systems
    •  Windows Server 2008 Foundation
    •  Windows Server 2008 Standard
    •  Windows Server 2008 Standard without Hyper-V
    •  Windows Web Server 2008
    •  Windows HPC Server 2008
    •  Windows Essential Business Server 2008
    We are having the issue on hundreds of systems and I am rolling out the readiness tool mentioned above to prevent other systems from being affected.  In the mean time I have stopped deploying MS13-098 and am hoping Microsoft will go ahead and let all
    of their customers know about the problem instead of just one country.  Hopefully the original bulletin will be updated with this known issue.

    PPoj,
    Apple has offered replacement or pro-rated refunds in the US as a settlement of a class action lawsuit, not because of pride in their design-centric approach to their products. If you seek a similar replacement/refund program in India, then the odds are pretty good that you’d need a similar legal approach with which to convince Apple to offer a similar program there. If you’re unwilling to wait for such an event, then you can purchase a replacement power cable now, and hope for a pro-rated refund at some point in the future.

  • Strange issue with POF: byte array with the value 94

    This is a somewhat strange issue we’ve managed to reduce to this test case. We’ve also seen similar issues with chars and shorts as well. It’s only a problem if the byte value inside the byte array is equal to 94! A value of 93, 95, etc, seems to be ok.
    Given the below class, the byte values both in the array and the single byte value are wrong when deserializing. The value inside the byte array isn’t what we put in (get [75] instead of [94]) and the single byte value is null (not 114).
    Pof object code:
    package com.test;
    import java.io.IOException;
    import java.util.Arrays;
    import com.tangosol.io.pof.PofReader;
    import com.tangosol.io.pof.PofWriter;
    import com.tangosol.io.pof.PortableObject;
    public class PofObject1 implements PortableObject {
         private byte[] byteArray;
         private byte byteValue;
         public void setValues() {
              byteArray = new byte[] {94};
              byteValue = 114;
         @Override
         public void readExternal(PofReader reader) throws IOException {
              Object byteArray = reader.readObjectArray(0, null);
              Object byteValue = reader.readObject(1);
              System.out.println(Arrays.toString((Object[])byteArray));
              System.out.println(byteValue);
              if (byteValue == null) throw new IOException("byteValue is null!");
         @Override
         public void writeExternal(PofWriter writer) throws IOException {
              writer.writeObject(0, byteArray);
              writer.writeObject(1, byteValue);
    Using writer.writeObjectArray(0, byteArray); instead of writer.writeObject(0, byteArray); doesn't help. In this case byteArray would be of type Object[] (as accessed through reflection).
    This is simply put in to a distributed cache and then fetched back. No EPs, listeners or stuff like that involved:
         public static void main(String... args) throws Exception {
              NamedCache cache = CacheFactory.getCache("my-cache");
              PofObject1 o = new PofObject1();
              o.setValues();
              cache.put("key1", o);
              cache.get("key1");
    Only tried it with Coherecne 3.7.1.3.
    Cache config file:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
         <caching-scheme-mapping>
              <cache-mapping>
                   <cache-name>my-cache</cache-name>
                   <scheme-name>my-cache</scheme-name>
              </cache-mapping>
         </caching-scheme-mapping>
         <caching-schemes>
              <distributed-scheme>
                   <scheme-name>my-cache</scheme-name>
                   <service-name>my-cache</service-name>
                   <serializer>
                        <class-name>
                             com.tangosol.io.pof.ConfigurablePofContext
                        </class-name>
                        <init-params>
                             <init-param>
                                  <param-type>string</param-type>
                                  <param-value>pof-config.xml</param-value>
                             </init-param>
                        </init-params>
                   </serializer>
                   <lease-granularity>thread</lease-granularity>
                   <thread-count>10</thread-count>
                   <backing-map-scheme>
                        <local-scheme>
                        </local-scheme>
                   </backing-map-scheme>
                   <autostart>true</autostart>
              </distributed-scheme>
         </caching-schemes>
    </cache-config>
    POF config file:
    <?xml version="1.0"?>
    <pof-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://xmlns.oracle.com/coherence/coherence-pof-config"
         xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-pof-config coherence-pof-config.xsd">
         <user-type-list>
              <!-- coherence POF user types -->
              <include>coherence-pof-config.xml</include>
              <user-type>
                   <type-id>1460</type-id>
                   <class-name>com.test.PofObject1</class-name>
              </user-type>
         </user-type-list>
    </pof-config>

    Hi,
    POF uses certain byte values as an optimization to represent well known values of certain Object types - e.g. boolean True and False, some very small numbers, null etc... When you do read/write Object instead of using the correct method I suspect POF gets confused over the type and value that the field should be.
    There are a number of cases where POF does not know what the type is - Numbers would be one of these, for example if I stored a long of value 10 on deserialization POF would not know if that was an int, long double etc... so you have to use the correct method to get it back. Collections are another - If you serialize a Set all POF knows is that you have serialized some sort of Collection so unless you are specific when deserializing you will get back a List.
    JK

  • EclipseLink persistence provider issue with weblogic 10.3

    Hi All,
    I have been trying to deploy and run an EAR in weblogic but when I run the application I get the following warning: WARNING: Found unrecognized persistence provider "org.eclipse.persistence.jpa.PersistenceProvider" in place of OpenJPA provider. This provider's properties will not be used.
    The following is my persistence.xml:
    <persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence persistence_1_0.xsd" version="1.0">
    <persistence-unit name="default" transaction-type="JTA">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <jta-data-source>DataSourceName</jta-data-source>
    <class>oracle.communications.platform.entity.impl.CharacteristicSpecificationDAO</class>
    <properties>
    <property name="eclipselink.logging.level" value="FINEST" />
    <property name="eclipselink.target-database" value="org.eclipse.persistence.platform.database.oracle.OraclePlatform" />
    <property name="eclipselink.target-server" value="WebLogic_10" />
    <property name="eclipselink.session-event-listener" value="oracle.communications.platform.persistence.impl.PomsSessionEventListener" />
    <property name="eclipselink.session.customizer" value="oracle.communications.platform.util.EclipseLinkSessionCustomizer" />
    <property name="poms.cache.coordination.implementation" value="jms" />
    <property name="poms.cache.coordination.ipaddress" value="10.178.139.64" />
    <property name="poms.cache.coordination.port" value="7101" />
    <property name="poms.cache.coordination.multicast.group.address" value="226.10.12.64" />
    <property name="poms.cache.coordination.multicast.port" value="3121" />
    <property name="poms.cache.coordination.topic.connection.factory.name" value="EclipseLinkTopicConnectionFactory" />
    <property name="poms.cache.coordination.topic.name" value="EclipseLinkTopic" />
    <property name="poms.cache.coordination.username" value="weblogic" />
    <property name="poms.cache.coordination.password" value="weblogic" />
    <property name="poms.cache.coordination.password.encrypted" value="false" />
    </properties>
    </persistence-unit>
    </persistence>
    I have written a session customizer that reads properties from the persistence.xml and initializes stuff. But because of the warning i mentioned earlier... I am getting null for all property entries.
    I moved the eclipselink jar entry up ahead of openjpa jar entry in weblogic.server.modules_10.3.1.0.xml and refcount.xml in /modules/features directory. I am still getting the same problem.
    I read in many posts for workarounds for this issue but didnt find anything which worked for me. I would be grateful if someone could provide me a hint as to how to make it work.
    Thanks in advance,
    Prashanth.

    Prashanth,
    Hi, there should be no issue running EclipseLink on WebLogic while you see this warning. If you are getting null properties it may be the result of another issue, could you post specific exceptions and the part of your client code that is having a problem.
    1) The warning below normally appears only when running your persistence unit with an "application managed" JTA datasource as opposed to a "globally defined server scoped datasource". Even then it can be ignored as there are still parts of WebLogic that depend on OpenJPA. Even though the warning states that properties are ignored - they are not and you should see your persistence unit loaded properly.
    I encountered this issue when running an "application managed" JTA - here is an extract of the log showing the warning and the full functioning of the pu later - the persistence unit and example code can be found on the weblogic tutorial examples link below
    "[EL Finer]: 2008.10.29 13:03:55.565--ClientSession(30346337)--Thread(Thread[[ACTIVE] ExecuteThread: '20' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads])--client released
    WARNING: Found unrecognized persistence provider "org.eclipse.persistence.jpa.PersistenceProvider" in place of OpenJPA provider. This provider's properties will not be used.
    [EL Info]: 2008.10.29 13:03:56.079--ServerSession(14772987)--EclipseLink, version: Eclipse Persistence Services - 1.1.0 (Build 20081023)
    [EL Info]: 2008.10.29 13:03:56.391--ServerSession(14772987)--file:/C:/view_w34r1a/examples/org.eclipse.persistence.example.jpa.server.weblogic.enterpriseEJB/build/classes/-exampleLocal login successful
    15 Entities in storage: 15
    [EL ExampleLocal EM]: enterprise: Object: [email protected]( id: 6 state: null parent: HashSet@15794734 references: HashSet@15794734)
    [EL ExampleLocal EM]: enterprise: Object: [email protected]( id: 26 state: null parent: HashSet@8800655 references: HashSet@8800655)
    I raised the following minor issue with our WebLogic Server team in Oct for reference - however this warning did not affect proper functioning of EclipseLink JPA.
    https://bug.oraclecorp.com/pls/bug/webbug_edit.edit_info_top?rptno=7520161
    You may reference the following tutorial on running EclipseLink JPA on WebLogic 10.3, it details all the steps necessary to get a JTA container managed persistence unit running via a stateless session bean and a servlet client. It also details and links to application managed datasource configuration details.
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/WebLogic_Web_Tutorial
    2) eclipselink.jar location in WebLogic?
    The eclipselink.jar library should stay in the modules or patch_* directory depending on whether you are running a standalone WebLogic server or as part of a Fusion Middleware JDeveloper environment.
    See the following link that details deployment options for WebLogic and EclipseLink
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/WebLogic_Web_Tutorial#EclipseLink_JAR_location
    Note: I have not modified the load order of EclipseLink, OpenJPA or Kodo, I am running all including this version of OpenJPA in my modules directory. [org.apache.openjpa_1.0.0.0_1-1-1-SNAPSHOT.jar]
    3) I noticed that you are defining the target-database property in your persistence unti but you are running as JTA not RESOURCE_LOCAL. This property can be removed if your JTA datasource is defined as a Transactional server scoped datasource via the WebLogic console.
    thank you
    /michael
    http://www.eclipselink.org

  • Issues with multiple things since Mavericks update

    I installed the Mavericks update and since, I have been having multiple problems with different things on my MacBook Pro 13"
    1. Printer issues: I have an HP officejet 6500 wireless printer (Officejet 6500 E709n Series), and now it's having major issues with printing, yet was working perfect prior to update. It will either cut out pages when printing PDF documents, or printing so slow that it has to take a break in between printing each document (an issue that all never occurred until update), to print documents back to back, it will stop after one document as though I have no other documents in queue to print, and pauses for an extremely long time (nearly a full minute, no exaggeration here, literally almost a full 60 seconds), something it's never done before this update. My Apps update even did an update to the HP software that is inside the Mac already to use printing (in other words, the mac doesn't need to have the HP software manually installed for it to work, it automatically sees the printer because it is connected to my wireless network just as my Macbook Pro which is also connected wirelessly to my network).
    2. Internet issues: am now unable to click on certain links in safari that I was able to use prior to the update, yet they will open fine inside of firefox with no issues, yet I cannot always switch between two different browsers to perform task online (literally have to start all over inside firefox while in the middle of something in safari). Also lots of websites no longer work correctly and I have to constantly clear history and cookies to attempt to use certain sites, at times it will help, other times it wont work period, yet the same exact site will work perfect in firefox (which I do not use, only on my system for use on certain sites for school because in safari prior to the update, I would have issues with only the class site and some links not working at all, no spinning wheel, no errors, just nothing, no response of any kind, basically worse than what it was before the update). Another issue, hit Ctrl+a to select inside Safari and it highlights, but then when you click out of the highlight, it comes back on it's own several times without you hitting anything, just click inside the screen on a blank space (no links, etc) with touchpad.
    3. System issues:  My system is way slower than what it was prior to the update, click on things and it wont respond at all, then minutes later will eventually respond or pops up the spinning color wheel, which it either never responds or takes an extremely long time to respond. And no matter how much I restart, it doesn't help anything. Even just to sit doing nothing, no clicking or usage on the system, and the color wheel pops up.
    4. Mail issues: Mail is now popping up completely blank messages that I have sent out, the person receives it with no issues, yet I cannot look at the message I sent neither in the inbox or the sent items when I need to look at them again, an issue not present prior to update. Also I an now having issues when receiving mail, sometimes it will check for mail and sometimes I have to manually click to make it check the server for mail, an issue not present prior to update as well.
    As of now, since I have had the chance to used the system since the update, these are the issues I have had, yet haven't had the chance to check other things, so there may be other issues that are occurring that I'm not aware of at the moment. I knew it would be a mistake to do this "free" update and did so anyway and now having one issue after the next with each application I open to use.
    Mac general info:
    Mac is one year old, purchased brand new, no shareware programs of any kind installed.
    Use for school and basic web surfing use.
    Do not install any programs onto system that I'm unsure are safe (basically programs for/from school/school websites only, or from the Mac Apps store only), not even programs like Skype, nor any windows based programs of any kind.
    Lots of free memory avail because I save everything onto external hard drives (purchased brand new as well, only 4months old) in case system crash occurs, only things on the system is Itunes music or pics from photo stream that sync to the system when Iphone connected.
    Mac system info:
    - Processor  2.5 GHz Intel Core i5
    - Memory  4 GB 1600 MHz DDR3
    - Graphics  Intel HD Graphics 4000 1024 MB
    - Software  OS X 10.9
    - Number of Processors:          1
    - Total Number of Cores:          2
    - L2 Cache (per Core):          256 KB
    - L3 Cache:          3 MB

    For those needing help fixing their system and putting it back to Lion or Mountain Lion, this is what I have done to eliminate all my issues in about an hour (depending on your internet connection).
    Amazing thing, I just restored my computer back to Mountain Lion, and she's working perfect again, as I knew she would. E-mail popping into mailbox instantly as it should and did before the update, printer working fast as it was before update, no more freezing or glitches of any kind thankfully and finally. Here is the link that is through the Apple site to direct you on how to put your system back and get rid of Maverick's, that is assuming that is what you would like to do and also includes link for those wanting to try fixing the issue if that is your preference (most of this info is for those with mountain lion and some with the previousverisoin of OS X lion).
    If you want to keep Maverick's here is a good post on the apple discussion board to help you out:
    https://discussions.apple.com/docs/DOC-6161
    If you just want to totally get rid of it and put back what you had before, this is the short version of how to do so:
    https://discussions.apple.com/docs/DOC-3353
    NOTE: This particular link has a lot of info on what to do for different situations, it is a bit lengthy, yet still very helpful.
    OS X Mountain Lion: Reinstall OS X (direct from Apple support site, not someone else):
    http://support.apple.com/kb/PH10763?viewlocale=en_US
    OS X: About OS X Recovery (also from apple support directly and includes some instructions just the same as previous links above):
    http://support.apple.com/kb/HT4718
    Just in case you aren't sure what it will all look like as you are doing things, this is a link to show you a few pics of what you will see  as you as you are going through the process, it can be helpful for those who aren't sure what they are doing or how to do things at all:
    http://www.apple.com/osx/recovery/
    This is a way to download the Mountain Lion disk info from the server
    http://support.apple.com/kb/DL1433
    I hope this helps someone, it was amazing for me and my system is working perfect again like it was, battery life is way better went from like 3 hours to like 5 (not on full charge by the way, after it sat for a while doing the online update which took a while so that's saying something alone, huge improvement). I plan to wait a while before attempting to reinstall Maverick's, long enough for them to fix the bugs.

Maybe you are looking for

  • How to find out tcode from a program that can run the same report?

    Hello all, I have a program name and I can see it is successfully proccessed. Now if I want to get the report via a tcode, how can I get it? How can I find the tcode from the program itself? Regards,

  • Saving a word document with Apple Mail

    Hi, I emailed an Excel document to myself on from a remote location. When I got home, I opened it, within Apple email. I worked on the file and would hit apple-key / s to save. It would make the typical save sound. I closed the document and shutdown.

  • Why is the Robohelp webhelp search so slow?

    Hello, I currently use Robohelp 9 and produce merged Webhelp using Zoomsearch v6 as the search engine. My sites has around 2500 topics and 26 merged projects. Zoomsearch produces search results in under half a second. I decided to use zoomseach (afte

  • No internet radio in 10.0....why?

    I have removed all instances of iTunes for windows and reinstalled 10.1...some improvement as I now have TV shows and Movies under Library but no Radio...anyone have help?

  • IMPORT_PROPER ERROR

    Hi,   I am getting an error IMPORT_PROPER while applying patch KH60011.SAR,can anybody help me with regards raju