Newbie problem with JAXM - Transformer  Exception

Hi there!
I am looking for some start- up help.
I have this SOAP message in a file (test.xml)
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
  <soap-env:Header>
    <m:SessionID xmlns:m="Some-URL" value="2123123"/>
  </soap-env:Header>
  <soap-env:Body>
    <m:StartSession xmlns:m="Some-URL">
      <username>TestUser</username>
    </m:StartSession>
  </soap-env:Body>
</soap-env:Envelope>I use the following lines of code
  StreamSource src  = new StreamSource(new File("c:/test.xml"));
  TransformerFactory tFact=TransformerFactory.newInstance();
  Transformer trans = tFact.newTransformer(src);And i get an Transformer exception saying
javax.xml.transform.TransformerException: stylesheet requires attribute: versionAny hint? Thanks a lot!

I think I found the problem because I managed to use the transformer ..and to read from the xml file.Aftwards with the output of the transformrt i produced a separaye xml
WRONG ->>The passing parameter src
Transformer trans = tFact.newTransformer(src);
Anyway thats ok because I had to search through the XSLTC thing and read some usefull things!

Similar Messages

  • Problem with x:transform function : translation with XSLT

    I've got a problem with this code :
    This is the XML file :
    <%@taglib prefix="x" uri="http://java.sun.com/jstl/xml"%>
    <%@taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
    <c:import var="xslDoc" url="test.xsl"/>
    <x:transform  xslt ="${xslDoc}">
      <students>
      <student id="1">
       <name>
         <first>John</first>
         <last>Smith</last>
         <middle>T</middle>
       </name>
       <grade>
         <points>72</points>
         <letter>C</letter>
       </grade>
      </student>
    </students>
    </x:transform>This is the XSLT :
    <xsl:stylesheet version="1.0"
         xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="students">
      <html>
      <head>
      <title>XSLT Transform</title>
      </head>
      <body>
       <table border="1">
       <tr><th>First</th><th>Last</th>
    <th>Points</th><th>Letter</th></tr> 
       <xsl:apply-templates/>
       </table>
       </body>
      </html>
    </xsl:template>
    <xsl:template match="student">
      <tr>
       <td><xsl:value-of select="name/first"/></td>
       <td><xsl:value-of select="name/last"/></td>
       <td><xsl:value-of select="grade/points"/></td>
       <td><xsl:value-of select="grade/letter"/></td>
      </tr>
    </xsl:template>
    </xsl:stylesheet>I use NetBeans 3.5.1 for compiling and testing, and on my machine all works fine.
    But when i upload the code on the server i''ve this type of error :
    HTTP Status 500 - Internal Server Error
    exception
    org.apache.jasper.JasperException: access denied (java.util.PropertyPermission org.xml.sax.driver read)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:98)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:176)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:172)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2417)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.ajp.tomcat4.Ajp13Processor.process(Ajp13Processor.java:457)
         at org.apache.ajp.tomcat4.Ajp13Processor.run(Ajp13Processor.java:576)
         at java.lang.Thread.run(Thread.java:536)
    root cause
    java.security.AccessControlException: access denied (java.util.PropertyPermission org.xml.sax.driver read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:270)
         at java.security.AccessController.checkPermission(AccessController.java:401)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:542)
         at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1291)
         at java.lang.System.getProperty(System.java:572)
         at org.xml.sax.helpers.XMLReaderFactory.createXMLReader(XMLReaderFactory.java:81)
         at org.apache.taglibs.standard.tag.common.xml.TransformSupport.getSource(TransformSupport.java:280)
         at org.apache.taglibs.standard.tag.common.xml.TransformSupport.getSource(TransformSupport.java:276)
         at org.apache.taglibs.standard.tag.common.xml.TransformSupport.doStartTag(TransformSupport.java:159)
         at org.apache.taglibs.standard.tag.el.xml.TransformTag.doStartTag(TransformTag.java:104)
         at org.apache.jsp.test_jsp._jspService(test_jsp.java:78)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:98)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:176)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:172)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2417)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.ajp.tomcat4.Ajp13Processor.process(Ajp13Processor.java:457)
         at org.apache.ajp.tomcat4.Ajp13Processor.run(Ajp13Processor.java:576)
         at java.lang.Thread.run(Thread.java:536)
    org.apache.jasper.JasperException: access denied (java.util.PropertyPermission org.xml.sax.driver read)It seems a permission problem, but my experience with JSP is very poor , i've asked to control to my host
    the policy of the folders but they didn't respond me yet.
    Any suggestion ?
    Thx for reading, and sorry for my rusty english :-P

    Thanks.
    I've already tried to insert the whole path. You mean this,right ?
    <c:import var="xslDoc" url="http://www.domain.net/examples/test.xsl"/>I've searched a lot with google but i haven't find anything.
    I've not searched a lot into the jakarta site, I'll do tomorrow, now it's
    a bit late (1:45 AM in Italy :-0 ), so i think that i'll go to sleep.
    Thanks for responding so soon!
    I'll wait for your new infos.
    Thanks again.
    read you tomorrow.

  • Problem with CALL TRANSFORMATION xml - abap

    Hello!
    I got the following problems using call transformation to read a xml-file to local abap datatype!
    Simple xml file for testing:
    <BMECAT>
    <HEADER>
    asdf
    </HEADER>
    </BMECAT>
    XSLT file:
    <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sap="http://www.sap.com/sapxsl" version="1.0">
      <xsl:template match="/">
        <xsl:value-of select="./BMECAT/HEADER"/>
      </xsl:template>
    </xsl:transform>
    The xslt transformation works with xslt-tester!
    My Source:
    DATA: xmlupl TYPE string,
    outputx TYPE XSTRING,
    lv_string TYPE string.
    * in xmlupl my xml import is stored
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
    EXPORTING
    text = xmlupl " variable type string
    IMPORTING
    buffer = outputx. " variable type xstring
    TRY .
         CALL TRANSFORMATION path_to_xslt_file
           SOURCE XML outputx
         RESULT HEADER = lv_string.
    CATCH cx_xslt_exception INTO xslt_error.
         data: xslt_message type string .
         xslt_message = xslt_error->get_text( ).
    ENDTRY.
    After debugging in xslt_message is stored the following text:
    "The element abap was expected for the XML-ABAP transformation"
    Can anyone help me with this problem?
    Regards,
    Daniel

    hi
    good
    try this code
    Just look at this piece of code, I think it should help you.
      DATA : ITAB   TYPE TABLE OF SPFLI,
             L_XML  TYPE REF TO CL_XML_DOCUMENT.
      SELECT * FROM SPFLI INTO TABLE ITAB.
    CREATE THE XML OBJECT
      CREATE OBJECT L_XML.
    CONVERT THE DATA TO XML
      CALL METHOD L_XML->CREATE_WITH_DATA( DATAOBJECT = ITAB[] ).
    DATA IS CONVERTED TO XML; DISPLAY THE XML-DOCUMENT
      CALL METHOD L_XML->DISPLAY.
    thanks
    mrutyun^

  • Problem With Match Transformation

    Hi ,
    I am using Match transformation to find the duplicates .
    My input data like this
    EMP NO     ENAME         SAL     DEPTNO
    10     SRIRAM MV  10000     100
    11     MV SRIRAM  11000     100
    12     SRIRAM PV  11000     100
    13     SRIHARI       11000     100
    14     SUBBIAH       11000     100
    15     RAMANA       11000     100
    Iam finding the duplicates on Ename .
    My ename data like SRIRAM MV, MV SRIRAM  like that data . both are duplicate records . for that iam using WORD SIMILARITY  option instead of field similarity with match score is 100 and no match score is 99.
    But i am getting all are unique records .
    If i am using match score is 85 and no match  score is 84 then iam getting the result like this .
    EMP NO     ENAME     SAL     DEPTNO     GROUP_NUMBER     MATCH_STATUS     MATCH_SCORE
    11     MV SRIRAM     11000     100     1     P     94
    15     RAMANA     11000     100          U     
    13     SRIHARI     11000     100          U     
    10     SRIRAM MV     10000     100     1     D     
    12     SRIRAM PV     11000     100     1     P     88
    14     SUBBIAH     11000     100          U     
    means MV SRIRAM,SRIRAM MV ,SRIRAM PV  comes under one group number with SRIRAM MV  as driver and MV SRIRAM as passenger with 94 similarity score and  SRIRAM PV as passenger with 88 score.
    While i am using the match score i need to get 100% per SRIRAM MV and MV SRIRAM . then whats the settings needed to get correct result. whats the problem with my settings.
    Please help me out to solve the problem
    Thanks&Regards,
    Ramana.

    Ramana,
    <<< My ename data like SRIRAM MV, MV SRIRAM like that data . both are duplicate records . for that iam using WORD SIMILARITY option instead of field similarity with match score is 100 and no match score is 99. >>>
    You are looking for an exact match here, but MV SRIRAM and SRIRAM MV are not exactly the same.  The characters MV are in different positions.  The Word Similarity option compares words instead of the entire field, but the character position also affects the match score.
    <<< While i am using the match score i need to get 100% per SRIRAM MV and MV SRIRAM . >>>
    You cannot force the the match score to be a specific value.  SRIRAM MV and MV SRIRAM are not a 100% match and never will be.  What you need to do is adjust the match settings so that the dupe group includes SRIRAM MV and MV SRIRAM but excludes SRIRAM PV.  Try Match Score = 90 and No Match Score = 89.

  • Tunneling and problem with unknown host exception

    hello! i've got a problem with https. i use jdk 1.5.0, jboss-4.0.4.ga-patch1, soap.
    and i'm going crasy.. i've testet my client code at our network and it works fine. but if i want to get jobs from the server of our customer, my client throw an "unknown host exception: firm".
    i wonder why it hasn't the full host. the url may look like this: https://firm.sub.com:443/ and while the client connects to the server, i depugged it and the host is correct: firm.sub.
    but after the connection, when the client want to get something from the server (when it wants to communicate with the server over soap) it crashs.
    my client code looks like this:
    private ClientInterfaceEndpoint getClientInterface() throws ServiceException {
    QName serviceQName = new QName(DOCSERVER_NAMESPACE, CLIENT_INTERFACE_SERVICENAME);
    URL wsdlUrl = getClientInterfaceWsdlUrl();
    log.info("*******WSDLURL host: " + wsdlUrl.getHost()); // out: firm.sub
    log.info("*******WSDLURL port: " + wsdlUrl.getPort()); // out: 443
    URL mapping = getClass().getClassLoader().getResource("META-INF/DocumentServer_Mapping.xml");
    log.info("*******MappingURL path: " + mapping.getPath());
    if (wsdlUrl.toString().toLowerCase().contains("https")) {
    if (null == getConfig().getTruststore() || getConfig().getTruststore().equalsIgnoreCase("")) {
    throw new RuntimeException("No or incorrect TruststorePath in the docclient-config");
    File tmp = new File(getConfig().getTruststore());
    if (!tmp.isFile() || !tmp.canRead()) {
    throw new RuntimeException("The truststore at the 'TruststorePath' isn't a file or can't be read.");
    System.setProperty(SYS_PROPERTY_KEY_TRUST, getConfig().getTruststore());
    System.setProperty(SYS_PROPERTY_KEY_TRUST_PW, config.getTruststorePass());
    ServiceFactoryImpl factory = null;
    factory = (ServiceFactoryImpl) ServiceFactory.newInstance();
    Service clientInterfaceService = null;
    try {// create the service for the ClientInterface
    clientInterfaceService = factory.createService(wsdlUrl, serviceQName, mapping, new URL(config.getServerURL())); //, new URL(config.getServerURL())
    log.info("*******ClientInterFaceService WSDL URL Host: " + clientInterfaceService.getWSDLDocumentLocation().getHost()); // out:firm.sub
    log.info("*******ClientInterFaceService WSDL URL Port: " + clientInterfaceService.getWSDLDocumentLocation().getPort()); // out: 443
    } catch (ServiceException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (MalformedURLException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (Exception e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    }// getting the ClientInterfaceEndpoint
    ClientInterfaceEndpoint clientInterface = (ClientInterfaceEndpoint) clientInterfaceService.getPort(ClientInterfaceEndpoint.class);
    return clientInterface;
    protected URL getClientInterfaceWsdlUrl() {
    URL url = null;
    String urlString = getConfig().getServerURL() + CLIENT_INTERFACE_URI + "?wsdl";
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties properties = System.getProperties();
    String handlers = System.getProperty(SYS_PROPERTY_KEY_PKGS);
    if (handlers == null) {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS);
    else {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS.concat("|").concat(handlers));
    try {
    url = new URL(urlString);
    log.info("*******URL host: " + url.getHost());
    log.info("*******URL port: " + url.getPort());
    log.info("*******URL path: " + url.getPath());
    } catch (MalformedURLException e) {
    log.fatal("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString);
    throw new RuntimeException("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString, e);
    System.setProperties(properties);
    return url;
    }if it's usefull: the customer use a apache server (not tomcat) where a the server is and the client at another system the jboss.
    The customer told me: if i want to connect the client via http i have to tunnel.. maybe i have to tunnel using https too?
    have i to generate the endpoint classes a second time, extra for https?
    or doesn't soap like host like "firm.sub"?
    can anyone help me please?!
    sorry, my english isn't very well...

    sorry, it's not the same error. The output is: Unable to connect to any host due to exception: java.net.socket.exception: java.net.socket.exception: Unregcognized windows socket error: 10106: create.

  • Problem with JSF: strange exception !

    Hello friends :)
    i have a web application with JSF1.2 with the next libraries:
    - jsf-api-1.2_07.jar  (SUN-RI)
    - jsf-impl-1.2_07.jar (SUN-RI)
    - jsf-facelets-1.1.14.jar
    - tomahawk-1.1.6 (apache.myfaces)
    I have in my application a custom tag that was developed based on tomahawk-1.1.6 library. This tag displayes
    a form that is obtained by web services.
    So, when i run the application, i have a index.jsp that redirect to form.jspx (here is the tag) and i can see the form well and in this point it is right, the custom tag works ok. But when i push a bottom to refresh or save the form, and the request arrives to server, it response me with the following exception: (not reach the controller)
    *20/10/2009 11:58:13 [http-8080-Processor24] INFO fuentes.ListenerFase - Estamos en el método beforePhase RESTORE_VIEW 1*
    *20-oct-2009 11:58:13 com.sun.faces.renderkit.ResponseStateManagerImpl getTreeStructureToRestore*
    GRAVE: Not in GZIP format
    **java.io.IOException: Not in GZIP format**
         at java.util.zip.GZIPInputStream.readHeader(GZIPInputStream.java:132)
         at java.util.zip.GZIPInputStream.<init>(GZIPInputStream.java:58)
         at java.util.zip.GZIPInputStream.<init>(GZIPInputStream.java:68)
         at com.sun.faces.renderkit.ResponseStateManagerImpl.getTreeStructureToRestore
    (ResponseStateManagerImpl.java:172)
    *GRAVE: JSF1054: (Phase ID: RESTORE_VIEW 1, View ID: ) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@14510ac]*
    *20/10/2009 11:58:13 [http-8080-Processor24] ERROR org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[pruebaLibreriasCliente].[Faces Servlet] - Servlet.service() para servlet Faces Servlet lanzó excepción*
    java.io.IOException: Not in GZIP format
         at java.util.zip.GZIPInputStream.readHeader(GZIPInputStream.java:132)
         at java.util.zip.GZIPInputStream.<init>(GZIPInputStream.java:58)
         at java.util.zip.GZIPInputStream.<init>(GZIPInputStream.java:68)
         at com.sun.faces.renderkit.ResponseStateManagerImpl.getTreeStructureToRestore
    (ResponseStateManagerImpl.java:172)
    I dont understand why this happening. It seems as if the server dont understand the format data request.
    I think the custom tag is ok and it is not the problem. Maybe the problem is configuration, but i dont know.
    Thank you so much for you help!

    This component or custom tag has worked well in others similar projects (somebody told me that).
    But, where does it define the component state? what do i need to define it?
    It is de custom tag:
    *<viaform:formulario clienteHandler="#{formularioPageBean.formularioHandler}"*
    *     action="#{formularioPageBean.actionFormularioEnd}"*
    *     actionListener="#{formularioPageBean.actionFormularioRefresh}" />*
    Thank you very much

  • Reflection problems with null pointer exception

    I am having a problem with reflection. I keep getting a NullPointerException and can't figure out why.
    It is happening when I call this:
    ResponseObject result = (ResponseObject)method.invoke(classInstance, argArray);
    I can't figure out what the problem is. I had this reflection working, and then I made some changes to how the argument array was created. In the end, the argarray is the same.
    Any ideas?

    Also, the API for the method class says that a
    NullPointerException is thrown if the object in the
    first argument is null. I have tested for this, and
    it is not null.does it? read again, because giving 'null' as the first argument is perfectly legal. how else would you reflectively invoke a static method, since you might not have an actual instance of the class to pass

  • [Solved][Hal and Partitions] Newbie problem with hal policy

    Hello everybody,
    As a new user of archlinux for less than a week I have experienced a great distribution after having been for 1 year on Linux.
    After installation I was able to solve most of my problems with the wiki and the forums but there is one problem I cannot resolve.
    I have installed Kde 4.2 on my computer and I can mount Usb drives, or CDs with hal (It is in the daemons section of my rc.conf) but strangely I cannot access my other partitions such as my Ubuntu partition (ext3), or the family's Windows partition (Nfts). I have installed nfts-3g for the nfts partition hal refuses to let me access it, I will give you what Dolphin says when I try to access the Nfts:
    org.freedesktop.Hal.Device.PermissionDeniedByPolicy: hal-storage-mount-fixed-extra-options no <-- (actions,result)
    And for the ext3
    org.freedesktop.Hal.Device.PermissionDeniedByPolicy: hal-storage-mount-fixedauth_admin_keep_always <-- (actions,result)
    I don't really understand what It means but normally I am allowed to mount partitions.
    My /etc/PolycyKit/PolicyKit.conf: http://pastebin.com/m57e94025
    And my /etc/dbus-1/system.d/hal.conf: http://pastebin.com/m62861179
    I've already tried to configure these two with the wiki and the forums but nothing yet.
    If you need more information ask me.
    Thanks in advance.
    Last edited by auratux (2009-02-23 21:24:29)

    You might want to reread the Hal wiki re: Permission Denied with automounter.  Your /etc/PolicyKit/PolicyKit.conf seems to be missing the lines mentioned in the wiki.
    Edit: Or maybe it is similair to: http://bbs.archlinux.org/viewtopic.php?id=66008
    Last edited by bgc1954 (2009-02-22 14:07:10)

  • Newbie:Problems with SCSI root disk

    Hello
    I have periodic problems with no matter what disk I put in my root partition. My Sun has several disks, so I can take another disk not being used and configure it as my new root disk, installing Solaris root on it.
    But when, this way, I replace the disk by another "fresh" disk and reinstall Solaris all goes Ok during some time (days or months) until suddenly I get I/O Errors allways in that disk.
    I use a E250 with Solaris8. The problem also arises with Solaris7.
    If I do a probe-scsi-all at ok prompt I frequently see hardware errors in that disk. All those errors where not present previously when my disk wan't the root.
    What is corrupting my disks a I use them?
    Am I missing something when I put a new disk? Should I change the ID of my previous SCSI disk?
    If so, how?
    Thanks

    Are you using the disks in the same slot? It may be the controller....

  • Problems with xml transformation via xslt - strange results

    hi everybody...
    i've little trouble finalling a little tool programmed by myself for my education.
    the application contains a kind of document-server which enables the client to up- and download xml-document in a special format to/from the server.
    in case of the xml-dtd of client and server are different (same type of content, different dtd) the server implements a method called transform(StreamSource source, StreamSource xsl_stylesheet, StreamResult result) which contains the following code:
        transform(StreamSource source, StreamSource xml_stylesheet, StreamResult result) {
          try {
            TransformerFactory factory = TransformerFactory.newInstance();
            Templates template = factory.newTemplates(xsl_stylesheet);
            Transformer transformer = template.newTransformer();
            transformer.transform(source, result);
            return true;
          catch(Exception e) {
            return false;
        }the method is called by the methods downloadFile(...) and uploadFile(...) which both generate the different StreamSource- and StreamResult-Objects.
    by using the downloadFile(...) method, the requested file is transformed, stored temporary in a tmp-directory, read in and send to the requesting client.
    by using the uploadFile(...) method, the sent file is stored temporary in the tmp-directory, read in, transformed and stored as new server-document (if the file still exists it will be overwritten).
    My Problem:
    the result files generated by transform(SreamSource source, StreamSource xsl_stylesheet, StreamResult result) look strange. That means the result xml-code is not equal to the result xml-code i generated by transforming my xml-documents with saxon.
    The xsl files are correct and the xml files are wellformed as well as they are valid.
    The result files look like this:
    <?xml-stylesheet type="text-xsl" href="../xsl/SERVER.xsl"?>
       XYZ
       ABC
          1
          piece
          One piece of ABC(-> <?xml-stylesheet type="text-xsl" href="../xsl/SERVER.xsl"?> is a "string" of code from the source xml-file...)
    The result should look like this:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE a-resource SYSTEM "../dtd/A.dtd">
    <a-resource id="XYZ">
       <a-type>ABC</a-type>
       <a-data>
          <a-value>1</a-value>
          <a-unit>piece</a-unit>
          <a-descr>One piece of ABC</a-descr>
       </a-data>
    </a-resource>Is there anyone who knows what kind of mistake i did in my transform(...) method??
    Do I need to add some attributes to any of the Objects of Template of Transformer??
    please... help me
    i've been testing now over two nights long but couldn't find any solution how to bring my application to work "correct".
    thanks,
    Thof!!!

    ok...
    i got it!
    seems like jaxpi is unable to convert files with extensions different to .xml ...
    now it's working

  • Newbie problem with new objects and tools.

    in chapter 4 of the after effects essential training series from Lynda.com in the section about controlling animation with the pick whip. when he applies the null object the red bar immediately populates (correct usage?) the timeline to the right. when i apply the null object it's hidden to the left, under all the layer info, and i need to drag it out into view.
    ive found that whenever i have a problem, e.g., im using a tool and nothing is happening, it always comes down to this same thing: the layer is not with everything else and i need to drag it out into view.
    not only am i new to mac, but im only marginally literate and a total newb to anything more advanced than iphoto, any advice would be appreciated.

    Rick Gerard wrote:
    I'm not understanding what you are asking.
    If you have a layer in the timeline, a null, and the parenting column is visible you simply click on the pickwhip next to the layer and drag it to the name of the null layer. The Parenting box now says that Layer 1 is connected to Null 1.
    Now, when you move the null, the layer will move.
    i understand what they do and how to set them up.
    my question is more specific, but also applies more generally to other tools and layers. when Ian creates his null layer in the video (as well as other layers ive seen him create) the red bar that represents his null layer immediately appears in the timeline with the begining of the red bar at the left end of the work area. it is fully visible. when i create one the file shows up in the list of layers on the panel to the left of the time line, but it is not visible in the comp window and the red bar is hidden to the left side of the visible timeline to where you have to click its right end and drag it out from behind the panel on the left.
    this has happened with other layers ive created using other tools and before i figured out what to look for it was very frustrating. now, whenever i can't find something, or a tool that im using isnt doing anyhting (besides creating more and more layers) ive learned to look and see if theyre just hidden. it seems like it's probably a setting. but clearly, something is different: he creates a null layer and it appears in the timeline, and mine appear slid to the left.

  • Speech recognition problem with null pointer exception

    im trying to run the simple hello program that came with IBM speech for java
    i've put the speech.jar file in the right folder and it compiles all fine but when i run it i get this error:
    locale is en_US
    java.lang.NullPointerException
    at Hello.main(Hello.java:171)
    but i dont know enough about java speech to figure out what is null and what shouldn't be null...
    thx
    nate
    P.S.
    here is the program code
    import java.io.*;
    import java.util.Locale;
    import java.util.ResourceBundle;
    import java.util.StringTokenizer;
    import javax.speech.*;
    import javax.speech.recognition.*;
    import javax.speech.synthesis.*;
    public class Hello {
    static RuleGrammar ruleGrammar;
    static DictationGrammar dictationGrammar;
    static Recognizer recognizer;
    static Synthesizer synthesizer;
    static ResourceBundle resources;
    static ResultListener ruleListener = new ResultAdapter() {
    public void resultAccepted(ResultEvent e) {
    try {
    FinalRuleResult result = (FinalRuleResult) e.getSource();
    String tags[] = result.getTags();
    if (tags[0].equals("name")) {
    String s = resources.getString("hello");
    for (int i=1; i<tags.length; i++)
    s += " " + tags;
    speak(s);
    } else if (tags[0].equals("begin")) {
    speak(resources.getString("listening"));
    ruleGrammar.setEnabled(false);
    ruleGrammar.setEnabled("<stop>", true);
    dictationGrammar.setEnabled(true);
    recognizer.commitChanges();
    } else if (tags[0].equals("stop")) {
    dictationGrammar.setEnabled(false);
    ruleGrammar.setEnabled(true);
    recognizer.commitChanges();
    } else if (tags[0].equals("bye")) {
    speak(resources.getString("bye"));
    if (synthesizer!=null)
    synthesizer.waitEngineState(Synthesizer.QUEUE_EMPTY);
    Thread.sleep(1000);
    System.exit(0);
    } catch (Exception ex) {
    ex.printStackTrace();
    int i = 0;
    String eh[] = null;
    public void resultRejected(ResultEvent e) {
    if (eh==null) {
    String s = resources.getString("eh");
    StringTokenizer t = new StringTokenizer(s);
    int n = t.countTokens();
    eh = new String[n];
    for (int i=0; i<n; i++)
    eh = t.nextToken();
    if (((Result)(e.getSource())).numTokens() > 2)
    speak(eh[(i++)%eh.length]);
    static ResultListener dictationListener = new ResultAdapter() {
    int n = 0; // number of tokens seen so far
    public void resultUpdated(ResultEvent e) {
    Result result = (Result) e.getSource();
    for (int i=n; i<result.numTokens(); i++)
    System.out.println(result.getBestToken(i).getSpokenText());
    n = result.numTokens();
    public void resultAccepted(ResultEvent e) {
    Result result = (Result) e.getSource();
    String s = "";
    for (int i=0; i<n; i++)
    s += result.getBestToken(i).getSpokenText() + " ";
    speak(s);
    n = 0;
    static RecognizerAudioListener audioListener =new RecognizerAudioAdapter(){
    public void audioLevel(RecognizerAudioEvent e) {
    System.out.println("volume " + e.getAudioLevel());
    static EngineListener engineListener = new EngineAdapter() {
    public void engineError(EngineErrorEvent e) {
    System.out.println
    ("Engine error: " + e.getEngineError().getMessage());
    static void speak(String s) {
    if (synthesizer!=null) {
    try {
    synthesizer.speak(s, null);
    } catch (Exception e) {
    e.printStackTrace();
    } else
    System.out.println(s);
    public static void main(String args[]) {
    try {
    if (args.length>0) Locale.setDefault(new Locale(args[0], ""));
    if (args.length>1) Locale.setDefault(new Locale(args[0], args[1]));
    System.out.println("locale is " + Locale.getDefault());
    resources = ResourceBundle.getBundle("res");
    recognizer = Central.createRecognizer(null);
    recognizer.allocate();
    recognizer.getAudioManager().addAudioListener(audioListener);
    recognizer.addEngineListener(engineListener);
    dictationGrammar = recognizer.getDictationGrammar(null);
    dictationGrammar.addResultListener(dictationListener);
    String grammarName = resources.getString("grammar");
    Reader reader = new FileReader(grammarName);
    ruleGrammar = recognizer.loadJSGF(reader);
    ruleGrammar.addResultListener(ruleListener);
    ruleGrammar.setEnabled(true);
    recognizer.commitChanges();
    recognizer.requestFocus();
    recognizer.resume();
    synthesizer = Central.createSynthesizer(null);
    if (synthesizer!=null) {
    synthesizer.allocate();
    synthesizer.addEngineListener(engineListener);
    speak(resources.getString("greeting"));
    } catch (Exception e) {
    e.printStackTrace();
    System.exit(-1);

    yes, the problem seems to be with allocating the engine, but I don't know exactly why recognizer.allocate() returns null...I have already installed IBM ViaVoice and Speech for Java, and have set the supposedly correct paths...

  • Problem with XSLT Transformation on BPM

    Hi there,
    I have a 1:N File --> Idocs Scenario with BPM, Inside the BPM i have an XSLT Transformation that has a problem i cant figure out, basically this XSLT Groups the file structure like this:
    <File>                                                *                  <Shipments>
       <Route>                                         *                     <Route>
          <Id>1</Id>                                   *                         <Id>1</Id>
          <delivery>1</delivery>               *                         <delivery>1</delivery>
       </Route>                                        *                         <delivery>2</delivery>
      <Route>                                          *                     </Route>
          <Id>1</Id>                                   *                     <Route>
          <delivery>2</delivery>               *                         <Id>2</Id>
       </Route>                                        *                         <delivery>3</delivery>
      <Route>                                          *                         <delivery>4</delivery>
          <Id>2</Id>                                   *                      </Route>
          <delivery>3</delivery>               *                   </Shipments>
       </Route>                                        *
       <Route>                                         *
          <Id>2</Id>                                   *
          <delivery>4</delivery>               *
       </Route>                                        *
    </File>                                               *
    It's supposed to generate 1 Route Segment for each disctint Route Id on the Source file, it has always worked fine as we ran several tests before going into production system, but now, sometimes it misses a few routes for example the output will be 25 different Routes for a source file that 28, or 2 routes from a file that as 3.
    I have tested the XSLT on the repository and it works fine all the time, same thing when using xml spy, i always download the payload i get from the file adapter, i got a source file from PRD that has 28 routes and i ran the whole scenario on QAS and it generated 12 routes only, im about to open an OSS message but first i wanted to know if anyone has seen something like this, thanks in advance for all the help you guys can provide.
    Best Regards,
    Roberto.
    p.s. i can send the XSL if needed or anything just ask for it.

    Hi,
    Basically because i  have to do 2 transformations, first i run the XSLT to group all the deliveries and such, and then i do a graphic mapping to split it into single Shipment Idocs, i dont know how to group by id on graphical mapping..., anyway i don't think the fact that im using BPM would finally alter the xslt result,
    Regards,
    Roberto.

  • Problems With PL/SQL Exceptions and OracleExceptions

    Our users require that all errors in our .net web forms be displayed in a floating window. This can be done using javascripting but we get an "unterminated string constant" error from the application when the exception sent back from an Oracle function or stored procedure contains multiple lines. The OracleException class concats multiple messages and ends each with a carriage return.
    A work around used in other stored procedures used in the application is to send a return value or out parm instead of raising an exception, but our DBA (who manages this particular function) states this is not a standard PL/SQL coding practice.
    Other suggestions?

    Our users require that all errors in our .net web
    forms be displayed in a floating window. This can be
    done using javascripting but we get an "unterminated
    string constant" error from the application when the
    exception sent back from an Oracle function or stored
    procedure contains multiple lines. The
    OracleException class concats multiple messages and
    ends each with a carriage return.
    A work around used in other stored procedures used in
    the application is to send a return value or out parm
    instead of raising an exception, but our DBA (who
    manages this particular function) states this is not
    a standard PL/SQL coding practice.He's quite right. And anyway you don't want to change a back-end procedure to fix a front-end display problem.
    If you are having trouble displaying the error message, then you may have to massage it. For instance you could replace all carrage returns with '<br>', or strip them entirely.
    David

  • Newbie problem with upgrade to CS5 and editing in Design view

    I'm a newbie working on my first website. I built the site in CS3. I have 3 template pages, each containg editable regions, and numerous pages created from each template. I had no problem working with the pages in CS3- I could edit the content in either Code or Design view.
    I have now upgraded to CS5. The other change is I had to move the site to another machine, as CS5 does not support my older generation Mac. The problem I am having:
    If I open the index.html template or the page based on it, everything works fine. I can edit in both Code and Design views. When I open any page based on my other two templates, I can edit in Code view, but when I try to type in the editable areas on the page in Design View, I simply see a "circle with a slash in it" icon indicating I can't type anything. If I Preview the pages, the existing content is visible, all links work etc.
    Being a newbie, editing in Design view is easiest(and probably safest). It seems like this should not be happening in any case? I am too inexperienced to know where to start. I have seen some posts regarding similar issues, but nothing exactly the same. I am really hoping it is just some silly mistake I am making...Any ideas would be much appreciated.
    Mac OS X ver 10.5.8
    Thanks,
    Maura

    I'm sorry, I'm afraid I haven't gotten to the uploading part yet:(
    I'll just copy the code from one of the pages that is not editable. Let me know if this is not what you need.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/backgroundPage_sub_noSubMenu.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Publications, X. tropicalis, Mustafa Khokha Developmental Biology Lab (Xenopus tropicalis), Yale School of Medicine.html</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    .SearchKhokhaLab {
    font-size: 75%;
    padding-top: 0%;
    top: 0px;
    position: relative;
    width: auto;
    body  {
    background: #666666;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 100%;
    height: auto;
    width: auto;
    .twoColHybLtHdr #container {
    background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
    border: 1px solid #000000;
    text-align: left;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    position: relative;
    height: 80%;
    width: 850px;
    overflow: auto;
    .twoColHybLtHdr #header {
    background: #DDDDDD;
    padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    .twoColHybLtHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    /* Tips for sidebar1:
    1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width.
    2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
    3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
    .twoColHybLtHdr #sidebar1 {
    float: left;
    width: 12em; /* since this element is floated, a width must be given */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 0;
    .twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
    margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
    margin-right: 10px;
    /* Tips for mainContent:
    1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
    2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
    3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
    .twoColHybLtHdr #mainContent {
    border-left-color: #666666;
    border-left-style: solid;
    border-left-width: thin;
    padding-left: 1em;
    margin-top: 0;
    margin-right: 20px;
    margin-bottom: 0;
    margin-left: 12em;
    .twoColHybLtHdr #footer {
    padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background:#DDDDDD;
    .twoColHybLtHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    /* Miscellaneous classes for reuse */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    -->
    </style>
    <!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColHybLtHdr #sidebar1 { padding-top: 30px; }
    .twoColHybLtHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout it may need to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
    <style type="text/css">
    <!--
    p.MsoNormal {
    margin:0in;
    margin-bottom:.0001pt;
    font-size:12.0pt;
    font-family:"Times New Roman";
    -->
    </style>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    -->
    </style>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="myTropStyles.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="twoColHybLtHdr">
    <div id="container">
      <div id="header">
        <h1><!-- InstanceBeginEditable name="titleSubPage" --><a name="topsubpages" id="topsubpages"></a>Khokha Lab Website<!-- InstanceEndEditable --></h1>
    <ul id="topMenu" class="MenuBarHorizontal">
              <li><a href="index.html">Home</a>              </li>
          <li><a href="contactUs.html" class="MenuBarHorizontal">Contact Us</a></li>
          <li><a class="MenuBarItemSubmenu" href="#">About Us</a>
          <ul>
                <li><a href="labMembers.html">Lab members</a></li>
              <li><a href="projects.html">Projects</a></li>
            </ul>
          </li>
          <li><a href="publications.html" title="Publications">Publications</a></li>
          <li><a href="http://tropicalis.yale.edu/request_frogs/frogs.html" title="Request frogs">Request Frogs</a></li>
          <li><a href="labMeetingSchedule.html" title="Lab Meeting Schedule">Lab Meeting Schedule</a></li>
          <li><a href="#" class="MenuBarItemSubmenu">Quick Links</a>
            <ul>
              <li><a href="https://portal.yale.edu/render.userLayoutRootNode.uP" title="Yale Portal" target="_blank">Yale Portal</a></li>
              <li><a href="http://yalebiz.yale.edu/transactions/sciquest" title="SciQuest" target="_blank">SciQuest</a></li>
              <li><a href="http://www.neb.com/nebecomm/default.asp" title="NEB" target="_blank">NEB</a></li>
              <li><a href="http://tools.neb.com/NEBcutter2/index.php" title="NEBCutter" target="_blank">NEBCutter</a></li>
              <li><a href="http://frodo.wi.mit.edu/primer3/" title="Primer3" target="_blank">Primer3</a></li>
              <li><a href="http://www.bioinformatics.nl/cgi-bin/primer3plus/primer3plus.cgi" title="Primer 3 Plus" target="_blank">Primer3 Plus</a></li>
              <li><a href="http://www.fermentas.com/en/home" title="Fermentas" target="_blank">Fermentas</a></li>
              <li><a href="http://www.invitrogen.com/site/us/en/home.html" title="Invitrogen" target="_blank">Invitrogen</a></li>
            </ul>
          </li>
        </ul>
       <p>
         <!-- end #header -->
       </p>
      </div>
      <div id="sidebar1"><span class="SearchKhokhaLab">
        Search Khokha Lab site
        </span>
    <tr>
      <td height="69">
      <form id="cse-search-box" action="http://www.google.com/cse">
    <input type="hidden" name="cx" value="005937655168220763994:nym0qizbzne"> <input type="hidden" name="ie" value="UTF-8"> <input type="text" name="q" size="22">
    <input name="sa" type="submit" class="twoColHybLtHdr" value="Search">
          </form>
          <script type="text/javascript" src="http://www.google.com/cse/brand?form=cse-search-box&lang=en"></script> </td>
        </tr>
    <tr>
    <td class="headlink"> </td>
    </tr>
        <ul id="sidebarMenu" class="MenuBarVertical">
                <li><a href="genomicResources/genomicResources_websites.html" class="MenuBarItemSubmenu">Projects</a>
                  <ul>
                    <li><a href="projects.html">Projects</a></li>
                    <li><a href="labMembers.html">Lab members</a></li>
                  </ul>
            </li>
      <li><a href="#" class="MenuBarItemSubmenu">Husbandry</a>
              <ul>
                <li><a href="#">Housing</a></li>
                <li><a href="#">Raising Tads/Frogs</a></li>
                <li><a href="#">Sexing Trops</a></li>
                <li><a href="#">Lab Care</a></li>
                <li><a href="#">Disease</a></li>
                <li><a href="#">Database</a></li>
                <li><a href="#">Tagging Frogs/ID</a></li>
                <li><a href="#">Shipping Frogs</a></li>
              </ul>
            </li>
      <li><a class="MenuBarItemSubmenu" href="obtainEmbryos/obtainEmbyros_Main.html">Obtain Embryos</a>
                <ul>
                  <li><a href="obtainEmbryos/obtainEmbryos_hCG.html">hCG injection</a>              </li>
                  <li><a href="obtainEmbryos/obtainEmbryos_naturalMatings.html">Natural matings</a></li>
                  <li><a href="obtainEmbryos/obtainEmbryos_IsolateTestes.html">Isolating Testis</a></li>
                  <li><a href="obtainEmbryos/obtainEmbryos_SqueezFemales.html">Squeezing females</a></li>
                  <li><a href="obtainEmbryos/obtainEmbryos_IVF.html">IVF</a></li>
                  <li><a href="obtainEmbryos/obtainEmbryos_deJelly.html">De-Jelly</a></li>
                  <li><a href="obtainEmbryos/obtainEmbryos_SpermFreeze.html">Sperm Freezing/Storage</a></li>
                  <li><a href="developmentalTable/DevelopmentalTable_main.html">Developmental timetables</a></li>
            </ul>
          </li>
        <li><a href="manipulateEmbryos/manipulateEmbryos_main.html" class="MenuBarItemSubmenu">Manipulate Embryos</a>
              <ul>
                <li><a href="developmentalTable/DevelopmentalTable_main.html">Developmental Timetables</a></li>
                <li><a href="obtainEmbryos/obtainEmbryos_deJelly.html">De-Jelly</a></li>
                <li><a href="manipulateEmbryos/manipulateEmbryos_fixation.html">Fixation</a></li>
                <li><a href="manipulateEmbryos/manipulateEmbryos_haploids/manipulateEmbryos_haploidProtocol.html ">Haploids</a></li>
                <li><a href="manipulateEmbryos/manipulateEmbryos_gynogenesis/manipulateEmbryos_gynogenProtocol.h tml">Gynogenesis</a></li>
                <li><a href="manipulateEmbryos/manipulateEmbryos_gammaMutagenesis.html">Gamma-Ray Mutagenesis</a></li>
                <li><a href="manipulateEmbryos/manipulate_Microinj_main.html">Microinjection</a></li>
                <li><a href="manipulateEmbryos/manipulateEmbryos_morpholinoOligos/manipulateEmbryos_morpholinoOl igos.html">Morpholino Oligos</a></li>
                <li><a href="manipulateEmbryos/manipulateEmbryos_transgenicTech.html">Transgenics</a></li>
              </ul>
            </li>
        <li><a href="visualizeTissues/visualize_main.html" class="MenuBarItemSubmenu">Visualize Tissues/Genes</a>
              <ul>
                <li><a href="visualizeTissues/inSitu/visualize_inSituHyb_main.html">In situ Hybridization</a></li>
                <li><a href="visualizeTissues/AbStaining/visualize_AbStaining.html">Ab Staining</a></li>
                <li><a href="visualizeTissues/TUNELStaining/visualize_TUNELStain.html">TUNEL Staining</a></li>
                <li><a href="visualizeTissues/cartilageStaining/visualize_cartilageStain.html">Cartilage Staining</a></li>
                <li><a href="visualizeTissues/sectioning/visualize_sectionEmbryos.html">Sectioning Embryos</a></li>
                <li><a href="visualizeTissues/HandEStaining/visualize_HandE_Stain.html">H&amp;E Staining</a></li>
                <li><a href="visualizeTissues/inSituLibrary/visualize_tropInSituLibrary.html">Tropicalis in situ Library</a></li>
                </ul>
            </li>
      <li><a href="geneticTechniques/geneticTech_main.html" class="MenuBarItemSubmenu">Genetic Techniques</a>
                <ul>
                  <li><a href="#">Karyotypes</a></li>
                  <li><a href="#">Cytology</a></li>
                  <li><a href="#">Gynogenesis</a></li>
                  <li><a href="#">Isolating Genomic DNA</a></li>
                  <li><a href="http://tropmap.biology.uh.edu/" target="_blank">Genetic Map</a></li>
                  <li><a href="#">Database</a></li>
                  <li><a href="geneticTechniques/geneticTech_ID_main.html">Frog identification Tags</a></li>
                  <li><a href="obtainEmbryos/obtainEmbryos_SpermFreeze.html">Sperm Freezing/Storage</a></li>
                  <li><a href="#">Shipping Frogs</a></li>
                </ul>
            </li>
          <li><a href="protocols/protocols_main.html">Protocols</a></li>
    <li><a href="geneticResources/geneticResources_main.html" class="MenuBarItemSubmenu">Genetic Resources/Tools</a>
              <ul>
                <li><a href="geneticResources/inbredStrains/geneticResources_inbredLines.html">Inbred Lines</a></li>
                <li><a href="geneticResources/mutants/geneticResources_Mutants.html">Mutants</a></li>
                <li><a href="http://tropmap.biology.uh.edu/" target="_blank">Linkage Map</a></li>
                <li><a href="http://tools.neb.com/NEBcutter2/index.php" target="_blank">NEBCutter</a></li>
                <li><a href="http://frodo.wi.mit.edu/primer3/" target="_blank">Primer3</a></li>
                <li><a href="http://www.bioinformatics.nl/cgi-bin/primer3plus/primer3plus.cgi#" target="_blank">Primer3Plus</a></li>
                <li><a href="http://www.bioinformatics.org/sms/index.html">Sequence Manipulation Suite</a></li>
                </ul>
            </li>
        <li><a href="genomicResources/genomicResources_genomicResources.html" class="MenuBarItemSubmenu">Genomic Resources</a>
              <ul>
                <li><a href="http://genome.jgi-psf.org/Xentr4/Xentr4.home.html" target="_blank">Genome @ JGI</a></li>
                <li><a href="http://tropicalis.yale.edu/genomic_resources/genome_seq/genome.html">Genome Sequencing</a></li>
                <li><a href="http://www.metazome.net/" target="_blank">Metazome</a></li>
                <li><a href="genomicResources/genomicResources_fullLengthcDNALib.html">Unique Full Length cDNA Set</a></li>
                <li><a href="genomicResources/genomicResources_ESTs.html">Xenopus ESTs</a></li>
                <li><a href="genomicResources/genomicResources_vectorInformation.html">EST/cDNA Vector Information</a></li>
                <li><a href="http://genomics.nimr.mrc.ac.uk/online/xt-fl-db.html" target="_blank">EST Clusters/Full Length clones</a></li>
                <li><a href="http://tropicalis.yale.edu/genomic_resources/bac/bacs.html" target="_blank">BAC Libraries</a></li>
                <li><a href="http://genomeold.wustl.edu/projects/xenopus/" target="_blank">WashU Mapping</a></li>
                <li><a href="http://tropmap.biology.uh.edu/" target="_blank">Linkage Map @ UH</a></li>
                <li><a href="http://xenopus.nibb.ac.jp/" target="_blank">NIBB XDB</a></li>
                <li><a href="http://www.dkfz.de/de/mol_embryology/" target="_blank">Axeldb</a></li>
                <li><a href="http://www.dcode.org/">Comparative Genomics at LLNL</a></li>
                <li><a href="genomicResources/genomicResources_websites.html">Genomic Websites</a></li>
              </ul>
            </li>
        <li><a href="suppliers/suppliers_main.html" class="MenuBarItemSubmenu">Suppliers</a>
              <ul>
                <li><a href="#" class="MenuBarItemSubmenu">Vivaria</a>
                  <ul>
                    <li><a href="http://www.aquatichabitats.com/" target="_blank">Marine Biotech</a></li>
                    <li><a href="http://www.aquaticeco.com/" target="_blank">Aquatic Ecosystems</a></li>
                  </ul>
                </li>
                <li><a href="#" class="MenuBarItemSubmenu">Frog Diets</a>
                  <ul>
                    <li><a href="http://www.enasco.com/prod/Static?page=xenopus&seqid=0" target="_blank">Nasco</a></li>
                    <li><a href="http://www.hbhnet.com/default.html" target="_blank">HBH</a></li>
                    <li><a href="http://www.herpsupplies.com/" target="_blank">Sera-Micron</a></li>
                  </ul>
                </li>
                <li><a href="http://tropicalis.yale.edu" target="_blank" class="MenuBarItemSubmenu">Frogs</a>
                  <ul>
                    <li><a href="http://tropicalis.yale.edu/request_frogs/frogs.html">Khokha Lab</a></li>
                    <li><a href="http://tropicalis.berkeley.edu/home/request_frogs/frogs.html" target="_blank">Harland Lab</a></li>
                    <li><a href="http://www.enasco.com/prod/Static?page=xenopus&seqid=0" target="_blank">Nasco</a></li>
                  </ul>
                </li>
                </ul>
            </li>
        <li><a href="genomicResources/tropWebSites_main.html">Tropicalis Websites</a>    </li>
      <li><a href="#" class="MenuBarItemSubmenu">Trop Labs</a>
              <ul>
                <li><a href="http://tropicalis.berkeley.edu/home/" title="Harland Lab" target="_blank">Harland Lab</a></li>
                <li><a href="http://faculty.virginia.edu/xtropicalis/" title="Grainger Lab" target="_blank">Grainger</a></li>
                <li><a href="http://personalpages.manchester.ac.uk/staff/enrique.amaya/" title="Amaya Lab" target="_blank">Amaya</a></li>
                <li><a href="http://www.nimr.mrc.ac.uk/research/mike-gilchrist" title="Gilchrist Lab" target="_blank">Gilchrist</a></li>
                <li><a href="http://www.unc.edu/~fconlon/index.htm" title="Conlon Lab" target="_blank">Conlon</a></li>
                <li><a href="http://www.stjuderesearch.org/site/lab/mead" title="Mead Lab" target="_blank">Meade</a></li>
                <li><a href="http://www.sanger.ac.uk/research/projects/vertebratedevelopment/" title="Stemple Lab" target="_blank">Stemple</a></li>
                <li><a href="http://www.nimr.mrc.ac.uk/research/lyle-zimmerman" title="Zimmerman Lab" target="_blank">Zimmerman</a></li>
              </ul>
            </li>
        <li><a href="#" class="MenuBarItemSubmenu">Yale Links</a>
              <ul>
                <li><a href="http://www.yale.edu/" target="_blank">Yale Main Site</a></li>
                <li><a href="http://info.med.yale.edu/ysm/index.html" target="_blank">Yale School of Medicine</a></li>
                <li><a href="http://info.med.yale.edu/ysm/index.html" target="_blank">YSMInfo</a></li>
                <li><a href="https://webmail.med.yale.edu/horde/imp/" target="_blank">Webmail</a></li>
                <li><a href="http://www.med.yale.edu/library/directory.html" target="_blank">Phone Directory</a></li>
                <li><a href="http://www.yale.edu/procurement/index.html" target="_blank">Procurement</a></li>
                <li><a href="https://portal.yale.edu/render.userLayoutRootNode.uP" target="_blank">YalePortal</a></li>
                <li><a href="http://yalebiz.yale.edu/transactions/sciquest" title="SciQuest" target="_blank">SciQuest</a></li>
                <li><a href="http://www.myairmail.com/">TextPage</a></li>
              </ul>
            </li>
        <li><a href="http://cushing.med.yale.edu/electronic/journals" class="MenuBarItemSubmenu">Journals</a>
              <ul>
                <li><a href="http://cushing.med.yale.edu/electronic/journals" target="_blank">Yale Med Library</a></li>
                <li><a href="http://www.nature.com/nature/index.html" target="_blank">Nature</a></li>
                <li><a href="http://www.sciencemag.org/magazine.dtl" target="_blank">Science</a></li>
                <li><a href="http://www.cell.com/" target="_blank">Cell</a></li>
                <li><a href="http://www.cell.com/developmental-cell/home" target="_blank">Developmental Cell</a></li>
                <li><a href="http://www.nature.com/ng/index.html" target="_blank">Nature Genetics</a></li>
                <li><a href="http://dev.biologists.org/" target="_blank">Development</a></li>
                <li><a href="http://www.sciencedirect.com/science?_ob=PublicationURL&_cdi=6766&_pubType=J&_auth=y&_acct =C000050221&_version=1&_urlVersion=0&_userid=10&md5=4d5e3a7e6c096fddbf74f830fba6f5ca" target="_blank">Developmental Biology</a></li>
              </ul>
            </li>
        </ul>
      <p class="SearchKhokhaLab">Mustafa K. Khokha<br />
            <a href="mailto:[email protected]">[email protected]</a><br />
          <a href="http://tropicalis.yale.edu/">http://tropicalis.yale.edu/</a></p>
        <p class="SearchKhokhaLab">Office Location - LCI 409D Ph:(203) 785-4650 <br />
          Mailing Address<br />
          Yale University School of Medicine<br />
          333 Cedar St./LCI 305<br />
          New Haven CT 06520</p>
        <p class="SearchKhokhaLab">Lab Location - FMP 425 Ph: (203) 785-2333</p>
        <p class="SearchKhokhaLab">Express Courier Address<br />
          Yale University School of Medicine<br />
          333 Cedar St/FMP 425<br />
          New Haven CT 06520-8064<br />
          Fax (203) 785-5833</p>
        <p>
          <!-- end #sidebar1 -->
        </p>
      </div>
      <div id="mainContent"><!-- InstanceBeginEditable name="pageContent" -->
        <h2>Khokha Lab X. tropicalis Publications</h2>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">1.</span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/20431018"><span style="text-underline:none; font-size:14.0pt; color:#1722CD; text-decoration:none; ">The genome of the Western clawed frog Xenopus tropicalis.</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Hellsten U, Harland RM, Gilchrist MJ, Hendrix D, Jurka J, Kapitonov V, Ovcharenko I, Putnam NH, Shu S, Taher L, Blitz IL, Blumberg B, Dichmann DS, Dubchak I, Amaya E, Detter JC, Fletcher R, Gerhard DS, Goodstein D, Graves T, Grigoriev IV, Grimwood J, Kawashima T, Lindquist E, Lucas SM, Mead PE, Mitros T, Ogino H, Ohta Y, Poliakov AV, Pollet N, Robert J, Salamov A, Sater AK, Schmutz J, Terry A, Vize PD, Warren WC, Wells D, Wills A, Wilson RK, Zimmerman LB, Zorn AM, Grainger R, Grammer T, Khokha MK, Richardson PM, Rokhsar DS.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">Science. 2010 Apr 30;328(5978):633-6.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 20431018 [PubMed - indexed for MEDLINE]</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; "><a href="http://www.ncbi.nlm.nih.gov/pubmed?db=pubmed&cmd=link&linkname=pubmed_pubmed&uid=20431018" target="_blank"><span style="text-underline:none; color:#6466AB; text-decoration:none; ">Related citations</span></a></span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:LucidaGrande; font-size:11.0pt; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:10.0pt; ">2.</span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/19913009" target="_blank"><span style="font-size:14.0pt; color:#1722CD; text-decoration:none; ">BMP antagonists and FGF signaling contribute to different domains of the neural plate in Xenopus.</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Wills AE, Choi VM, Bennett MJ, Khokha MK, Harland RM.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">Dev Biol. 2010 Jan 15;337(2):335-50. Epub 2009 Nov 10.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 19913009 [PubMed - indexed for MEDLINE]</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; "><a href="http://www.ncbi.nlm.nih.gov/pubmed?db=pubmed&cmd=link&linkname=pubmed_pubmed&uid=19913009" target="_blank"><span style="color:#6466AB; text-decoration:none; ">Related citations</span></a></span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:LucidaGrande; font-size:11.0pt; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:10.0pt; ">3.</span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/19441086" target="_blank"><span style="font-size:14.0pt; color:#1722CD; text-decoration:none; ">Rapid gynogenetic mapping of Xenopus tropicalis mutations to chromosomes.</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Khokha MK, Krylov V, Reilly MJ, Gall JG, Bhattacharya D, Cheung CY, Kaufman S, Lam DK, Macha J, Ngo C, Prakash N, Schmidt P, Tlapakova T, Trivedi T, Tumova L, Abu-Daya A, Geach T, Vendrell E, Ironfield H, Sinzelle L, Sater AK, Wells DE, Harland RM, Zimmerman LB.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">Dev Dyn. 2009 Jun;238(6):1398-46.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 19441086 [PubMed - indexed for MEDLINE]</span><span style="font-family:Arial-BoldMT; color:#9A5634; "><strong>Free Article</strong></span><span style="font-family:ArialMT; color:dimgray; "> </span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; "><a href="http://www.ncbi.nlm.nih.gov/pubmed?db=pubmed&cmd=link&linkname=pubmed_pubmed&uid=19441086" target="_blank"><span style="color:#6466AB; text-decoration:none; ">Related citations</span></a></span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:LucidaGrande; font-size:11.0pt; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:10.0pt; ">4.</span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/17651506" target="_blank"><span style="font-size:14.0pt; color:#1722CD; text-decoration:none; ">Accelerated gene evolution and subfunctionalization in the pseudotetraploid frog Xenopus laevis.</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Hellsten U, Khokha MK, Grammer TC, Harland RM, Richardson P, Rokhsar DS.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">BMC Biol. 2007 Jul 25;5:31.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 17651506 [PubMed - indexed for MEDLINE]</span><span style="font-family:Arial-BoldMT; color:#9A5634; "><strong>Free PMC Article<a href="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1949811"><span style="text-underline:none; font-family:ArialMT; color:#6466AB; font-weight:normal; text-decoration:none; ">Free text</span></a></strong></span><span style="font-family:ArialMT; color:dimgray; "> </span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; "><a href="http://www.ncbi.nlm.nih.gov/pubmed?db=pubmed&cmd=link&linkname=pubmed_pubmed&uid=17651506" target="_blank"><span style="color:#6466AB; text-decoration:none; ">Related citations</span></a></span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:LucidaGrande; font-size:11.0pt; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:10.0pt; ">5.</span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/16461016" target="_blank"><span style="font-size:14.0pt; color:#1722CD; text-decoration:none; ">Developmental expression of FoxJ1.2, FoxJ2, and FoxQ1 in Xenopus tropicalis.</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Choi VM, Harland RM, Khokha MK.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">Gene Expr Patterns. 2006 Jun;6(5):443-7. Epub 2006 Feb 7.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 16461016 [PubMed - indexed for MEDLINE]</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; "><a href="http://www.ncbi.nlm.nih.gov/pubmed?db=pubmed&cmd=link&linkname=pubmed_pubmed&uid=16461016" target="_blank"><span style="color:#6466AB; text-decoration:none; ">Related citations</span></a></span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:LucidaGrande; font-size:11.0pt; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:10.0pt; ">6.</span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/16321373" target="_blank"><span style="font-size:14.0pt; color:#1722CD; text-decoration:none; ">Twisted gastrulation is required for forebrain specification and cooperates with Chordin to inhibit BMP signaling during X. tropicalis gastrulation.</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Wills A, Harland RM, Khokha MK.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">Dev Biol. 2006 Jan 1;289(1):166-78.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 16321373 [PubMed - indexed for MEDLINE]</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; "><a href="http://www.ncbi.nlm.nih.gov/pubmed?db=pubmed&cmd=link&linkname=pubmed_pubmed&uid=16321373" target="_blank"><span style="color:#6466AB; text-decoration:none; ">Related citations</span></a></span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:LucidaGrande; font-size:11.0pt; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:10.0pt; ">7.</span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/15975265" target="_blank"><span style="font-size:14.0pt; color:#1722CD; text-decoration:none; ">Strategies for characterising cis-regulatory elements in Xenopus.</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Khokha MK, Loots GG.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">Brief Funct Genomic Proteomic. 2005 May;4(1):58-68. Review.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 15975265 [PubMed - indexed for MEDLINE]</span><span style="font-family:Arial-BoldMT; color:#9A5634; "><strong>Free Article</strong></span><span style="font-family:ArialMT; color:dimgray; "> </span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; "><a href="http://www.ncbi.nlm.nih.gov/pubmed?db=pubmed&cmd=link&linkname=pubmed_pubmed&uid=15975265" target="_blank"><span style="color:#6466AB; text-decoration:none; ">Related citations</span></a></span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:LucidaGrande; font-size:11.0pt; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:10.0pt; ">8.</span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/15763207" target="_blank"><span style="font-size:14.0pt; color:#1722CD; text-decoration:none; ">Identification of mutants in inbred Xenopus tropicalis.</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Grammer TC, Khokha MK, Lane MA, Lam K, Harland RM.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">Mech Dev. 2005 Mar;122(3):263-72.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 15763207 [PubMed - indexed for MEDLINE]</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; "><a href="http://www.ncbi.nlm.nih.gov/pubmed?db=pubmed&cmd=link&linkname=pubmed_pubmed&uid=15763207" target="_blank"><span style="color:#6466AB; text-decoration:none; ">Related citations</span></a></span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:LucidaGrande; font-size:11.0pt; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:10.0pt; ">9.</span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/15737935" target="_blank"><span style="font-size:14.0pt; color:#1722CD; text-decoration:none; ">Depletion of three BMP antagonists from Spemann's organizer leads to a catastrophic loss of dorsal structures.</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Khokha MK, Yeh J, Grammer TC, Harland RM.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">Dev Cell. 2005 Mar;8(3):401-11.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 15737935 [PubMed - indexed for MEDLINE]</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; "><a href="http://www.ncbi.nlm.nih.gov/pubmed?db=pubmed&cmd=link&linkname=pubmed_pubmed&uid=15737935" target="_blank"><span style="color:#6466AB; text-decoration:none; ">Related citations</span></a></span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:LucidaGrande; font-size:11.0pt; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:10.0pt; "><a name="TrottMycoPaper" id="TrottMycoPaper"></a>10.</span><span style="font-family:ArialMT; "> </span></p>
        <p class="MsoNormal" style="line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; "><a href="http://www.ncbi.nlm.nih.gov/pubmed/15253278"><span style="font-size:14.0pt; color:#1722CD; text-decoration:none; ">Characterization of a Mycobacterium ulcerans-like infection in a colony of African tropical clawed frogs (Xenopus tropicalis).</span></a></span><span style="font-family:ArialMT; font-size:14.0pt; "> </span></p>
        <p class="MsoNormal" style="margin-bottom:2.0pt;line-height:18.0pt;text-autospace:none;"><span style="font-family:ArialMT; font-size:14.0pt; ">Trott KA, Stacy BA, Lifland BD, Diggs HE, Harland RM, Khokha MK, Grammer TC, Parker JM.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; ">Comp Med. 2004 Jun;54(3):309-17.</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray; ">PMID: 15253278 [PubMed - indexed for MEDLINE]</span></p>
        <p class="MsoNormal" style="line-height:16.0pt;text-autospace:none;"><span style="font-family:ArialMT; color:dimgray;

Maybe you are looking for

  • NEW PLAYER: Creative Zen Vision:M (30

    Well, it seems that we did not have to wait till 8th dec to see what new product Creative will be releasing.According to internet leak, the new product is the Zen Vision:M <IMG src="http://img.photobucket.com/albums/v624/kingone/zen_vis_m.jpg"> ? 2.5

  • Still image size?

    Hello, Can someone please tell me the best file size and type of picture to use in a standard DV 4:3 project? Should I resize my pictures to 720x480 and if so what resolution, 72dpi or higher? Also when I capture in FCP it tells me that my audio capt

  • Fields in MIGO - BATCH and Valuation Type

    Hi all, I would like to know the meaning of the following fields in MIGO. BATCH - Charg Valuation Type - Bwtar Which is the impact of each field? Should they have the same value in TRA MIGO? Which means that only the BATCH field is entered and the Va

  • Adding a new tab in PPOME

    Hi, We have a requirement like adding a new tab in the trasaction PPOME. Can somebody share their knowledge on this. Somu

  • Weblogic Two Phase commit

    Dears, we are facing slowness problem while migration application from weblogic 7 to weblogic 11g. Our Application use EJB 2.1 CMP and oracle database In web-logic 7 we use global transaction and emulate two phase commit .Our application works fine I