Transform entity problem!

I need to print a " " string in HTML so I write this in my xsl file : "&;nbsp;"
But the XSLProcessor turns it into " "......
Any comment?

I just download the xdk_java_9_0_1_1_0A and try processing again,
I found that the "&;" and "<" still can't be processed correctly,
please can somebody help me?

Similar Messages

  • [svn:fx-trunk] 10229: Fixes for some transform effects problems.

    Revision: 10229
    Author:   [email protected]
    Date:     2009-09-14 08:43:43 -0700 (Mon, 14 Sep 2009)
    Log Message:
    Fixes for some transform effects problems.
    - We were not animating the postLayout properties in some cases where we should have, effectively pinning the object in place. We now animate those properties whenever applyChangesPostLayout is true.
    - A copy/paste error meant that we did not animate the scaleZ property in cases where we should have.
    - A problem in the transform code means that using a null transform center is not the same as a transform center which uses the transformX/Y/Z properties of the target object. We now force the creation/use of a transform center in all cases to avoid that problem.
    QE notes: This breaks about a dozen tests in the transform effects area, but I believe the new results are correct and the tests/bitmaps should be changed.
    Doc notes: None
    Bugs: sdk-23177
    Reviewer: Hans
    Tests run: checkintests, Mustella transform effects
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-23177
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/AnimateTransform.as

  • Webservice client generated from WSDL null entity problem

    hi,
    I'am having a serious problem using the generation (data centric development) capability of Flash builder.
    I have a simple XSD and generated WSLD (from Spring Framework using JAXB). In this I have defined an UpdateRelatie function.
    It looks something like this:
        <xsd:element name="UpdateRelatieRequest">
            <xsd:complexType>
                 <xsd:sequence>
                    <xsd:element name="relatie" type="relatie" minOccurs="1" maxOccurs="1"/>
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
        <xsd:element name="UpdateRelatieResponse">
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="relatie" type="relatie" minOccurs="1" maxOccurs="1"/>
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
        <xsd:complexType name="relatie">
            <xsd:sequence>
                <xsd:element name="id" type="xsd:int" />
                <xsd:element name="naam" type="xsd:string" />
                <xsd:element name="telefoonNummer" type="xsd:string" />
                <xsd:element name="mobielNummer" type="xsd:string" />
                <xsd:element name="email" type="xsd:string" />
                <xsd:element name="rekeningNummer" type="xsd:string" />
                <xsd:element name="btwNummer" type="xsd:string" />
                <xsd:element name="kvkNummer" type="xsd:string" />
                <xsd:element name="actief" type="xsd:boolean" />
            </xsd:sequence>
        </xsd:complexType>
    My generated WSDL looks something like this (for the update part as show above).
    <?xml version="1.0" encoding="UTF-8" standalone="no"?><wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:schema="http://www.mydomain.nl/gbs/service/ws" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="http://www.mydomain.nl/gbs/service/ws">
      <wsdl:types>
        <xsd:schema xmlns="http://www.mydomain.nl/gbs/service/ws" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.mydomain.nl/gbs/service/ws">
      [excluded xsd.. see above]
    </xsd:schema>
      </wsdl:types>
      <wsdl:message name="UpdateRelatieRequest">
        <wsdl:part element="schema:UpdateRelatieRequest" name="UpdateRelatieRequest">
        </wsdl:part>
      </wsdl:message>
      <wsdl:message name="UpdateRelatieResponse">
        <wsdl:part element="schema:UpdateRelatieResponse" name="UpdateRelatieResponse">
        </wsdl:part>
      </wsdl:message>
       <wsdl:portType name="Relatie">
        <wsdl:operation name="UpdateRelatie">
          <wsdl:input message="schema:UpdateRelatieRequest" name="UpdateRelatieRequest">
        </wsdl:input>
          <wsdl:output message="schema:UpdateRelatieResponse" name="UpdateRelatieResponse">
        </wsdl:output>
        </wsdl:operation>
      </wsdl:portType>
      <wsdl:binding name="RelatieBinding" type="schema:Relatie">
        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="UpdateRelatie">
          <soap:operation soapAction=""/>
          <wsdl:input name="UpdateRelatieRequest">
            <soap:body use="literal"/>
          </wsdl:input>
          <wsdl:output name="UpdateRelatieResponse">
            <soap:body use="literal"/>
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:service name="RelatieService">
        <wsdl:port binding="schema:RelatieBinding" name="RelatiePort">
          <soap:address location="http://localhost:8080/GBS/relatieService"/>
        </wsdl:port>
      </wsdl:service>
    </wsdl:definitions>
    When I run my test client written in Java, I can update any given relatie-object in my database.
    BUT when I, based upon this, generate a webservice stub using the "data -> connect to webservice" option. I get nicely generated code and the ability to to bind this to an form with which I can edit the data.
    Now for my PROBLEM:
    When I enter data in the form, during the process of transforming my Relatie object to XML, my entire object disappears. i.e. my object does NOT get transformed to XML for soap transport. Somewhere deep in the webservice code, it just gets ignored and I do NOT know why.
    What does work is retrieving data through a webservice. I can display a nice grid full of data from my database. What does not work is trying to send a domain object (Relatie) from Flex through a webservice and process it in java. The object is null on the java side. I can even see in the resulting soap envelope that nothing gets transformed to XML. See output below:
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                       xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
      <SOAP-ENV:Body>   
        <schema:UpdateRelatieRequest xmlns:schema="http://www.mydomain.nl/gbs/service/ws"/>  <!-- NO OBJECT -->
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Which should have been based upon the given WSDL (as the java client does send over the wire)
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
      <ns3:InsertRelatieRequest xmlns:ns3="http://www.mydomain.nl/gbs/service/ws">
        <relatie>
          <btwNummer>BTW</btwNummer>                                                                                            <!-- OBJECT PRESENT -->
          <actief>false</actief>
       </relatie>
      </ns3:InsertRelatieRequest>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Can anyone help me please. I'am stuck now.
    Kind regards,
    Marc

    Thanks for the detailed steps. I was able to reproduce the issue.
    I have logged an issue under 'WebService'. https://bugs.adobe.com/jira/browse/SDK-24841 . We will look into it.
    -Radhakrishna

  • XSL Transformation enconding problem?

    Hi everybody.
    I have a strange problem with JDev 9.0.2.829 concerning XSL Transformation:
    I just tried to make the step from JDev 3.2.3 to 9i, imported my existing project and set up JDev 9 for use with XalanJ2 and Xerces2. Everything works fine except:
    If I transform XML data to HTML that contains characters with an ASCII code >127 the whole string appears multiple times (2x or 3x) in the generated HTML.
    The data is read from an Oracle DB with UTF8 encoding, all my stylesheets and JSPs are UTF-8 encoded. JDev9 is set to use UTF-8 encoding.
    No compilation errors, no warnings.
    The same code and stylesheets work perfectly in JDev 3.2.3, deployed into Topmcat 4.0.4 and IBM WebSphere 3.5.4.
    What am I missing?
    Thanks in advance!
    Ralf Steppacher

    OK, I found the culprit.
    The JSPWriter is broken and produces the faulty output when fed with UTF-8 encoded character data. The problem disappears when all character data is buffered in a ByteArrayOutputStream first (without a special encodung schema given) and then written as a string through the JSPWriter.
    Ralf

  • Transformation Mapping Problem.

    Dear BI Experts,
    In 0FIAR_O03 to 0FIAR_C03 transformation mapping between 0DOC_DATE to 0CLAMONTH getting below error.
    Rule 58 (target field: 0CALMONTH, group: Standard Group): Info Object properties 0CALMONTH
    Message no. RSTRAN525
    Diagnosis
    The properties of the Info Object selected, 0CALMONTH, do not match the properties of the available source field.
    But in 3.5 update rule we are not getting any error. How to overcome transformation problem?
    And in 0FIAP_O03 to 0FIAP_C03 transformation 0DOC_DATE to 0CLAMONTH mapping done successfully.
    Getting data also.
    Why problem in 0FIAR transformation?
    Please give any solution.
    Regards
    Ramu

    Hi
    Is there is any routine was involved in that transformation , may it was stopping  to see the actual data, or some time when you migrate from 3.x flow to bi 7.0 flow you will face the transformation ask your abap guy to dedug the transformation so that you can easily now where the exact problem lies.
    Regards
    Madan Mohan

  • BPM: Messager Merge - Transformation Mapping Problem

    Hi,
    I tried an eg for time bound message merging (rather adding the items in the message).
    I am using a single datatype/message type.
    I was able to do the message mapping/interface mapping test by changing the source by making it 0 to unbounded and on the target I have same message type.
    This test was successful.I went ahead with the creating the scenario .I used a file adapter for picking up a file. The message monitor shows it is picked it and sent to the bpm.
    but the bpm part failed I checked in bpe monitor.It just says the mapping failed(transformation step).prior to which there is a receive step and container operation step which I used it for append the message .these are under a block and this block has a infinite loop for collecting the messages.There is a exception thrower(control step) which is for 2 minutes.this handled by a exception handler.and I guess my file was collected and send to the transformation step after this.but the thing is it never seems to appended since the two files are shown as two seperate error messages in transformation rather than as single ...
    Can somebody tell what could be the problem/where to look for the file.
    THnks

    I am getting more and more sure that the problem is at the block entry only...becoz i checked with direct entry to loop with a counter as loop breaker.it entered the loop and added the lines to the message with multiple lines.and once it hit the counter it came out and did the transformation successfully and sent it to the target system.
    when i add the block it fail right at the block entry for the first message after that all the messages show the green flag clicking on pe would show an empty queue...
    I guess the only step happening before the block is the correlation key creation i amn't sure if this is giving  some problems..
    NOW FOR THE BPM Steps....
    1.I created the correlation key.
    2.I put the block for the block i added the correlation key and exception name.
    3.I put the exception branch and the deadline branch
    4.on the exception branch i put the name of  the exception to be handled.
    5. on the deadline branch i put a 2 minute duration
    6.within the deadline branch i put the control which throws the exception...
    7.i added a loop to the block which is 1 = 1.in that there is a recieve step
    8.after that there is container operation which adds the message to the list...
    9.followed by outside the block i have a transformation and send steps..
    10.the block is in default mode.
    I tried creating the scenario completely again and again with different datatype etc to avoid the cache problem + workflow item locked problem...
    but no luckk
    THNks

  • Transform Effect problems when used with 3D layer's depth

    Here is my set up.
    I have PreComp with graphics illustrator imported layer with continuosly rasterise enabled.
    This graphics has a reflection underneath it. I made the reflection by applying Transform effect, setting offset to -100 and adjusting the Anchor point.
    As far as graphics move left to right (X,Y) there is no problem and Anchor point is in its place.
    As soon as I make the layer 3D and start changing depth values the reflection starts to jump around.
    My guess is - it happens because anchor point is a constant value and since reflection is based off its value it does not follow the base of the graphics. Purhasps there is a code snippet which need to be used to link the Anchor Point value to the Zoom Value? Adjusting Anchor point values with key frames proved too difficult.
    In another words I would like to keep the reflection at a constant distance from the base of the graphics and once the graphics move out or in the reflection does not follow.
    I PreComposed this graphics and imported it into the new Compostion and applied XY and Z movement using camera and Null layers. It was the same effect and reflection did not stick to the base of the graphics.
    I need to keep Collapse Transformation enabled on all the consecutive Comps/PreComps to make sure the vector art renders at high quality.
    What would be a proper way to make a reflection of a 3D layer/preComp  in the Comp where movement controlled with Camera and Null layers, with Continuosly Rasterise/Collapse Transformations enabled?

    Great! At least I know not to spent my time in a wrong direction.
    Two questions:
    Do I need to enable "Collapse Transformations" in the final rendering Comp in order to keep "Continuously Rasterize" settings within the nested PreComps enabled (for illustrator files rendering sharp). I have a few nested preComps and originally activated "Continuously Rasterize" throughout the project in all of them.
    "How" to create reflections seem clear from your comment. Do not use any effects but rather create a copy of a layer I would like to have a reflection of and scale it to -100. "When" seems to be a mystery. Should I apply reflection in the very first preComp or very last or the one where I create all the major animation for my graphics?

  • Transform XML Problem

    Hello,
    my java application can generate one raw xml document, then i use javax.xml.transform.TransformerFactory and Transformer to transform with one stylesheet.
    The problem is that the final xml document has some strange letters inside. for example,
    in the raw xml:
    entspannt-ironischer Thriller mit genial verwobener Story. USA 2003. 102 Min.
    in the result xml:
    entspannt-ironischer Thriller mit genial verwobener Story.&#13;&#10;USA 2003. 102 Min.
    another prolem is that there are �, �, � in both xml documents. if i open the xml file in xml spy, i can read �,�,� properly, but if i open them in other editors, it will not be shown properly.
    i am not sure where the problem should be. just dont know how to do further. if any one has the same experience, please help me to solve .
    Thanks a lot.

    ok.
    I have solved the problem with �, �,�. i just put the encoding attribute in the stylesheet.

  • Transformation XML problem.

    Hello!
    I have very easy java code for transform XML document (sorry, for print out XML without changes):
    parser = new DOMParser();
    parser.setPreserveWhitespace(false);
    // parser input XML file
    xmlURL = createURL(args[0]);
    parser.parse(xmlURL);
    xml = parser.getDocument();
    // print the transformed document
    xml.print(System.out);
    But if I have DTD in XML then JDK write many errors: SIGBUS 10* bus error
    If XML does not contains DTD then java code work successfuly.
    I use JDK 1.2.2, xmlparserv2 for Sun Solaris

    Try turning off your JIT.
    I've only ever seen core dumps when it was a JIT problem.

  • Transformation activation problem

    Hello All,
    after saving a transformation it results a failure of the system.
    No errors are displayed but something goes wrong: after saving the transformation, it looks like it is saved successfully (as I can read on the left bottom) while simultaneosly I see that the transformation is still not saved (as I can read under Version).
    Moreover even if I try to delete a Rule it still remains on the screen.
    Saving one more time the transformation leads to the same result.
    No further updates are saved even if the system replies with "Transformation saved successfully".
    Thanks for any help.

    Hi,
          Actually this is a Patch related problem. May be you are using patch SAP_BW at level 15 or less. I have faced the similar problem there is a SAP note delivered. Refer this Note and Apply 1085318.
    Regards
    Karthik

  • Transformation transport problems when containing routine

    Hi Gurus,
    I'm facing a transport problem.
    When i want to transport a transformation that contains routines, the transport says syntax error in routine. The routine in DEV is tested and correct. I realised, that the transport does not bring the routines. After transport, i open the transformation, and the routines contain the default routine: RESULT = .
    I found some answers in some posts, but no exact answer how can i get rid of this transport problem. I don't like copy - paste into prod system with manually editing....
    If you have any idea, please let me know.
    Thanks
    Laszlo

    Thanks for your help, it worked now, but i think it should work without owerwrite originals. Sometimes it seems that the routines is not included in the transport request, when i modify a routine in a transformation.
    But thanks anyway, problem solved now

  • Weblogic 6.0 XSL Transformation whitespace Problem

    I am having a problem with the HTML that is coming out of my XSL
    transformation in Weblogic 6.0, service pack 2.
    The problem occurs in a place where the </TD> tag is preceded by a
    carriage return in the HTML code that is generated. This causes an
    extra blank line in the browser (the famous "whitespace bug" in the
    browsers).
    I was able to control this when I created my own HTML by moving the
    </TD> tag up to the previous line. I no longer have this control
    since I am using XML and XSL - Weblogic is doing the transformation to
    HTML for me. Even if I move the </TD> tag in the XSL, the HTML that
    is outputted reformats it and puts the </TD> tag on the next line.
    Has anyone else seen this problem? I'm wondering if there is some way
    that you can tell the transformer to concatenate the HTML?
    Any info would be appreciated.
    Thanks,
    Larry

    [att1.html]
              

  • Mulitple Message Transformation BPM Problem

    I am getting a map failure exception because of the following reason (see below) and am not sure what to do about it. 
    I am a BPM process and have a received a populated Request Message, mapped the Request Data into a Bapi request (via BPM Transformation), Synchronously called the Bapi (via BPM Send), and next mapped the data from the Bapi Response and Original Request into a single Response message (2 messages into 1 message).  I am getting a map failure when I am sending the two messages (Bapi Response and Original Request) into the Map process.  It appears as the original Request data is lost (populated data is gone)and this is why the map is failing.  I have tested the map independently and have no problems.  Any suggestions?

    Hi Manoj,
    Have you entered the correlation correctly.. (the condition for collecting IDOCS, a primary key in most cases)
    When u r collecting Idoc Debmas, ( Customer Master i believe), u should have the mappings as IDOC XSD to IDOC and then IDOC to txt conversion..  Am I right ?
    inbound interface: target structure (txt)
    outbound interface : idoc
    abstract interface : for collecting multiple  idocs..
    mappings would be like this :
    IDOC to IDOC XSD and
    IDOC XSD to Txt structure .
    Things to look out for while developing the interface:
    Occurences and BPM data, like selecting multiline and defining correlation.
    You should recheck the container for any discrepancies.
    I am sending you two links (as there's some information missing, to identify your problem)
    IDOCs (Multiple Types) Collection in BPM by Pooja Pandey:
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm
    and Collecting IDocs without using BPM by Stefan Grube:
    /people/stefan.grube/blog/2006/09/18/collecting-idocs-without-using-bpm
    Check the first one, You will get some idea, where there might be a problem.
    You can also do the same without using BPM as Stefan has so elaborately explained.
    Alternatively, you can also refer to this URL :
    www saptechnical com/Tutorials/XI/CollectMultipleIDocs/Collect1.htm
    Happy Developing..
    regards,
    Abhi..
    Edited by: Abhisek on May 10, 2009 12:26 AM
    Edited by: Abhisek on May 10, 2009 12:29 AM

  • XSL transform sort problem in 1.5

    I am having problems applying an XSL transform to some XML data I have under the 1.5 JRE.
    Under 1.4.2 (and in several tools and browsers), the transform works correctly. In 1.5,
    <xsl:sort...> directives don't seem work correctly. Here's a simplified version of my
    code. Assume that the generateXMLReport outputs an XML document to a stream.
    public void generateHTMLReport( OutputStream out, String strXslSheet ){
         File f = new File( strXslSheet );
         if( f.exists() ){
              ByteArrayOutputStream bos = new ByteArrayOutputStream();
              // Generate the XML data we will work from
              generateXMLReport( bos );
              bos.flush();
              // Convert the XML to HTML by applying an XSL transform
              ByteArrayInputStream bis = new ByteArrayInputStream( bos.toByteArray() );
              TransformerFactory tFactory = TransformerFactory.newInstance();
              Transformer transformer = tFactory.newTransformer( new StreamSource( strXslSheet ) );
              transformer.transform( new StreamSource( bis), new StreamResult( out ) );
    }Here's an XSL template:
    <xsl:template name="totalTable">
         <xsl:param name="matchSet"/>
         <xsl:variable name="maxValue">
         <xsl:for-each select="$matchSet">
         <xsl:sort select="total" data-type="number" order="descending"/>
         <xsl:if test="position() = 1">
              <xsl:value-of select="number( total )" />
             </xsl:if>
             </xsl:for-each>
             </xsl:variable>
    </xsl:template>If I remove the sort directive, I get the first value in the list, as I would expect.
    Other 'for-each' loops behave similarly. The problem in 1.5. When I run against 1.4.2,
    the transformation works fine.

    Show us the code please. Not the WHOLE code, just an example that demonstrates what you're seeing. I've never seen the problem you're encountering, but I rather doubt that it's a failing in the api. More than likely it's a semantic of how you're doing the listener but that's a guess on my part. Let's see what you have and go from there.
    PS.

  • Transform Activity Problem - The Target is mismatched from the one in ...

    Hi everyone,
    When I double click Transform activity, It pop up an error message said "The Target is mismatched from the one in transformation file".
    Could anyone tell me how to solve the problem???
    Thanks....
    Elvis.

    You transform the result into some bpel-variable.
    The mismatch may be between the type of that bpel-variable compared to the type declared as the target of the transformation. The target is given by an xsd-reference in the xml-comments in the header of the xslt-file (source view).
    Hope this helps.
    /CadB

Maybe you are looking for

  • LE7 crashed?

    I'm posting this for a friend who's LE7 just crashed. He got the following messages: error readi/writing file "com.apple.logic.espress.cs'' logical end-of-file reached during read operation any ideas on what caused this or how to fix it?

  • Lost right click meny Acrobat X Win7 64 latest update!

    Running Acrobat X Pro with Windows 7 64bit. Installed correctly and included Windows 7 right click menu to convert files, etc. Notified that a security update available, so I installed it and restarted system. After restart, Acrobat functions no long

  • ICloud doesn't work with Office 2013

    I have a Windows 7 Enterprise x64 machine with Office 2013 Pro Plus x64. iCloud installs fine, but when I try to enable "Mail, Contacts, Calendars, & Tasks with outlook" and hit Apply I get: Also in outlook I go to File -> Options -> Add-Ins and the

  • Headphones not disconecting on N8

    Everything was working fine on my N8, but it just started to select an accessory as defult and after that is selected, it won't go back to normal.  If you connect the headphones, and they dissconect them, it keeps thinking that they are connected and

  • ICloud, iPhone and macbook

    How to set up icloud and have both iphone and macbook in sync? Have followed set up including buying and installing mountain lion but still can't see my iphone updating if I change for example something in iCal on mac and vice versa. Have I missed so