Namespace Vs Message

Hi All,
When the message has schema associated with it and between releases if the namespace associated with the schema only changes and if the basic structure of the message remains the same, is it considered as a Change of contract between releases, or is it okay to change the namespace alone, and would result as no change in the Contract?
Appreciate your input.
Thanks and Regards,
Vijay.

Hi Karsten,
If your namespace is created properly, it will create a change list for you with ExchangeFaultData and ExchangeLogData.
Try to activate the namespace first before you create any objects in it.
Regards.
Praveen

Similar Messages

  • Issue with XML namespace and Message structure

    Hi All,
    I am using Oracle SOA Suite 11.1.1.4. I have SOA web service application one-way messaging wherein I keep receiving messages from the third party. The issue I am facing is with the XML namespaces which conflicts with the third party's message structure. The details are as below.
    Our Web-service WSDL*
    <schema attributeFormDefault="unqualified" elementFormDefault="qualified"
    targetNamespace="http://amb.com/cad/RealTimeService"
    xmlns:cad="http://amb.com/cad/RealTimeService"
    xmlns:avl="http://schemas.com/asiapac/cad/datamodel/avl/1.0.0"
    xmlns:evn="http://schemas.com/asiapac/cad/datamodel/event/1.0.0"
    xmlns:uni="http://schemas.com/asiapac/cad/datamodel/unit/1.0.0"
    xmlns:dvt="http://schemas.com/asiapac/cad/datamodel/divert/1.0.0"
    xmlns:sui="http://schemas.com/asiapac/cad/datamodel/suppinfo/1.0.0"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://schemas.com/cad/datamodel/avl/1.0.0"
    schemaLocation="AvlCadSchema.xsd"/>
    <import namespace="http://schemas.com/cad/datamodel/unit/1.0.0"
    schemaLocation="UnitCadSchema.xsd"/>
    <import namespace="http://schemas.com/cad/datamodel/event/1.0.0"
    schemaLocation="EventCadSchema.xsd"/>
    <import namespace="http://schemas.com/cad/datamodel/divert/1.0.0"
    schemaLocation="HewsCadSchema.xsd"/>
    <import namespace="http://schemas.com/cad/datamodel/suppinfo/1.0.0"
    schemaLocation="SupplementalInformationCadSchema.xsd"/>
    <element name="AvlAuxData" type="avl:AvlAuxData" nillable="true"/>
    <element name="AgencyEvent" type="evn:AgencyEvent"/>
    <element name="Diversion" type="dvt:HospitalDiversionMessage"/>
    <element name="SupplementalInformation" type="sui:SupplementalInformation"/>
    <element name="UnitDetail" type="uni:UnitDetail"/>
    </schema>
    Using SOAP UI tool a HospitalDiversionMessage Request for the above WSDL will look like*
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:real="http://amb.com/cad/RealTimeService" xmlns:ns="http://schemas.com/cad/datamodel/divert/1.0.0">
    <soapenv:Header/>
    <soapenv:Body>
    <*real*:Diversion>
    <ns:Action>?</ns:Action>
    <ns:Open>?</ns:Open>
    <!--Optional:-->
    <ns:Location>?</ns:Location>
    <ns:Type>?</ns:Type>
    <ns:SubType>?</ns:SubType>
    <!--Optional:-->
    <ns:ExpiryTimestamp>?</ns:ExpiryTimestamp>
    <!--Optional:-->
    <ns:Comment>?</ns:Comment>
    <!--Optional:-->
    <ns:ItemNumber>?</ns:ItemNumber>
    <!--Optional:-->
    <ns:Notifications>?</ns:Notifications>
    <ns:CreatedTerminal>?</ns:CreatedTerminal>
    <ns:CreatedTimestamp>?</ns:CreatedTimestamp>
    <!--Optional:-->
    <ns:ClosedBy>?</ns:ClosedBy>
    <!--Optional:-->
    <ns:ClosedComments>?</ns:ClosedComments>
    <!--Optional:-->
    <ns:ClosedTerminal>?</ns:ClosedTerminal>
    <!--Optional:-->
    <ns:ClosedTimestamp>?</ns:ClosedTimestamp>
    </real:Diversion>
    </soapenv:Body>
    </soapenv:Envelope>
    Now the third party sends a HospitalDiversionMessage in this format_
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns0="http://amb.com/cad/RealTimeService" xmlns:ns="http://schemas.com/cad/datamodel/divert/1.0.0">
    <soapenv:Header/>
    <soapenv:Body>
    <ns0:Diversion>
    <ns0:Action>?</ns0:Action>
    <ns0:Open>?</ns0:Open>
    <!--Optional:-->
    <ns0:Location>?</ns0:Location>
    <ns0:Type>?</ns0:Type>
    <ns0:SubType>?</ns0:SubType>
    <!--Optional:-->
    <ns0:ExpiryTimestamp>?</ns0:ExpiryTimestamp>
    <!--Optional:-->
    <ns0:Comment>?</ns0:Comment>
    <!--Optional:-->
    <ns0:ItemNumber>?</ns0:ItemNumber>
    <!--Optional:-->
    <ns0:Notifications>?</ns0:Notifications>
    <ns0:CreatedTerminal>?</ns0:CreatedTerminal>
    <ns0:CreatedTimestamp>?</ns0:CreatedTimestamp>
    <!--Optional:-->
    <ns0:ClosedBy>?</ns0:ClosedBy>
    <!--Optional:-->
    <ns0:ClosedComments>?</ns0:ClosedComments>
    <!--Optional:-->
    <ns0:ClosedTerminal>?</ns0:ClosedTerminal>
    <!--Optional:-->
    <ns0:ClosedTimestamp>?</ns0:ClosedTimestamp>
    </ns0:Diversion>
    </soapenv:Body>
    </soapenv:Envelope>
    Questions*
    1) I cannot figure out how the SOAPUI tool or SOA substitutes "real" as the namespace prefix for the WSDL based HospitalDiversionMessage and what I need to do at my end to match the message structure as per what the third party needs.
    2) I need ns0 namespace prefix to whole of Diversion xml element. Currently it is "real" at top Diversion element and "ns" for its children
    Please suggest, I can attach the other imported XSD if need be.
    Thanks
    Edited by: user5108636 on Jun 13, 2011 6:55 PM
    Edited by: user5108636 on Jun 13, 2011 6:57 PM
    Edited by: user5108636 on Jun 13, 2011 7:02 PM

    Questions
    1) I cannot figure out how the SOAPUI tool or SOA substitutes "real" as the namespace prefix for the WSDL based HospitalDiversionMessage and what I need to do at my end to match the message structure as per what the third party needs.The xml namespace suffixes like real and ns0 are just references used by the XML Parsers. For that matter the "real" can be xyz as well.
    You dont need to make any changes as long as the xml namespace suffixes refer to the same namespace.
    If you see the first soapUI xml and the third party xml have the same namespace references and hence it is not a problem:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:real="*http://amb.com/cad/RealTimeService*" xmlns:ns="http://schemas.com/cad/datamodel/divert/1.0.0">
    <soapenv:Header/>
    <soapenv:Body>
    <*real*:Diversion>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns0="*http://amb.com/cad/RealTimeService*" xmlns:ns="http://schemas.com/cad/datamodel/divert/1.0.0">
    <soapenv:Header/>
    <soapenv:Body>
    <*ns0*:Diversion>
    2) I need ns0 namespace prefix to whole of Diversion xml element. Currently it is "real" at top Diversion element and "ns" for its childrenBased on this, logically both the xmls represent the same xml message. And hence you dont need to make any changes.
    Please refer to the basics of xml namespaces using the following links:
    http://en.wikipedia.org/wiki/XML_namespace
    http://zvon.org/comp/r/tut-Namespace.html#Pages~Introduction
    Let us know if you still need clarification.
    Hope this helps.
    Thanks,
    Patrick

  • Add Namespace in message mapping

    Hi gurus,
    we have following requirement to solve;
    on receiver side we have a segment without namespace. It is possible to add namespace at the graphical mapping?
    <root>
        <id>1111</id>
        <name>max mustermann</name>
        <unit>B1</unit>
    </root>
    expected structure
    <root xmlns="http://www.org/xml/v0300">
        <id>1111</id>
        <name>max mustermann</name>
        <unit>B1</unit>
    </root>
    solution for this problem will be much appreciated,
    Kind Regards
    PM

    Hi Peter,
                    You can use the following java mapping to meet your requirement
    for PI 7.1 and above (if you are working with lower versions please let us know, since java mapping code will be different for lower versions)
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Map;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import com.sap.aii.mapping.api.AbstractTransformation;
    import com.sap.aii.mapping.api.StreamTransformationException;
    import com.sap.aii.mapping.api.TransformationInput;
    import com.sap.aii.mapping.api.TransformationOutput;
    public class copyNode extends AbstractTransformation {
          * @param args
         public void execute(InputStream in, OutputStream out)
                   throws StreamTransformationException {
              // TODO Auto-generated method stub
              try
                   DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance();
                   DocumentBuilder builderel=factory.newDocumentBuilder();
                   /*input document in form of XML*/
                   Document docIn=builderel.parse(in);
                   /*document after parsing*/
                   Document docOut=builderel.newDocument();
                   TransformerFactory tf=TransformerFactory.newInstance();
                   Transformer transform=tf.newTransformer();
                   Element rootin;
                   Node rootout;
                   Element r;
                   rootin=docIn.getDocumentElement();
                   rootout=docOut.importNode(rootin, true);
                   docOut.appendChild(rootout);
                   r=(Element)docOut.getElementsByTagName("root").item(0);
                   r.setAttribute("xmlns", "\"http://www.org/xml/v0300\"");
                   transform.transform(new DOMSource(docOut), new StreamResult(out));
              catch(Exception e)
         public void setParameter(Map arg0) {
              // TODO Auto-generated method stub
         public void transform(TransformationInput arg0, TransformationOutput arg1)
         throws StreamTransformationException {
    // TODO Auto-generated method stub
              this.execute(arg0.getInputPayload().getInputStream(), arg1.getOutputPayload().getOutputStream());
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              try{
                   copyNode genFormat=new copyNode();
                   FileInputStream in=new FileInputStream("C:\\Apps\\my folder\\sdn\\namespaceAdd.xml");
                   FileOutputStream out=new FileOutputStream("C:\\Apps\\my folder\\sdn\\namespaceAdd1.xml");
                   genFormat.execute(in,out);
                   catch(Exception e)
                   e.printStackTrace();
    One more thing, you have not mentioned the scenario. If the scenario has a file adapter in sender side, and you are using File content conversion, then please put the namespace value in content conversion parameters -> Document namespace. Then you will receive the namespace value in source message.
    regards
    Anupam

  • Namespace error message

    Hi,
    I created a SWCV with a single namespace for my integration scenario. When I try to activate imported objects in my SWC an error message occurs saying that the relevant namespace is not defined in the SWCV. I checked the namespace and couldn't find any error. Any idea whats wrong with the SWCV ot the namespace definition?

    Hi Karsten,
    If your namespace is created properly, it will create a change list for you with ExchangeFaultData and ExchangeLogData.
    Try to activate the namespace first before you create any objects in it.
    Regards.
    Praveen

  • Preprossing possible to add namespace to message?

    Hi,
    we have an interface running via PI with some provider.
    We send an HTTP request to the provider and an XML file returns. However this file contains no reference to any namespace and the parsing from the XML to the corresponding ABAP structure does not work.
    Is there any possibility of preprocessing so we can add this necessary namespace before the parsing starts?
    Thanks a lot.
    Kris

    The scenario in brief:
    We send an HTTP-request to out provider. This works well.
    In return we get an xml file back. We do not have any detailed description of this file (no xsd). I generated an xsd-file from the returned output an imported this in the repository as an external definition.
    This is a sample of the returned xml file:
    <?xml version="1.0"?>
    <DOWNLOAD_REPLY>
      <TRANSMISSION LEVEL="Order" DESCRIP="- Order date -">
      <GROUP1 ACTION="">
        <GROUP2 DATEORDER="1/2010">
      <PAYMENT ID="6169845" REF="40000000504A13"></PAYMENT>
      <PAYMENT ID="6179207" REF="400000005025EB"></PAYMENT>
        </GROUP2>
      </GROUP1>
      </TRANSMISSION>
    </DOWNLOAD_REPLY>
    That is as far as we get.
    We use a proxy to retrieve our data: based on the external definition, we make an interface and then the proxy.
    Apparently SAP has a problem parsing this xml into the abap structures.
    We think the problem could be caused by the absence of an namespace in the xml, and we would like to add that to the message, before the parsing begins. This could possibly be done in a mapping u2013 or by regenerating the proxy after removing the namespace. But I donu2019t see the how-to of these two options.
    Any advice, please.
    Kris

  • Namespaces in message xsd files

    I am starting work on some web services projects and am trying to use JAX-WS. However, it looks like some of the people working on this at other locations may be using different namespaces for some of the elements. There is currently a LongName type specified in the namespace urn:dicim:ws:wado:2011 (wado) and urn:ihe:iti:ads-b:2007 (ihe). In one example of data flow, I see an ihe prefix and in the other I see a wado prefix. My assumption would be that one has
    <xs:element name="name" type="wado:LongName" />
    in the wsdl and the other has
    <xs:element name="name" type="ihe:LongName" />
    in the wsdl file. Would this cause a problem in the two systems talking to each other. Am I correct in assuming that the prefix used for the element is the prefix of the type?

    Your question is not very clear to me. But you might consider reading XML Schema Primer which sums up many things (including namespaces) really well: http://www.w3.org/TR/xmlschema-0/

  • Different Message Type, Different Namespace, same structure

    Hi,
    we have the scenario:
    We have a message type (with our namespace) in a regular file-tofile scenario.
    The sender is sending us an xml-file from his PI that  has exactly the same structure and same xsd.
    Except, that his message type name and namespace are different.
    What is the scenario to get his message type and namespace mapped to my message type and namespace in a regular file-to-file scenario?
    Thanks
    hs

    Hi, you could also remove namespaces with XMLAnonymizerBean, then you only need to adapt the message type.
    Alternatively you can import the external definition of the message and create a mapping for that. You can reuse your existing message mapping, just do a copy and change the message type in the signature. Then you can correct structural inconsistencies automatically in order to adjust the mapping to the changed namespace and message type. Or even better, create a mapping template for the structure which you use in both message mappings. Like this, you have a separate interface and mapping for the file and thus a clear separation of message flow.
    Regards, Martin

  • Please help me to solve error: Split mapping created no messages

    Hi Experts,
    I am facing Split mapping created no messages  when i run my scenario.
    My Scenario is : Proxy to FILE.
    I am triggering Proxy and based on one condition i am generating different Flat Files.
    Now when i do this i am getting error :Split mapping created no messages in SXI_MONITOR.
    When i check this in Message Mapping by taking data from SXI_MONI its working fine...
    but when i trigger the data from RUNTIME WORKBENCH its throughing the error.
    When i remove the NameSpaces <ns0:message>
    and <ns0:messages1> its working fine.
    How can i solve this issue.
    Even though i removed Namespace in Message Type, i am getting the error.
    I changed occurance of Target message to O..unbounded both in Message Mapping and Interface Mapping.
    Its working fine in Message Mapping, problem occurs only when i run end-to-end scenario.
    So please help me to solve this issue.

    I think there might be mismatch between your name spaces.
    may be this link might help you
    Split mapping created no messages -Mluti Mapping
    are you getting the same structure from your proxies whatever structure you have in your XI structure(sender) and NS should match.
    but I dont have exp with proxies.
    Sri

  • Namespace in XML

    Hi all, I am using the Test Tab in message mapping to test the mapping.
    Somehow it is required for me to have a namespace prefix for my XML root element, otherwise an error would be thrown.
         <ns0:MDMBusinessPartner xmlns:ns0="http://sap.com/xi/MDEApplicationContent">
    I would like to specify a root element without namespace.
    For e.g.
          <MDMBusinessPartner>
    Where should i make the necessary changes?

    You can ignore the namespace in message type editor while creating the message type.
    I have ignore and remove the namespace in the message type editor.
    So when i click on source in the Message Test Tab, it has becomes
    <MDMBusinessPartner>
    However i when click execute it still prompts me
    Cannot produce target element /HRMD_A07. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd
    any advicE?

  • XSLT Mapping and Namespace Issues

    I have been reading through similar threads on this topic, but have not found the right combination for my problem.  I am doing an XSLT map and it works fine in Stylus Studio.  When I take it to PI, I get a "Prefix 'ns0' is not mapped to a namespace" error.  I have a namespace that is within the XSD files I received from my partner (http://www.ups.com/XMLSchema/EBR/Billing/v1).  I also have the namespace I made in PI for the source (http://graybar.com/upsbilling/) and a different namespace in PI for the destination (http://graybar.com/cold/invoice/).
    <u><b>XSLT:</b></u>
    <?xml version='1.0' encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://www.ups.com/XMLSchema/EBR/Billing/v1" xmlns:ns1="http://graybar.com/cold/invoice/">
    <xsl:template match="/">
    <ns1:ColdInvoiceData>
      <Header>
      <RecordID>HDR</RecordID>
      <InvoiceDate>
      <xsl:value-of select="ns0:UPS_EBR_BILL/ns0:InvoiceDetails/ns0:Invoice/ns0:InvoiceDateCCYYMMDD"/>
      </InvoiceDate>
    <u><b>Source XML</b></u>
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <UPS_EBR_BILL xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ups.com/XMLSchema/EBR/Billing/v1" xsi:schemaLocation="http://www.ups.com/XMLSchema/EBR/Billing/v1 Billing_XML_Schema.xsd">
    <XMLBillFileVersion>1.0.1</XMLBillFileVersion>
    <Recipient>
    When I change the XSLT namespace from http://www.ups.com/XMLSchema/EBR/Billing/v1 to http://graybar.com/upsbilling/, the TransfromerException in PI goes away, but none of my referenced mappings work either (just my text hardcodes).
    Can someone tell me why this works in Stylus Studio, but not in PI?  Do I have too many namespaces?
    Message was edited by:
            Keith Wendel (to uncomment xsl:stylesheet line)

    > <ns1:ColdInvoiceData xmlns:ns1="http://graybar.com/cold/invoice/">
    This change did not affect anything.  Still works in Stylus Studio though.
    Did you mean to show any changes at the <xsl:value-of select> line?  I did not notice anything there.
    Can anyone explain what "not mapped to a namespace" means?  I have the declaration of ns0 at the top, so I don't see what else needs to be mapped.  Do I have to have my PI namespace where I store the partner's XSDs set as "http://www.ups.com/XMLSchema..." (partner's namespace)?

  • User Tables Naming convention / Namespaces

    Dear all,
    Does anybody know where to get Informations about SBO NameSpace Conventions ?
    I have 2 Questions for naming conventions
    1) Creating a UserDefinedTable like this
       Table Name  :  Z_NameSpace_MyTableName
       Is it necessary that any FieldName of the
       table uses the NameSpace Prefix ?
       Like this: NameSpace_PosNo
    2) Adding UDF to SBO Tables
       Is it necessary that UDF Fields uses the
       NameSpace Prefix ?
    Thanks

    Thomas,
    The NameSpaces are only used while creating a UserDefined Table.
    UserDefined Table :
    The convention for the name is NameSpace_MyTableName (without the Z_). Its length can't exceed 19 characters.
    When adding a user table, SAP Business One automatically adds the symbol @ as a prefix to the table name. For example: if you add a table named "ABC", the resulting table name will be "@ABC".
    When referring to a user defined table you must use the name including the prefix @.
    UserDefined Field :
    you do not have to add the NameSpace in the name of the field. Its length can't exceed 8 characters.
    When you create it using the UserFieldsMD object, the character "U_" will be added to its name, and created in the table.
    To conclude, the NameSpace is only used for the table.
    The DI API will add @ for the table, and U_ for the field.
    You can see SAP note 647987 about NameSpace
    Sebastien
    Message was edited by: Sébastien Danober

  • Can not generate one xsd file  for message type in xi

    Dear Experts.
    I am not able to generate  one XSD file from  message type from XI 3.0, When i select message type and go to XSD tab  then click on export xsd to file, it is generating two xsd files MainSchema.xsd,  Schema1.xsd  into one zip file, but i need only one xsd file to import it into MDM.
    Could you please help
    Thanks and Regards.
    Sravya.
    The following are the two files. MainSchema.xsd,  Schema1.xsd .

    Hi Harsha,
    Thanks lot for the immediate response. Appreciate it.
    Now I am able to generate the one xsd with your inputs , but i am not able to load it into mdm with out any changes in the generated XSD from Message Type. the below is only the original root tag, where modification required.
    Original  Element : MDM_CUST_MASTER_FILE_REQUEST_MT
    ==============
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:abc.com:MDM_Customer_Master_ECC" targetNamespace="urn:abc.com:MDM_Customer_Master_ECC">
    <xsd:element name="MDM_CUST_MASTER_FILE_REQUEST_MT" type="MDM_CUST_MASTER_FILE_REQUEST_DT" />
    etc.
    Case :.When i modify the above element as below  with out xmlns, targetNamespace
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="MDM_CUST_MASTER_FILE_REQUEST_MT" type="MDM_CUST_MASTER_FILE_REQUEST_DT" />
    I can import xsd into mdm with the above modification.
    The generated XML out put File from mdm is having message type tag like below
    ?xml version="1.0" encoding="UTF-8"?>
    <MDM_CUST_MASTER_FILE_REQUEST_MT> 
    <CUSTOMER> </customer> ...
    note: no namespace for message type
    Result:
    1.When i send this xml file into XI it is failing in message mapping  because it doesn't have namespace attached to it and failing in message mapping.
    Finally i need your help to generate the xsd or data file like below to avoid mapping problem in xi.
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:MDM_CUST_MASTER_FILE_REQUEST_MT xmlns:ns0=urn:abc.com:MDM_Customer_Master_ECC>
    Appreciate your help.
    Thanks and Regards.
    Sravya.

  • SOAP envelope namespace

    Dear all,
    I have configured a scenario for which the SOAP adapter is used. When I try to send a message like this:
    <ns0:Envelope xmlns:ns0="http://www.w3.org/2001/12/soap-envelope">
    <ns0:Body>......
    I receive message "SOAP:Server Server Error XIAdapter MalformedMessageException "
    When the namespace "http://www.w3.org/2001/12/soap-envelope" is replaced with
    "http://schemas.xmlsoap.org/soap/envelope/" the message is processed correctly.
    Does this mean that any SOAP messages to XI MUST have namespace "http://schemas.xmlsoap.org/soap/envelope/" for the SOAP envelope??
    Kind regards,
    John.

    Hello Bhavesh,
    No, the message is sent from a third party to the XI system using SOAP. In their message the SOAP envelope is created with the namespace as I stated in my previous post.
    When I edit this message by changing the namespace the message is processed without errors. It seems that there is a check for namespace "http://schemas.xmlsoap.org/soap/envelope" in the SOAP adapter, but I cannot configure out why.
    Kind regards,
    John.

  • Messages missing after WSDL import

    Hi,
    I imported the WDSL of a WebService in External Definitions in SAP XI. Unfortunately, I cannot see any messages. For other WebServices, this procedure worked fine.
    Any ideas?
    Regards
    Volker

    Hi Volker,
    Go thru the following threads it might be helpful:
    wsdl import and message in XI
    WSDL upload not showing namespace OR message
    Do share whether they helped you or not...
    Regards
    Suraj

  • Aqualogic ServiceBus tutorial, add namespace problem?

    Hi,
    I am playing around with Aqualogic ServiceBus and thought I would go
    through tutorials just to see if there is something that I don't realize
    from document (http://e-docs.bea.com/alsb/docs20/pdf/tutorial.pdf).
    On page 5-13 there is step where you are supposed to insert new
    namespace into message. On paper it seems very easy, just click + and
    type in prefix and namespace and press ok. But in reality pressing ok
    does absolutely nothing and because of this I can't insert namespace
    definition like in tutorial and everything is downhill from there...
    I am optimistic and assume that there is actually way to do what is
    described in tutorial but server just doesn't give out any error
    messages even when there is some strange step I have missed. :) Any ideas?
    jari k

    Jari Kujansuu wrote:
    Hi,
    I am playing around with Aqualogic ServiceBus and thought I would go
    through tutorials just to see if there is something that I don't realize
    from document (http://e-docs.bea.com/alsb/docs20/pdf/tutorial.pdf).
    On page 5-13 there is step where you are supposed to insert new
    namespace into message. On paper it seems very easy, just click + and
    type in prefix and namespace and press ok. But in reality pressing ok
    does absolutely nothing and because of this I can't insert namespace
    definition like in tutorial and everything is downhill from there...To answer my own message, in case others face same problem ...and to
    hear if others have same problem.
    So I looked at other things and now when returned to Aqualogic. Tried
    again and after it failed for some reason decided to test same in
    Internet Exlopder, even everything else seems to work beatifully using
    Mozilla Firefox. Well in IE when pressed OK new namespace was added as
    it should.
    Tried looking if I had some security feature turned on in Firefox but
    couldn't really see what could cause such thing. Does this work with
    Firefox for others or is this Aqualogic stuff only for Internet Exploder
    users?
    Jari Kujansuu
    Tel: +358-403400607
    [email protected]
    Endero Oyj www.endero.com
    Kiviaidankatu 2F, FI-00210 Helsinki
    The intelligent art of integration

Maybe you are looking for

  • Living in Canada with a Verizon phone

    I live in Canada (near US border - Detroit) and my Verizon phone keeps dropping my calls when my Iphone5 switches between the US and Canadian cell towers...is there a fix?

  • How to edit the text in a trailer 'after' converting to a project?

    After converting my trailer to a project so I can add photographs and further music. I accidently deleted the last frame of the trailer credits.. and now need to add it back in. Your help is much appreciated! Nick

  • HT2688 I have a used computer how do i open my library

    my laptop was stolen so i now have a used computer and im trying to open my ipod library but i get the library of the previous owner of the pc.  what do i do?

  • Portal Drive and Cluster

    Hi all, We received recommendation to start using portal drive instead of web browser in order to access KM folders via WebDAV. I have installed and configured Portal drive as described in SAP help. Since we have a cluster installation, the server UR

  • Flex 4 Modules Creation Cycle bug ?

    http://filip.nedyalkov.net/creationcycle/ - view source is enabled, download and see the traces Ok so here is what happens in this application: Some elements are created in the main application and also a module is loaded. As soon as it is ready the