XML Messages generated by XI using namespace aliases...

I have a question regarding the XML messages that are generated by XI as part of the mapping, etc.
I receive e.g. the following XML document in the payload of my message sent to a legacy system:
<ns1:ArticleRequest xmlns:ns1="http://www.basis.ko.com/XMLSchemas/ArticleRequest/2.0" function="retrieve">
     <ns1:ArticleNumber>109</ns1:ArticleNumber>
</ns1:ArticleRequest>
Unfortunately the system cannot handle the ns1: prefixes correctly and would prefer if the XML message were using the default namespace.
Can XI be configured to produce the XML using the default namespace (in case the interface has just one namespace this should be semantically identical)
<ArticleRequest xmlns="http://www.basis.ko.com/XMLSchemas/ArticleRequest/2.0" function="retrieve">
     <ArticleNumber>109</ArticleNumber>
</ArticleRequest>
and furthermore, is there a way to include the xsi:schemaLocation attribute in the resulting XML document?
like this:
<ArticleRequest xmlns:ns1="http://www.basis.ko.com/XMLSchemas/ArticleRequest/2.0" function="retrieve" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.basis.ko.com/XMLSchemas/ArticleRequest/2.0 ArticleRequest.xsd" >
     <ArticleNumber>109</ArticleNumber>
</ArticleRequest>
kind regards for your help,
Peter

Hi Udo,
I'm not sure how the XSL Mapping can remove the namespace alias and exchange it with default namespace. The xsl:copy-of just does a duplication of the selected node. Do you have any additional input on this one?
Regarding the second hint, 'manipulate the field XML namespace in the message type', I could not find a place where to do this - as I am using 'External Definition' (XSDs imported into XI). Still when I change the namespace I will always receive the prefix in front of each element.
Any additional help is highly appreciated.
regards,
Peter

Similar Messages

  • Idocs are not equal to XML message generated

    hi ,
            i am facing problem when i using XI.its not generated idocs equal to XML message generated.

    idocs equal to XML message
    Do u mean that in ur file to idoc scenario, the no of messages sent by file is not equal to no of idocs generated? If yes, then first check in tcode sxmb_moni at XI for presence of message and check for error there
    Please describe ur scenario a bit.
    Regards,
    Prateek

  • Is there a way to change the xml message generated by JDeveloper Proxy

    Hi,
    I have created jax-ws proxy client using JDeveloper 10g. I need to change the generated xml message tags. I need to remove the namespace prefix tags from the xml message. For ex: the current request message looks like this:
    <ns0:EMPLOYEE_NAME>John</ns0:EMPLOYEE_NAME>
    should be
    <EMPLOYEE_NAME>John</EMPLOYEE_NAME>
    without the nso prefix.
    How can I do that? Please help me.
    Thanks.

    To original poster, please just select "Problem Solved" to help any future questions about this.
    Is there a way to change  the text message ringer? No.
    End of thread 

  • How to read XML message present in Table using PL/SQL?

    Hi,
    How to read XML content present in Table using PL/SQL .And is it possible to parse the xml uisng xslt and insert xml output in same table again ?
    Thanks!

    Late reply, but hopefully better late than never.
    You can possibly do it all via a single SQL statement, such as {message:id=4232077}
    XMLTable Syntax can be found at http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions228.htm#CIHGGHFB (for 10.2 users) else find your correct version at http://www.oracle.com/technology/documentation/index.html

  • Response XML - How to remove non-used namespaces ?

    Hey guys, I have a proxy service with the following transformation:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0"
    xmlns:inf="http://dfs.us.dell.com/Infolease"
         xmlns:xsl="http://www.w3.org/1999/XSL/Transform">               
         <xsl:template match="/">          
              <xsl:if test="Envelope/Body/Response/Quotes">
                   <xsl:variable name="oNodo" select="Envelope/Body/Response/Quotes"/>          
                   <inf:GetBuyoutQuoteDetailsResponse xmlns:inf="http://dfs.us.dell.com/Infolease">
                        <inf:QtKey><xsl:value-of select="$oNodo/@pk"/></inf:QtKey>
                        <inf:QtAmtQuotedx><xsl:value-of select="$oNodo/QtAmtQuoted/text()"/></inf:QtAmtQuotedx>                    
              <inf:QtBuyoutDate><xsl:value-of select="$oNodo/QtBuyoutDate/text()"/></inf:QtBuyoutDate>
              <inf:QtExpirationDate><xsl:value-of select="$oNodo/QtExpirationDate/text()"/></inf:QtExpirationDate>
              <inf:QtQuotedDate><xsl:value-of select="$oNodo/QtQuotedDate/text()"/></inf:QtQuotedDate>
              <inf:QtRcvbBalance><xsl:value-of select="$oNodo/QtRcvbBalance/text()"/></inf:QtRcvbBalance>
              <xsl:element name="inf:QtBuyoutType">
                   <xsl:attribute name="pk"><xsl:value-of select="$oNodo/QtBuyoutType/@pk"/></xsl:attribute>
                   <xsl:element name="inf:BuyDefTypeDesc"><xsl:value-of select="$oNodo/QtBuyoutType/BuyDefTypeDesc"/></xsl:element>
              </xsl:element>                                                       
                   </inf:GetBuyoutQuoteDetailsResponse>
              </xsl:if>               
         </xsl:template>     
    </xsl:stylesheet>
    This is the response of the service after the proxy finishs:
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
    <inf:GetBuyoutQuoteResponse xmlns:inf="http://dfs.us.dell.com/Infolease">
    <inf:QtKey xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">200-1122247-018*34</inf:QtKey>
    <inf:QtAmtQuotedx xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">8195.82</inf:QtAmtQuotedx>
    <inf:QtBuyoutDate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">2011-10-04</inf:QtBuyoutDate>
    <inf:QtExpirationDate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">2012-12-29</inf:QtExpirationDate>
    <inf:QtQuotedDate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">2011-10-04</inf:QtQuotedDate>
    <inf:QtRcvbBalance xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">7021.83</inf:QtRcvbBalance>
    <inf:QtBuyoutType pk="BUYOUT*34"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <inf:BuyDefTypeDesc>EARLY PURCHASE-10%-TRANSACTION</inf:BuyDefTypeDesc>
    </inf:QtBuyoutType>
    </inf:GetBuyoutQuoteResponse>
    </soapenv:Body>
    </soapenv:Envelope>
    How do I remove these XSD and XSI namespaces? I haven't referenced them..
    Thanks in advance,
    Davinod

    Hi,
    Please remove the 3 non-exists DC from environment using the metadata clean-up process using script from below article. then manually delete the records from DNS management console as given below.
    https://gallery.technet.microsoft.com/scriptcenter/d31f091f-2642-4ede-9f97-0e1cc4d577f3
    Manual steps to clear the records.
    Dnsmgmt.msc [Dns Management]
    A.Expand the forward lookup zones\_msdcs folder
    i. Make sure only the actual domain controllers are listed, delete wrong Alias recordsremove wrong name server records
    ii. Select the container [forward lookup zones\_msdcs.domain.com\dc\_sites_\sitename\_tcp] > delete incorrect _ldap and _kerberos records are listed.
    iii. Select the container [forward lookup zones\_msdcs.domain.com\dc\_tcp] and delete incorrect _ldap and _kerberos records
    iv. Expand the [forward lookup zones\_msdcs.domain.com\domains\guid\_tcp] and delete incorrect _ldap entries
    v. Select [forward lookup zones\_msdcs.domain.com\gc] – delete incorrect HostA records
    vi. Expand the [forward lookup zones\_msdcs.domain.com\gc\_sites\sitename\_tcp] – delete incorrect _ldap entries
    vii.Select the [forward lookup zones\_msdcs.domain.com\gc\_tcp] – delete incorrect _ldap entries
    viii. Select the [forward lookup zones\_msdcs.domain.com\pdc\_tcp] – delete incorrect _ldap entries
    B.Expand the forward lookup zones\domain.com folder
    i.Delete Host(A) records of dc’s which are non-existant.
    ii.Correct the NameServer (NS) records
    iii. Follow steps similar to ’ A ii ‘ >> ‘ A viii’
    · Dssite.msc [Sites and Services]
    A.Expand the [Sites\Sitename\Servers] – delete incorrect server’s
    B.Delete incorrect subnet configurations [Sites\Subnets]
    C.Delete incorrect site links [Sites\IP]
    · Make sure the domain controllers are pointing to the correct dns servers in tcp\ip settings.
    · Force replication – ‘repadmin /syncall’

  • Triggering and view XML messages in SAP AMI

    We have  configured the AMI. Also setup the AMI enabled devices.
    We have created Meter Reading Orders for the periodic meter reading as bulk .
    But the creation of MROs does not trigger creation of XML messages.
    We found the Enterprise Service responsible for meter reading order Request Smart Meter Meter Reading Document Creation as Bulk SmartMeterMeterReadingDocumentERPBulkCreateRequest_Out
    But the XML messages are not getting generated on MRO creation. Also no XML message generated on AMI enabled device creation. Would like to know where we can view the generated XML and also trouble shoot.
    Thanks in advance for the information
    Vijay

    Hi,
    Thanks a lot for the informaiton , I could go into SXMB_MONI  with date and time stamp to view the XML message, still i am not able to view it.
    Is there any thing specific needs to be configured to have the XML message in SXMB_MONI
    The process we are following is we are creating periodic meter reads and using the transaction ELMU Customized to our needs to trigger the SmartMeterMeterReadingDocumentERPBulkCreateRequest_Out . Are we following the right approach.
    Can you provide the check points.
    thanks,
    Vijay
    Edited by: vijay gunti on May 26, 2010 8:39 AM
    Edited by: vijay gunti on May 26, 2010 8:46 AM
    Edited by: vijay gunti on May 26, 2010 8:49 AM

  • [svn] 1313: Fix for the use namespace problems we've been having with ASC ( I hope).

    Revision: 1313
    Author: [email protected]
    Date: 2008-04-20 09:41:41 -0700 (Sun, 20 Apr 2008)
    Log Message:
    Fix for the use namespace problems we've been having with ASC (I hope). The problem was that the use directive was being defined after we had called finish package. The UseDirectiveNode has a pkgdef ptr, and does different things depending if that ptr is null or not. It should not be null when the UseDirective is inside the package - but since we were generating the UseDirectiveNode after we had called finishPackage the UseDirectiveNode didn't have it's pkgdef ptr set, and so things went awry as the package didn't get set up with all the correct open namespaces. I haven't tested this in authoring/flex but I am pretty sure that this will fix all the problems we're seeing.
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/Parser.java

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • How to trigger XML messages for FWO

    Hello Experts,
    I’d like to trigger a XML outbound message after creation of an air forwarding order (FWO) in my TM system. It could not be a confirmation. I need this XML to provide the results of charges calculation in a legacy system (B2B communication).
    Could someone help me in this?
    Regards,
    Alberto.

    Dear Alberto,
    You can follow below steps to achive the same.
    1 You have to setup PPF framework.
    A. You will be having output profile (which is for processing the actions in background) assigned to Air FWO document type.
    B.Go to PPF customizing (Tcode - SPPFCADM) -> Select the Action profile -> Create Action definition ->choose the processing time as 'Processing when saving the document'-> processing type as 'Method call' -> Create the BADI implementation for definition EXEC_METHODCALL_PPF''. Here you can check if any filter before you trigger XML Message.
    2.You have to create a custom Proxy and proxy class to generate the XML message and send to target system.
    You will call this proxy class in BADI implementation EXEC_METHODCALL_PPF and build the XML message with required Charges data.
    After all the setup is done, you can test and make sure you have XML message generated in SXI_MONITOR / SXMB_MONI t-code.
    Let me know any challenges while doing it.
    Thanks,
    Bharath.

  • [svn:fx-trunk] 7743: Moving away from using namespace qualifiers in most cases in the SDK.

    Revision: 7743
    Author:   [email protected]
    Date:     2009-06-11 06:53:10 -0700 (Thu, 11 Jun 2009)
    Log Message:
    Moving away from using namespace qualifiers in most cases in the SDK.  We've run into a few cases now where the use of qualifiers in code that is called excessively can slow things down.
    Bugs: SDK-21337
    Reviewer: Ryan, Paul
    QE Notes: None
    Tests: Ran several random Mustella test groups, checkintests.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21337
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FlexNativeMenu.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/HTML.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/fileSystemClasses/FileSys temDataGridNameColumnRenderer.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemChildrenLis t.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemRawChildren List.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/Window.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/WindowedApplication. as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/Application.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/ButtonBarButton.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/DataGroup.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/DropDownList.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/RadioButton.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/RadioButtonGroup.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/SkinnableContainer.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/DropDownCont roller.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/ItemRenderer .as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/SkinnableCom ponent.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/Slider.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/core/SpriteVisualElement.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AddAction.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AnimateTransform.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/MotionPath.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/SetActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/supportClasses/GraphicEleme nt.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/skins/default/ErrorSkin.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/skins/default/FocusSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/collections/ModifiedCollectionView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Form.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormItem.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/GridRow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HDividedBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TitleWindow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/CanvasLayou t.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintC olumn.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintR ow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/PopUpButton.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Tree.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridColu mn.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridItem Renderer.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/textClasses/TextRange.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/treeClasses/DefaultDataDescr iptor.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/treeClasses/HierarchicalColl ectionView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponentGlobals.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/AddChildAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/CompositeEffect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Dissolve.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Effect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/EffectInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/EffectManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/MaskEffect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/ActionEffectIns tance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AddChildActionI nstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AnimateProperty Instance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/CompositeEffect Instance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/DissolveInstanc e.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/FadeInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MaskEffectInsta nce.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MoveInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/RemoveChildActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SetPropertyActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SetStyleActionI nstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SoundEffectInst ance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/TweenEffectInst ance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/ZoomInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/formatters/DateFormatter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/GradientBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/GradientStroke.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/LinearGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradientStroke.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/InitLocalConnection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/MainLocalConnection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemChildrenList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemRawChildrenList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/dragClasses/DragProxy.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/marshalClasses/MarshalPopUpD ata.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/MarshallPlan.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/preloaders/Preloader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceBundle.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DateChooserIndicator.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PanelSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpButtonSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpMenuIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/SwatchSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/RemoveChild.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/CSSStyleDeclaration.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/LoaderUtil.as
        flex/sdk/trunk/frameworks/projects/framework_textLayout/src/mx/controls/dataGridClasses/T LFDataGridItemRenderer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/Operation.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.vm

    Revision: 7743
    Author:   [email protected]
    Date:     2009-06-11 06:53:10 -0700 (Thu, 11 Jun 2009)
    Log Message:
    Moving away from using namespace qualifiers in most cases in the SDK.  We've run into a few cases now where the use of qualifiers in code that is called excessively can slow things down.
    Bugs: SDK-21337
    Reviewer: Ryan, Paul
    QE Notes: None
    Tests: Ran several random Mustella test groups, checkintests.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21337
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FlexNativeMenu.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/HTML.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/fileSystemClasses/FileSys temDataGridNameColumnRenderer.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemChildrenLis t.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemRawChildren List.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/Window.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/WindowedApplication. as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/Application.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/ButtonBarButton.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/DataGroup.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/DropDownList.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/RadioButton.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/RadioButtonGroup.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/SkinnableContainer.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/DropDownCont roller.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/ItemRenderer .as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/SkinnableCom ponent.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/Slider.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/core/SpriteVisualElement.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AddAction.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AnimateTransform.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/MotionPath.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/SetActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/supportClasses/GraphicEleme nt.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/skins/default/ErrorSkin.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/skins/default/FocusSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/collections/ModifiedCollectionView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Form.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormItem.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/GridRow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HDividedBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TitleWindow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/CanvasLayou t.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintC olumn.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintR ow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/PopUpButton.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Tree.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridColu mn.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridItem Renderer.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/textClasses/TextRange.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/treeClasses/DefaultDataDescr iptor.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/treeClasses/HierarchicalColl ectionView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponentGlobals.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/AddChildAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/CompositeEffect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Dissolve.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Effect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/EffectInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/EffectManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/MaskEffect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/ActionEffectIns tance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AddChildActionI nstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AnimateProperty Instance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/CompositeEffect Instance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/DissolveInstanc e.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/FadeInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MaskEffectInsta nce.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MoveInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/RemoveChildActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SetPropertyActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SetStyleActionI nstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SoundEffectInst ance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/TweenEffectInst ance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/ZoomInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/formatters/DateFormatter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/GradientBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/GradientStroke.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/LinearGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradientStroke.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/InitLocalConnection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/MainLocalConnection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemChildrenList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemRawChildrenList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/dragClasses/DragProxy.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/marshalClasses/MarshalPopUpD ata.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/MarshallPlan.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/preloaders/Preloader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceBundle.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DateChooserIndicator.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PanelSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpButtonSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpMenuIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/SwatchSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/RemoveChild.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/CSSStyleDeclaration.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/LoaderUtil.as
        flex/sdk/trunk/frameworks/projects/framework_textLayout/src/mx/controls/dataGridClasses/T LFDataGridItemRenderer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/Operation.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.vm

  • XML messages over Internet with JMS?

    Hello everyone,
    I was just wondering, is it possible to send XML messages over the internet using JMS?? And if so, where can I get some resources about that, and about the nessecary architecture?
    If this is not possible, what other messaging service would you suggest?? I am building a multiuser application, in which users communicate via some application server. Is JMS not an overkill for this?? Since there is no real B2B here, but just users who send a-synchronous messages? Is there some lighter alternative??
    Thanks!!
    Jan Willem Tulp

    Jan,
    if QoS is important to you then JMS may not be overkill. Most appservers like Borland, IONA, HP/Bluestone and BEA provide JMS facilities already. What appserver are you using? Does it support JMS?
    There are many cases of companies doing what you want to do, both internally and externally with their partners over the Net.

  • Ns0 prefix not attached in the xml structure generated using Content Master

    Hello Everyone,
    I am parsing a tabdelimited file using the Content Master Studio.
    I am providing the message type xsd as the schema file.
    After writing all the parsing logic the xml file which is getting generated is in the below mentioned format
    <?xml version="1.0" encoding="UTF-8"?>
    <ReadExcel xmlns="urn:readexcel.com">
    <ROW>
    <NAME>Rahul</NAME>
    <AGE>24</AGE>
    <Location>Mumbai</Location>
    </ROW>
    <ROW>
    <NAME>Vinit</NAME>
    <AGE>25</AGE>
    <Location>Mumbai</Location>
    </ROW>
    </ReadExcel>
    but since the ns0 prefix is not getting attached the mapping program is failing in XI.
    <ns0:ReadExcel xmlns:ns0="urn:readexcel.com">
    I guess the people who have used Content master studio might have also faced the similar problem.
    Please suggest me some solution
    Thanks and Regards
    Rahul Nawale

    Hi Rahul,
    the namespace prefic ns0 is only a placeholder for the namespace urn:readexcel.com. This namespace can also be represented by another prefix or even by the empty prefix.
    E.g. the document you have pasted is totally equivalent to the document
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:ReadExcel xmlns:ns0="urn:readexcel.com">
    <ns0:ROW>
    <ns0:NAME>Rahul</ns0:NAME>
    <ns0:AGE>24</ns0:AGE>
    <ns0:Location>Mumbai</ns0:Location>
    </ns0:ROW>
    <ns0:ROW>
    <ns0:NAME>Vinit</ns0:NAME>
    <ns0:AGE>25</ns0:AGE>
    <ns0:Location>Mumbai</ns0:Location>
    </ns0:ROW>
    </ns0:ReadExcel>
    However, it is not possible to model this document via a Message type in the Integration Repository. The XML instance from a Message type will look like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:ReadExcel xmlns:ns0="urn:readexcel.com">
    <ROW>
    <NAME>Rahul</NAME>
    <AGE>24</AGE>
    <Location>Mumbai</Location>
    </ROW>
    <ROW>
    <NAME>Vinit</NAME>
    <AGE>25</AGE>
    <Location>Mumbai</Location>
    </ROW>
    </ns0:ReadExcel>
    Indeed, in the root tag all documents are equivalent (it has name ReadExcel and namespace urn:readexcel.com). But for the subelements (ROW, NAME,...) there is a fundemental difference. In your example (and my first example) these elements have namespace urn:readexcel.com, too. In my second example those elements have empty namespace. Indeed, all XML documents modelled as Message types have an empty namespace for all non-root elements.
    Message types are simply not suitable to model a document as you have posted. However, there is simple help. Just download the schema for the Message type to your local file system. Add attribute elementFormDefault="qualified" to the root tag of that schema. Upload that schema as External Definition. This External Definition will have one External Message. Define your mapping using that schema.
    For more background on that topic I recommend reading the specifications on XML namespaces and XML schema.
    Greetings
    Stephan

  • Change the default namespace in soap message generated by webservice proxy

    I have a requirement where the default namespace generated by the webservice proxy has to be changed. For example, below is a soap request message generated by the proxy:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:ns0="http://siebel.com/asi/"
    xmlns:ns1="http://www.siebel.com/xml/getAllSecurityValuesResponse/PS"
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <env:Header>
    <wsse:Security
    xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
    xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    env:mustUnderstand="1"
    xmlns:xmlns="http://schemas.xmlsoap.org/soap/envelope/">
    <wsse:UsernameToken
    xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
    xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <wsse:Username>kaoliver</wsse:Username>
    <wsse:Password
    Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">db2</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    </env:Header>
    <env:Body>
    <ns0:SearchSecurityServicegetAllSecurityValues_1>
    <Login>kaoliver</Login>
    </ns0:SearchSecurityServicegetAllSecurityValues_1>
    </env:Body>
    </env:Envelope>
    In the above message, I want to change the oasis namespace to a different namespace. Where are the default namespaces defined in the proxy classes generated by Jdev so that I can change them?
    Thanks in advance,
    Warm Regards,
    Shashi Anand B

    >
    If I define a prefix P2L in the expression editor to correspond to "http://foo.com/namespace/business", I'm able to reference the ExecuteResponse element as "./P2L:ExecuteResponse", but then I get stuck.
    If I try use a Rename action to change the namespace for "./P2L:*", only the ExecuteResponse element is renamed to <sof:ExecutResponse xmlns:sof="http://foo.com/namespace/proxy">. Upstream in the calling application, there's an XML stream reader exception because (I assume) ExecuteResult is not found and parsed.
    >
    You pattern "./P2L:\*" matches just one element so it's ok that the payload's namespace wasn't touched. If you want to rename namespace for all elements try "//P2L:*". However, I'm not sure whether this is what you want. Try do describe what you do, what you want and what you get instead.
    >
    I also tried using a Replace action against "./P2L:ExecuteResponse/@xmlns" to replace its contents with "http://foo.com/namespace/proxy". I also tried "./P2L:ExecuteResponse/@P2L:xmlns". Neither worked.
    >
    I think it's not a good approach to replace content of xmlns as this attribute is not a common xml attribute.

  • Can we define a namespace in the B2B for the XML which generates for EDI

    Hi All,
    I have defined an EDI 856 document which is a inbound. When I give a input EDI message the translation happens and it generates an XML message. So, in the XML message that is generated it gives me a junk namespace.
    <Transaction-856 xmlns="NS_31CA8D0F33324F95A0BF15D85539C27E20081212182610" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" XDataVersion="1.0" Standard="X12" Version="V5020" CreatedDate="2009-01-06T15:56:35" CreatedBy="ECXEngine_837" GUID="{C0F6BEDD-356C-41BA-A89F-775061F2EFAF}">
    So, is there a way in B2B where we could give the namespace of my choice .And that namespace would be generated in the XML File.
    Thanks in advance.
    Regards,
    Kaavya

    Hi Dheeraj,
    The XSD which i am using already has the namespace in the format which you mentioned.
    Ex:-<xsd:schema xmlns="urn:oracle:integration:b2b:DCC1FCD2811C47748DF43A39F735F4F0" targetNamespace="urn:oracle:integration:b2b:DCC1FCD2811C47748DF43A39F735F4F0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.0" elementFormDefault="qualified">
    But still, while generating the XML file it gives the junk namespace.
    Regards,
    Kaavya

  • XML Message Not Generated in SUS SRM 4.0

    Hi !
      In Supplier Self Service(SUS) SRM 4.0 we did a  
      development for ASN creation through file upload .
      It's a <b>BSP</b> Application .
      Vendor uploaded the file for ASN creation .
      Their generated ASN No. which are in Standard tables.
      But for Some of them No XML Messages Genrated which  
      suppose to pass backend SAP R/3 .
      Anybody having any idea where exactly these XML 
      Messages are?   We have searched through SXMB_MONI  
      & checked all qRFCs.
      But unable to find their XML messages.
      Looking forward your ideas.
      Regards
      Sachin S M
    <b></b>
    Message was edited by: Sachin S M

    Hi,
    Can you tell me if the next scenario is possible with EBP 5.0 (WAS 6.40) but without XI.
    We need to develop an application to allow the supplier to upload an Invoice in XML and save it in EBP.
    I was thinking on using a BSP application with an input field to browse local PC and pick up an Invoice XML file. Then post the XML and parse it in the BSP application and save the invoice in EBP.
    Do you have any experience on it or some documentation?
    We have EBP 5.0 but don't want to install an SAP XI.
    Thank you

  • Problem using namespace of XML docs gerenrated by  XMLForm

    Hi community!
    I am facing a problem using namespace within a XSL stylsheet. Let me describe my problem:
    I am using the SAP XMLFormsBuilder within the SAP EnterprisePortal in order to provide a HTML based form for creating and editing specific XML documents. The data in the generated documents is finally presented as HTML using XSL Transformation.
    In the XMLFormsBuilder you define the Schema of the XML document and the HTML GUI of the form. The Schema document looks like below (extract):
    <?xml version="1.0" encoding="utf-8"?>
    <schema targetNamespace="http://www.xmlspy.com/schemas/orgchart"
            xmlns="http://www.w3.org/2001/XMLSchema"
            xmlns:xyz="http://www.xmlspy.com/schemas/orgchart" Version="6.3.0">
      <element name="commodity"
               default=""
               minOccurs="1"
               maxOccurs="1"
               ns="p2p"
               xmlns:p2p="http://www.portal.p2p.com">
        <complexType>
          <sequence>
            <element name="administrative_information"
                     default=""
                     minOccurs="1"
                     maxOccurs="1"
                     ns="p2p">
              <complexType>
                <sequence>
                  <element name="creation_date"
                           default=""
                           minOccurs="1"
                           maxOccurs="1"
                           type="date"
                           ns="p2p"/>
    As far as I understand, each element defined in the Schama belongs to the namespace "p2p" and this is exactly what I want.
    The XML document generated by the form looks like below (extract):
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="show_card.xsl"?>
    <commodity xmlns:xf="http://www.sapportals.com/wcm/app/xmlforms"
               xmlns:xsi="http//www.w3.org/2001/XMLSchema-instance"
               xsi:noNamespaceSchemaLocation="/etc/xmlforms/P2PCategoryCard_TEST/P2PCategoryCard_TEST-Schema.xml">
      <administrative_information>
        <creation_date>2005-07-04</creation_date>
    Consequently, the file "show_card.xsl" is the responsible XSLT stylesheet, which looks like this:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0"
                    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:p2p="http://www.portal.p2p.com">
      <xsl:output method="html"/>
      <xsl:template match="p2p:commodity">
        <html>
        <body>
          <h2>XSLT Test</h2>
          Creation Date: <xsl:value-of select="p2p:administrative_information/p2p:creation_date"/>
        </body>
        </html>
      </xsl:template>
    </xsl:stylesheet>
    The problem in the XSLT stylesheet is, that I want to access the XML document elements using their namespace. And this is exactly what does not work for me. On the other hand, if I remove the reference to the namespace:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0"
                    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:p2p="http://www.portal.p2p.com">
      <xsl:output method="html"/>
      <xsl:template match="commodity">
        <html>
        <body>
          <h2>XSLT Test</h2>
          Creation Date: <xsl:value-of select="administrative_information/creation_date"/>
        </body>
        </html>
      </xsl:template>
    </xsl:stylesheet>
    the stylesheet works fine, but for some technical reasons, which I don't want to explain here, I have to use the namespace when accessing the XML document elements.
    For technical reasons, I cannot change the format of the Schema document and also cannot change the format of the generated XML document. The only file I can change and control is the XSLT stylsheet.
    My question is now, in the case described above, if there is any way to use the namespace in the sytlesheet when accessing the XML elements?
    Any help is appreciated.
    Cheers,
    Adam Kreuschner

    duggal.ashish wrote:
    3. Some XML files contain a "iso-8859-1" character with character code 146 which appears like apostrophes but actually it is : - &#146; and the problem is that words like can&#146;t are shown as can?t by database.http://en.wikipedia.org/wiki/ISO8859-1
    Scroll down in that page and you'll see that the character code 146 -- which would be 92 in hexadecimal -- is in the "unused" area of ISO8859-1. I don't know where you got the idea that it represents some kind of apostrophe-like character but it doesn't.
    Edit: Actually, I do know where you got that idea. You got it from Windows-1252:
    http://en.wikipedia.org/wiki/Windows-1252
    Not the same charset at all.

Maybe you are looking for

  • How can i Reset my ipod touch without the home-button

    My ipod Touch resseting all the Time with out showing the home display. An other problem is, that my guarantee is over and my home-button is not working. So what should i do? Buy a new one or is there a chance to reset my ipod without home-button? Pl

  • Migrating Crystal reports 8.5 to XI

    Hi All, I have to migrate the Crystal Reports from 8.5 to XI which are being called from ASP and using procedures. Please guide: 1. What will be the steps for migration 2. What changes would be required at ASP level if we migrate the reports from 8.5

  • Playing iTunes to (an old) TV

    Okay, I am completely baffled... I'd like to play my downloaded iTunes movies and TV shows on my TV. The problem is that I have an old, pre-VGA TV. Apple seems not to make a Mini DisplayPort to video cable, so I can't hook my computer directly to my

  • BW-BCS

    Does anyone know the differences between SEM-BW based BCS, and SEM R3 Based BCS. Especially, the difference in use, and business use. So, When would I use BW based, and when R3 based? What are the reasons for using one or the other? Thanks in advance

  • After Effects CC 2014 won't start

    Whenever I try to launch AE CC 2014, the logo appears and right when it starts to bounce, it switches to Adobe Application Manager. Then it just stays there. Please help and thank you!