JAXB External Customizations

Hello all,
I've been trying to build a JAXB external customizations file that covers several schemas simultaneously. The JWS 2.0 tutorial mentions the following regarding an external customizations file ...
You can have a single binding file that contains customizations for multiple schemas,
or you can break the customizations into multiple bindings files; for example:
xjc schema1.xsd schema2.xsd schema3.xsd -b bindings123.xjb
xjc schema1.xsd schema2.xsd schema3.xsd -b bindings1.xjb -b
bindings2.xjb -b bindings3.xjb
Note that the ordering of schema files and binding files on the command line
does not matter, although each binding customization file must be preceded by
its own -b switch on the command line.
The JAXB documentation says that the external file format is as follows:
<jxb:bindings schemaLocation = "xs:anyURI">
<jxb:bindings node = "xs:string">*
<binding declaration>
<jxb:bindings>
</jxb:bindings>
where schemaLocation is of the form schemaLocation="some-schema.xsd"
My question is, how do I reference multiple schemas inside the same customizations file? Everything I've tried to date has failed except creating separate customizations files for each schema. Thanks In Advance.
- John

Hi.
I have already read it. I don't know how to define wsdlLocation (main wsdl or another wsdl?) inside example jaxb bindings. I have tried something like
<jxb:bindings version="1.0" xmlns:jxb="http://java.sun.com/xml/ns/jaxb" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <jxb:bindings wsdlLocation="path.to.my.main.wsdl" node="//xs:complexType[@name='objectFactory']">
      <jxb:class name="MyObjectFactory" />
   </jxb:bindings>
</jxb:bindings> and I'm getting error
[ERROR] XPath evaluation of "//xs:complexType[@name='objectFactory']" results in
empty target node
  line 2 of file:myBinding.xjb

Similar Messages

  • Jaxb 2 customization issue

    I am new to JAXB2 world.
    -I have a xml document whose xsd has imports of other xsds. I have the corresponding domain model and java objects in hand. The names of the classes/attibutes differ from that of those specified in the xsd; Thus did the jaxb 2.0 customization. JAXB is throwing a nullpointer exception when it encounters the import of other xsd in the calling xsd but works well, otherwise.
    -In the case of complicated java domain models and xml bining, would the usuage of Jibx be preferable over Jaxb...any suggestions?!
    -Also please suggest a good book/articles about java domain and xml binding.
    Any help is highly appreciated.
    Thanks in advance.

    Hello,
    For complicated models, or for situations in which you want to map an existing object model to an existing XML schema you need a tool that goes beyond JAXB.
    I am the team lead for Oracle TopLink Object-to-XML (JAXB) and was a member of the JAXB 2.0 (JSR-222) expert group so I'll share my thoughts.
    - TopLink OXM provides a visual tool, the TopLink Workbench to map an existing XML schema to an existing object model.
    - TopLink OXM can be exposed through the standard JAXB runtime APIs.
    - TopLink OXM can be run with any JAXP compliant parser. Many binding solutions are dependent on a specific parser.
    For more information on TopLink OXM/JAXB
    http://www.oracle.com/technology/products/ias/toplink/oxm/index.html
    My Oracle OpenWorld 2005 presentation
    http://download-west.oracle.com/oowsf2005/1535.pdf
    -Blaise

  • JAXB External Custom Bindings Issue

    I have a very large schema that I am trying to bind using JAXB. The naming in the schema is very good, nor is the structure, so I was hoping to do some custom binding. When I went to start the custom binding in an external file XJC returns an error saying that the target node is empty. It works fine if I give it the schema location and point it at the root of the schema, but trying to access the first complex type doesn't work. My external custom bindings file is below, an excerpt from the XSD Follows it, as well as my error. Please keep in mind that I cannot modify the schema in anyway.
    <?xml version="1.0" encoding="UTF-8"?>
    <jxb:bindings xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" jxb:version="1.0"
    schemaLocation="fgdc.xsd">
    <jxb:bindings node="/xsd:schema">
    <jxb:schemaBindings>
    <jxb:package name="gov.noaa.clas.neaat.schema.fgdc"/>
    </jxb:schemaBindings>
    </jxb:bindings>
    <jxb:bindings node="//xsd:complexType'@name=metadataType'">
    <jxb:class name="FgdcMetadataInterface" implClass="FgdcMetadata">
    <jxb:javadoc>Data about the content, quality, condition, and other
    characteristics of data.</jxb:javadoc>
    </jxb:class>
    </jxb:bindings>
    </jxb:bindings>
    <xsd:complexType name="metadataType">
    <xsd:sequence>
    <xsd:element ref="idinfo"/>
    <xsd:element ref="dataqual" minOccurs="0"/>
    <xsd:element ref="spdoinfo" minOccurs="0"/>
    <xsd:element ref="spref" minOccurs="0"/>
    <xsd:element ref="eainfo" minOccurs="0"/>
    <xsd:element ref="distinfo" minOccurs="0" maxOccurs="unbounded"/>
    <xsd:element ref="metainfo"/>
    </xsd:sequence>
    </xsd:complexType>[xjc] Compiling file:/C:/Joshua/trunk/schema/schema/data.xsd and others
    [xjc] [ERROR] XPath evaluation of "//xsd:complexType'@name=metadataType'" results in empty target node
    [xjc] line 10 of file:/C:/Joshua/trunk/schema/schema/fgdc.xjb

    I have a very large schema that I am trying to bind using JAXB. The naming in the schema is very good, nor is the structure, so I was hoping to do some custom binding. When I went to start the custom binding in an external file XJC returns an error saying that the target node is empty. It works fine if I give it the schema location and point it at the root of the schema, but trying to access the first complex type doesn't work. My external custom bindings file is below, an excerpt from the XSD Follows it, as well as my error. Please keep in mind that I cannot modify the schema in anyway.
    <?xml version="1.0" encoding="UTF-8"?>
    <jxb:bindings xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" jxb:version="1.0"
    schemaLocation="fgdc.xsd">
    <jxb:bindings node="/xsd:schema">
    <jxb:schemaBindings>
    <jxb:package name="gov.noaa.clas.neaat.schema.fgdc"/>
    </jxb:schemaBindings>
    </jxb:bindings>
    <jxb:bindings node="//xsd:complexType'@name=metadataType'">
    <jxb:class name="FgdcMetadataInterface" implClass="FgdcMetadata">
    <jxb:javadoc>Data about the content, quality, condition, and other
    characteristics of data.</jxb:javadoc>
    </jxb:class>
    </jxb:bindings>
    </jxb:bindings>
    <xsd:complexType name="metadataType">
    <xsd:sequence>
    <xsd:element ref="idinfo"/>
    <xsd:element ref="dataqual" minOccurs="0"/>
    <xsd:element ref="spdoinfo" minOccurs="0"/>
    <xsd:element ref="spref" minOccurs="0"/>
    <xsd:element ref="eainfo" minOccurs="0"/>
    <xsd:element ref="distinfo" minOccurs="0" maxOccurs="unbounded"/>
    <xsd:element ref="metainfo"/>
    </xsd:sequence>
    </xsd:complexType>[xjc] Compiling file:/C:/Joshua/trunk/schema/schema/data.xsd and others
    [xjc] [ERROR] XPath evaluation of "//xsd:complexType'@name=metadataType'" results in empty target node
    [xjc] line 10 of file:/C:/Joshua/trunk/schema/schema/fgdc.xjb

  • JAXB External Binding to java.util.Collection

    Hi,
    By default jaxb converts xsd:sequence to java.util.List. Is there any way to specify that during compilation it will use java.util.Collection instead of List?
    TIA,
    Herculeus
    Edited by: herculeus on May 19, 2009 2:12 PM

    repost

  • JAXB class conflict error

    I am new to JAXB.
    I am using external customization file to create JAXB classes.
    I have one XSD file which includes another XSD. Both of them have the same element name and the classes are getting created in the same folder. I have tried each and every option of the options mentioned in the fix collides examples of JAXB sun tutorial without any success.
    Please guide me on this.
    This is the following error:
    compile:
    [echo] Compiling the schema...
    [xjc] C:\Sun\jwsdp-1.6\jaxb\samples\acord-dri\gen-src\primer.po is not found and thus excluded from the dependency
    check
    [xjc] Compiling file:/C:/Sun/jwsdp-1.6/jaxb/samples/acord-dri/Aon_Acord-Repository_v-1-0-1.xsd
    [xjc] [ERROR] Multiple <schemaBindings> are defined for the target namespace "http://www.ACORD.org/Standards/Acord
    MsgSvc/1.1.0"
    [xjc] line 129 of binding.xjb
    [xjc] [ERROR] Another <schemaBindings> is defined here
    [xjc] line 98 of binding.xjb
    [xjc] [ERROR] A class/interface with the same name "primer.po.SenderAonAcord" is already in use. Use a class custo
    mization to resolve this conflict.
    [xjc] line 265 of Acord-Repository_v-1-0-1.xsd
    [xjc] [ERROR] (Relevant to above error) another "SENDERAonAcord" is generated from here.
    [xjc] line 217 of Aon_Acord-Repository_v-1-0-1.xsd
    [xjc] [ERROR] This error is caused because on Windows you cannot have both "SENDERAonAcord.java" and "SenderAonAco
    rd.java" in the same directory.
    [xjc] unknown location
    [xjc] failure in the XJC task. Use the Ant -verbose switch for more details

    This is because of name conflicts in the xsd. If the <xsd:element> name is same as some <xsd:complexType> and that is referenced from the element this happens. If you provide different names, it will solve the problem
    Regards,
    Sushil

  • Wsimport implClass not found

    I'm using an external customization file to specify an implClass for the JAX-B generated classes coming out of wsimport. However, when wsimport compiles the classes into a jar, it cannot find the implClass, even though it's co-located, has the correct package, and extends the generated class. The implClass does appear correctly in the ObjectFactory. How do I tell wsimport to use my implClass? (Bonus would be to be able to keep my implClass files in a separate directory to be able to freely delete and recreate the wsimport generated files.)
    Customization:
    <jxb:bindings node="//xs:complexType[@name='assumption']">
        <jxb:class name="AssumptionBase" implClass="AssumptionImpl" />
    </jxb:bindings>(Note: I've also tried using the full name of the class:
    <jxb:class name="AssumptionBase" implClass="WebService.AssumptionImpl" />)
    implClass:
    package WebService;
    public class AssumptionImpl extends AssumptionBase {
    }wsimport:
    <target name="wsclient-stubs"
        description="Builds webservice client stubs">
        <taskdef name="wsimport"
            classname="com.sun.tools.ws.ant.WsImport">
            <classpath refid="jaxws.classpath"/>
        </taskdef>
        <wsimport     
            keep="true"
            verbose="true"
            destdir="stubs"     
            wsdl="${wsdlURL}"
            package="WebService">
            <binding dir="${projPath}" includes="customize-client.xml, customize-schema.xml"/>
        </wsimport>
        <jar destfile="${stubJarName}" basedir="stubs"/>
    </target>Error:
    [wsimport] WebService\ObjectFactory.java:404: cannot find symbol
    [wsimport] symbol : class AssumptionImpl
    [wsimport] location: class WebService.ObjectFactory
    [wsimport] return new AssumptionImpl();
    [wsimport] ^

    I'm using an external customization file to specify an implClass for the JAX-B generated classes coming out of wsimport. However, when wsimport compiles the classes into a jar, it cannot find the implClass, even though it's co-located, has the correct package, and extends the generated class. The implClass does appear correctly in the ObjectFactory. How do I tell wsimport to use my implClass? (Bonus would be to be able to keep my implClass files in a separate directory to be able to freely delete and recreate the wsimport generated files.)
    Customization:
    <jxb:bindings node="//xs:complexType[@name='assumption']">
        <jxb:class name="AssumptionBase" implClass="AssumptionImpl" />
    </jxb:bindings>(Note: I've also tried using the full name of the class:
    <jxb:class name="AssumptionBase" implClass="WebService.AssumptionImpl" />)
    implClass:
    package WebService;
    public class AssumptionImpl extends AssumptionBase {
    }wsimport:
    <target name="wsclient-stubs"
        description="Builds webservice client stubs">
        <taskdef name="wsimport"
            classname="com.sun.tools.ws.ant.WsImport">
            <classpath refid="jaxws.classpath"/>
        </taskdef>
        <wsimport     
            keep="true"
            verbose="true"
            destdir="stubs"     
            wsdl="${wsdlURL}"
            package="WebService">
            <binding dir="${projPath}" includes="customize-client.xml, customize-schema.xml"/>
        </wsimport>
        <jar destfile="${stubJarName}" basedir="stubs"/>
    </target>Error:
    [wsimport] WebService\ObjectFactory.java:404: cannot find symbol
    [wsimport] symbol : class AssumptionImpl
    [wsimport] location: class WebService.ObjectFactory
    [wsimport] return new AssumptionImpl();
    [wsimport] ^

  • Wsimport - how to do auto name resolution?

    Hi,
    Is there any way to tell wsimport command to automatically resolve naming conflicts.
    apache cxf supports it for its wsdl2java. Is there something similar for wsimport.
    My problem is that my wsdl has schemas with name like CurrencyType, currencyType, currency_type.
    This schema is provided by an external system.
    When I use wsimport to generate java files it gives naming conflicts.
    I was successfully able to generate the java files after using an external customization file.
    But there are many such schemas and we want to avoid the headache of maintaining the customization files.
    I couldnot fine any way to do auto name resolution using wsimport the way it is supported by cxf.
    thanks,
    Shrikant

    Dear Mukthar,
    Appreciate your answer.... but still it is not meeting my requirement....
    i will have an idea please suggest how it works
    I can go for Enhancement.....the process is iam thinking like this........
    At the end of GR entry screen it should go to next entry screen and there i can directly book my exp to consumption a/c debit and credit to inventory GL (which is a new inventory GL is not having post auto tick and is having in Inventory group).
    Similar Way for Goods Issue also.....
    i hope it can reach my requirement.....
    suggest further please
    regards
    dhananjayul.K

  • Customize names of generated JAXB classes

    I have a peculiar requirement. We have been using JAXB1.0 in our project to parse XMLs. External binding files were used to provide proper names for the generated JAXB classes. Now, I have an xml that looks something like this:
    //sample xml. Original format is much bigger
    <b>
    <MasterTag>
    <attr id="123">Value1</attr>
    <attr id="736">Value2</attr>
    <attr id="900">value3</attr>
    </MasterTag>
    </b>
    There's a property file which has key value pairs for the attr id
    Eg:
    <b>
    123=CompanyID
    736=CompanyAddress
    900=CompanyPinCode
    </b>
    Is it possible to generate JAXB classes names based on the attr id value? These values finally need to persisted in the db. JAXB is the preferred technology.
    Any other ideas are also welcome. Thanks.

    I might be misunderstanding your question, but if you control the single large schema, it would be simple to define the things that you want to treat specially as either individual elements or complexTypes inside the single schema file. Using psuedo-schema, say you have something like this now:
    <xs:element name='Information'>
      <xs:complexType>
        <xs:sequence>
          <xs:element name='Header'>
              <!-- your definition here -->
          </xs:element>
          <xs:element name='Item' maxOccurs='unbounded'>
              <!-- your definition here -->
          </xs:element>
        </xs:sequence>
      </xs:complexType>
    </xs:element>You can change that to:
    <xs:element name='Information'>
      <xs:complexType>
        <xs:sequence>
          <xs:element ref='Header'/>
          <xs:element name='Item' maxOccurs='unbounded'>
              <!-- your definition here -->
          </xs:element>
        </xs:sequence>
      </xs:complexType>
    </xs:element>
    <xs:element name='Header'>
      <!-- your definition here -->
    </xs:element>That should produce distinct classes for your Information and Header elements. You similary can break out the Item and Trailer elements.

  • Exchange Server 2013 - Mailflow - Transport Rules - Autoreply to External Email Addresses and Customizable Template

    Hi There,
    I have two question relating to this topic:
    Question 1 - Can I set up an auto reply message (e.g. Thank you for submitting your enquiry....) to any emails that are
    only external and not including our domain to the organisation for a specific email address. I need to be able to specify other domains also that I don't want this rule to be applied to?
    Question 2 - If this is possible, is there a customizable template that can be used for the auto reply message?
    Hopefully someone can help!

    Hi Eric,
    This needs to be completed from another program either exchange / ?
    There is a problem if you configure this from an actual mailbox / OWA due to the lack of configuration options available.
    Here's a more detailed scenario:
    We have a mailbox that our records department use e.g.
    [email protected] to register incoming mail from. This also has an alias that external people send to e.g.
    [email protected] . We still need staff within our domain to send emails to the
    [email protected] and do not want the auto message (e.g. Thank you for submitting your enquiry....) sent to those internal staff. There is the possibility of a looping being created otherwise.
    Only people outside the organisation sending an email to
    [email protected] should receive the auto reply message (e.g. Thank you for submitting your enquiry....). 
    We need the ability to add in an exception to the rule to bypass or not process the rule if the sender is a part of *@ourdomain.com which means they will not receive an auto reply. We also need
    to be able to add other domain we specify e.g.
    *@someoneelsedomain.com not to receive the auto reply.
    We currently use MailMarshal to perform the above task but will be decommissioning this during the Exchange 2013 implementation soon to begin. We are not installing an Microsoft Edge Transport server that I believe does allow configurable rules like
    this as all of our mail will first  be routed through the Symantec / Telstra solution first. I'm still trying to find out if the Symantec solution can complete this process for us but I doubt it.
    This is why I'm trying to find out if Exchange 2013 from the admin console somehow can complete the rules and exceptions that we require above.
    Thanks
    Lisa
    Lisa Stanley

  • [ERROR] javaType customization in this context must be nested (JAXB spec

    Hi All,
    when i was trying to generate java classes from schema xjc is giving the below error.
    parsing a schema...
    [ERROR] <javaType> customization in this context must be nested (JAXB spec
    <property>
    <baseType>
    <javaType ...>
    </baseType>
    </property>
    Failed to parse a schema.
    my annotation goes like this for an attribute.
    <xs:attribute name="content_id" type="xs:string">
    <xs:annotation>
    <xs:appinfo>
         <jxb:javaType name="java.lang.Long"
    prseMethod= "javax.xml.bind.DatatypeConverter.parseLong"
    printMethod="javax.xml.bind.DatatypeConverter.printLong" />
    </xs:appinfo>
    </xs:annotation>
    </xs:attribute>
    please help me to resolve this problem
    thanks in advance
    Amar

    Hi All,
    when i was trying to generate java classes from schema xjc is giving the below error.
    parsing a schema...
    [ERROR] <javaType> customization in this context must be nested (JAXB spec
    <property>
    <baseType>
    <javaType ...>
    </baseType>
    </property>
    Failed to parse a schema.
    my annotation goes like this for an attribute.
    <xs:attribute name="content_id" type="xs:string">
    <xs:annotation>
    <xs:appinfo>
         <jxb:javaType name="java.lang.Long"
    prseMethod= "javax.xml.bind.DatatypeConverter.parseLong"
    printMethod="javax.xml.bind.DatatypeConverter.printLong" />
    </xs:appinfo>
    </xs:annotation>
    </xs:attribute>
    please help me to resolve this problem
    thanks in advance
    Amar

  • Using the xjc:superClass customization in jaxb

    Hi,
    I'm having some problems with the <xjc:superClass> customization when I use this, the properties of my superClass don't get serialized to xml the xml file is empty. Can sombody help me with this problem?
    this is my xsd:
    <xsd:schema jaxb:version="1.0" jaxb:extensionBindingPrefixes="xjc" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc">
         <xsd:annotation>
              <xsd:appinfo>
                   <jaxb:globalBindings generateIsSetMethod="true">
                        <xjc:serializable/>
                        <xjc:superClass name="VtProduct"/>
                   </jaxb:globalBindings>
              </xsd:appinfo>
         </xsd:annotation>
         <xsd:element name="fastrackProduct">
    </xsd:schema>and this is my VtProduct from witch the fastrackProduct should extend:
    public class VtProduct implements Serializable {
        private String code;
        private String description;
        private int priceInCents;
        private String deliveryName;
        private String uid;
        public VtProduct() {
        public String getCode() {
            return this.code;
        public void setCode(String code) {
            this.code = code;
        public String getDescription() {
            return this.description;
        public void setDescription(String description) {
            this.description = description;
        public int getPriceInCents() {
            return this.priceInCents;
        public void setPriceInCents(int priceInCents) {
            this.priceInCents = priceInCents;
        public String getDeliveryName()  {
            return this.deliveryName;
        public void setDeliveryName(java.lang.String deliveryName)  {
            this.deliveryName = deliveryName;
        public String getUid() {
            return this.uid;
        public void setUid(java.lang.String uid) {
            this.uid = uid;
    }This is what i'm trying to do im my main class:
    FastrackProductImpl po = new FastrackProductImpl();
    po.setCode("1234567890");
    po.setDeliveryName("Delivery name");
    po.setDescription("Description");
    po.setPriceInCents(1000);
    po.setUid("0987654321");
    po.setFastrackProductId("FSID1234");
    FileOutputStream mout = new FileOutputStream("fastrackProduct.xml");
    marshaller.marshal(po, mout);
    mout.close();

    Thanks a lot!
    Btw, are all the tags that a .xjs file takes documented anywhere??
    Its feels rather silly to struggle so much for little things.(Moreover, I am an XML rookie ...so I don't have much f an instinct when it comes to that!)
    Thanks again.

  • Jaxb: customization for superClass

    Hi,
    I' trying to get JAXB to extend one of my classes in the implementation classes in the impl/ package. In the tutorial (1.1) there is some obscure hint to an xjc:superClass customization, but that seems not to work :-(
    Can someone point me to some more info or give me a hint how to do it?
    Thx & ciao,
    Leif

    Hi,
    I' trying to get JAXB to extend one of my classes in
    the implementation classes in the impl/ package. In
    the tutorial (1.1) there is some obscure hint to an
    xjc:superClass customization, but that seems not to
    work :-(
    Can someone point me to some more info or give me a
    hint how to do it?
    Thx & ciao,
    LeifCheck the vendor extension example in the <JWSDP1.1>/jaxb-1.0/examples
    folder. That has an example on how to use the superClass customization
    Thanks,
    Bhakti

  • Need some good links for JAXB Customization

    Hi all,
    Please gimme some good links for JAXB customization tutorial.
    cheers
    JoyBoy

    Hi all,
    Please gimme some good links for JAXB customization tutorial.
    cheers
    JoyBoy

  • Class Name customization in JAXB

    Does Sun Jaxb allows customizing class names so that they are same as in schema definition, instad of Java format. For example, if a purhcaseorder schema has complex type named purchaseorder, jaxb generates Class by PurchaseOrder, is there a way to not to do this. Similllary for elements and attributes
    Thanks

    Customize JAXB? Ha ha ha! That's a good one.
    I can't remember if this is one of the irregular selection of things you can specify. Have you messed around with the binding document? I can't remember what they call it. It's a mapping doucment that's supposed to allow you to do this type of thing but I find it's often not functional.

  • Customize resolution on external display

    Hi,
    is it possible to "inactivate" a part of an external display ? For example :
    I have a damaged 15" TFT Display, there's a ~1cm unreadable border on the top.
    Is it somehow possible to change the output resolution from 1024*768 to 1024*600, or any other size without stretching to the whole screen surface ? This should create a back border in the damaged zone, thus preventing anything to be displayed on the broken part of the screen.
    I knnow System Preference / Displays allows to choose between 1024 stretched or not -> that's what i'm looking for, but for external displays, and with custom resolution.
    Thanks for reading ... and answering, if you have any idea (or just to tell me that it's not possible) !!
    Flo

    I am not sure about which resolutions it offers, but I currently use the Screen Spanning Doctor to connect my iBook to the tv, projector, etc. It works well. But since it is a Third-Party App, understand that you might find some bugs, though I've had no problems.
    Nathan

Maybe you are looking for

  • Any solutions for MW1 (not so)Smart Wireless Headset Pro errors?

    These are the problems I have experienced so far and have not had any feedback from Sony as to how to fix them. Anyone got any suggestions apart from demanding a refund? *This device doesn't work at all as an MP3 player as it is advertised to do. Add

  • Standby Database for Oracle 8.1.7 Std Ed

    Hi, I am using Oracle 8.1.7 std ed with W2K Adv Server. Both primary host and remote host using the same version of oracle and OS. So far both oracle path are identical and the standby folder is same with primary and I don't think I need to add the d

  • IBook went crazy - please help!

    Hey, I was just downstairs surfing the 'net when all of a sudden my iBook went flooey. The screen went black, and then red, green, white, blue (I'm not sure of the exact order of colors). I tried holding down the power button to force it to restart,

  • Why while opening firefox it tries to download files from my computer?

    Every time I open Firefox navigator, I see the download arrow as if it has just downloaded. Today, however, I looked more than usual and found out that there are 6 files from my computer that appear as failed download. I run my antivirus (free) with

  • Is there any best practice about by-products

    Dear all, Is there any best practice about handleing by-products in production order? Thanks!