Importing namespace problem.

Hi All,
            here i am trying to import one namespace. the component version is already there and the other name space was already there. but while i am trying to import this other name space, it is giving the message as IMPORTED SUCCESSFULLY. and the name space were also viewable in imported objects. <u>But the name space is not visible under the component version.
</u>
             previously i imported the same name space. at that it was imported with out any objects inside. then i deleted that name space and trying to get that name space space with all the objects inside. now i have selected the option of getting all the objects of the name space.
             Any ideas will be heartfully appreciated

Hi,
i understand that the namespace is appearing in a different SWCV, but does this new SWCV being created (during import), have the same name as the SWCV you are exporting from the source XI server?
if so, you need to export the SWCV from the source XI SLD and import it in the target XI server's SLD. This will make the source and target SWCV have the same GUID.
Once this is done, any export-import you do will come up in the proper SWCV.
Regards,
Balaji.M

Similar Messages

  • Import Namespace Problem

    I have a xsd schema that I have imported into my workspace, I am trying to figure out what namespace to use, as I am not aware of the path that I should set for the import.
    WorkSpace: Prequal Test
    ProjectName: StaticSyncRead
    Here is what I put....
    <import namespace="http://TargetNamespace.com/StaticSynchRead"
    schemaLocation="address-csv.xsd" />
    and here is the error:
    Validating C:\Documents and Settings\wlipford\Desktop\Prequal_Synchro_FileRead\NewSyncroExample\StaticSynchRead\FileSyncRead.wsdl
    Schema element not found: QName(http://TargetNamespace.com/StaticSynchRead/, Address-List)

    it never finds the darn element... here is the wsdl source:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!--Generated by the Oracle JDeveloper 10g Web Services WSDL Generator-->
    <!--Date Created: Tue Sep 06 13:38:44 EDT 2005-->
    <definitions
    name="FileSyncRead"
    targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/file/FileSyncRead/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/file/FileSyncRead/"
    xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
    xmlns:imp1="http://xmlns.oracle.com/pcbpel/MainFrameword"
    xmlns:hdr="http://xmlns.oracle.com/pcbpel/adapter/file/"
    >
    <import namespace="http://xmlns.oracle.com/pcbpel/MainFrameword" location="fileAdapterOutboundHeader.wsdl"/>
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/file/FileSyncRead/">
    <import namespace="http://xmlns.oracle.com/pcbpel/MainFrameword" schemaLocation="InitiateProcess.xsd" />
    <element name="empty"><complexType/></element>
    </schema>
    </types>
    <message name="SiteInfo_msg">
    <part name="SiteInfo" element="imp1:SiteInfo"/>
    </message>
    <message name="Empty_msg">
    <part name="Empty" element="tns:empty"/>
    </message>
    <portType name="SynchronousRead_ptt">
    <operation name="SynchronousRead">
    <input message="tns:Empty_msg"/>
    <output message="tns:SiteInfo_msg"/>
    </operation>
    </portType>
    <binding name="SynchronousRead_binding" type="tns:SynchronousRead_ptt">
    <jca:binding />
    <operation name="SynchronousRead">
    <jca:operation
    PhysicalDirectory="C:\TEMP\inputDir"
    InteractionSpec="oracle.tip.adapter.file.outbound.FileReadInteractionSpec"
    FileName="address_csv.txt"
    DeleteFile="true"
    PhysicalArchiveDirectory="C:\TEMP\archiveDir"
    OpaqueSchema="false" >
    </jca:operation>
    <input>
    <jca:header message="hdr:OutboundHeader_msg" part="outboundHeader"/>
    </input>
    </operation>
    </binding>
    <service name="FileSyncRead">
    <port name="SynchronousRead_pt" binding="tns:SynchronousRead_binding">
    <jca:address location="eis/FileAdapter" />
    </port>
    </service>
    <plt:partnerLinkType name="SynchronousRead_plt" >
    <plt:role name="SynchronousRead_role" >
    <plt:portType name="tns:SynchronousRead_ptt" />
    </plt:role>
    </plt:partnerLinkType>
    </definitions>
    Now here is the xsd source
    <?xml version="1.0" encoding="windows-1252"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/MainFrameword"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/db/top/MainFrameword"
    elementFormDefault="qualified" attributeFormDefault="unqualified"
    nxsd:encoding="US-ASCII" nxsd:stream="chars" nxsd:version="NXSD">
    <xsd:element name="BatchInfo">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="Batchpayload" minOccurs="1" maxOccurs="unbounded"
    nxsd:style="array">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="BatchID" type="xsd:string"/>
    <xsd:element name="Name" type="xsd:string"/>
    <xsd:element name="Date" type="xsd:date"/>
    <xsd:element name="Dept" type="xsd:string"/>
         <xsd:element name="Email" type="xsd:string"/>
         <xsd:element name="ID" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="SiteInfo">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="Sitepayload" minOccurs="1" maxOccurs="unbounded"
    nxsd:style="array">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="RecordID" type="xsd:string"/>
    <xsd:element name="Address1" type="xsd:string"/>
    <xsd:element name="Address2" type="xsd:string"/>
    <xsd:element name="City" type="xsd:string"/>
    <xsd:element name="State" type="xsd:string"/>
    <xsd:element name="ZipCode" type="xsd:string"/>
    <xsd:element name="Country" type="xsd:string"/>
    <xsd:element name="PhoneNumber" type="xsd:string"/>
    <xsd:element name="BATCHID" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="USPS_SiteInfo">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="USPSpayload" minOccurs="1" maxOccurs="unbounded"
    nxsd:style="array">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="RecordID" type="xsd:string" maxOccurs="1"/>
    <xsd:element name="Address1" type="xsd:string"/>
    <xsd:element name="Address2" type="xsd:string"/>
    <xsd:element name="City" type="xsd:string"/>
    <xsd:element name="State" type="xsd:string"/>
    <xsd:element name="ZipCode" type="xsd:string"/>
    <xsd:element name="Country" type="xsd:string"/>
    <xsd:element name="PhoneNumber" type="xsd:string"/>
    <xsd:element name="BATCHID" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>

  • Importing xsd problems

    I'm  using two xsd.
    The first one is like  a dictionory the second one form specific.
    In the form specific xsd  I use restriction from the dictionary
    for eg: dictionary.xsd is like this
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.example.org/Base"
    targetNamespace="http://www.example.org/Base"
    elementFormDefault="unqualified">
    <xs:element name="A" type="AType" />
    <xs:complexType name="AType">
    <xs:sequence>
    <xs:element name="title" type="xs:string" />
    <xs:element name="name" type="xs:string" minOccurs="0" />
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    form.xsd is
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.example.org/Restriction"
    targetNamespace="http://www.example.org/Restriction"
    xmlns:base="http://www.example.org/Base"
    elementFormDefault="unqualified">
    <xs:import namespace="http://www.example.org/Base"
    schemaLocation="dictionary.xsd" />
    <xs:element name="ARestricted" type="ARestrictedType" />
    <xs:complexType name="ARestrictedType">
    <xs:complexContent>
    <xs:restriction base="base:AType">
    <xs:sequence>
    <xs:element name="name" type="xs:string" />
    </xs:sequence>
    </xs:restriction>
    </xs:complexContent>
    </xs:complexType>
    </xs:schema>
    when i import this into livecyle  I'm expecting to see only restricted elements but i see all the elements from dictionary.
    Here in this case I want to see in dataview only "name", but i see both "title" and "name"
    In my actual forms "dictionary xsd" is so big which makes my livecycle designe very slow.
    As a result i get this error message, if i remove some of the elements then livecycle can import.
    Can somebody help me please.

    EMF doesn't provide any tools for doing DTD to XML Schema conversion.
    The first error sounds like there are things with names that aren't well
    formed and the second sounds like references either to a namespace that
    isn't imported or that doesn't define the referenced name.
    as13 wrote:
    > Hello,
    > I got a problem by importing an xsd schema.
    > I converted a dtd to a xsd schema first by Stylus Studio. After that i
    > tried to create a new EMF project by importing the xsd schema.
    >
    > Allways got problems like that:
    >
    > "Problems were detected while validating and converting the XML Schemas
    > Error: XSD: The value 'xxx' of attribute 'name' must conform to
    > pattern '(\i\c*) & ([\i-[:]][\c-[:]]*)' as constrained by
    > 'http://www.w3.org/2001/XMLSchema#NCName' : URI
    > file:/C:/.../EnterpriseDTD.xsd Line 21 Column 4
    >
    > or
    >
    > Error: XSD: Element reference 'UML#xxx' is unresolved : URI
    > file:/C:/.../EnterpriseDTD.xsd Line 569 Column 5
    >
    >
    > Because of the xsd Schema is about 700kB, these problems appears round
    > about 3000 times!!!
    >
    > Does anyone has an idea? I think it´s about a not valid xsd schema,
    > but I don´t know, how i can generate a valid xsd schema out of a DTD.
    > I tried it with stylus Studio an XMLSpy. Couldn´t get a "valid" Schema...
    >
    >
    >
    > greets
    >

  • What is the "Imported Namespaces" window in Visual Studio Project Properties (VB)

    What is the "Imporeted namespaces" window (see below) in Project properties (VB)

    Hi trogan,
    This is the official document Description from
    How to: Add or Remove Imported Namespaces (Visual Basic):
    Imported namespaces are managed on the References page of the Project Designer. The imports you specify in this dialog box are passed directly to the compiler (/imports) and apply to all files in your project.
    But I think we could understand it better with this document:
    References and Namespaces in VB.NET
    Note: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you.
    Microsoft does not control these sites and has not tested any software or information found on these sites;
    Therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
    There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • 0,801: Invalid reference document import namespace

    I have a Sensor Edge Server in which I've configured a Edge Simulator Driver. I'm dispatching my events to a BPEL Process thro' a WebService call.
    My eflow.xml looks like this.
    ===============================================================================
    <!--EFLOW.XML-->
    ===============================================================================
    <eflow>
         <components>
              <component name="callBpel" class="oracle.edge.tools.eflow.impl.BpelState" />
              <component name="matchEvent" class="oracle.edge.tools.eflow.impl.MatchEventState" />
              <component name="sendEvent" class="oracle.edge.tools.eflow.impl.SendEventState" />
              <component name="callWs" class="oracle.edge.tools.eflow.impl.WsState" />
         </components>
         <entry>
              <onEvent state='A.check'/>
         </entry>
         <states>
              <matchEvent name="A.check" control="matchEvent" type="200" x="100" y="200" >
                   <case result="ok" next="good.event"/>
              </matchEvent>
              <callWs name="good.event" wsdl="http://localhost:7777/orabpel/default/BPELProcess/1.0/BPELProcess?wsdl" method="initiate" namespace="http://xmlns.oracle.com/BPELProcess" docRoot="MyRoot">
                   <param name="id" type="integer">$event.id$</param>
                   <param name="subType" type="integer">$event.subType$</param>
              </callWs>
         </states>
    </eflow>
    ===============================================================================
    My BPEL process refers an xsd file 'BPELProcess.xsd'.
    ===============================================================================
    <!--BPELProcess.wsdl-->
    ===============================================================================
    <types>
         <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:client="http://xmlns.oracle.com/BPELProcess">
         <xsd:import namespace="http://xmlns.oracle.com/BPELProcess" schemaLocation="BPELProcess.xsd"/>
    </xsd:schema>
    </types>
    ===============================================================================
    I get the following error in Sensor Edge
    Tue Jun 26 17:20:07 IST 2007(2):WsState: Failed init:>>
    oracle.j2ee.ws.client.WebServiceProxyException: WSDL parsing failed
         0,801: Invalid reference document import namespace: http://xmlns.oracle.com/BPELProcess.
         at oracle.j2ee.ws.client.impl.DefaultWebServiceProxy.newInstanceFromService(DefaultWebServiceProxy.java:106)
    I assume that I'm getting this error because Event Flow Dispatcher does not understand the schema as it's defined in an xsd file and Sensor Edge cannot find the xsd.
    Can anybody help me with this. Where can I put my xsd file so that Sensor Edge can access it.
    One solution is to define the schema inline in the BPELProcess.wsdl, but I do not want to do that for some particular reasons.
    Please help!

    Nimish, I don't have an answer to your question, but have a question for you. You talk about having the schema inline. Is there a way to have the wsdl document generated so that the schema is produced inline, instead of using a reference as in your case? If so, how do you do it?
    Thanks,
    Bob N

  • I am having problems importing some CDs into iTunes on a laptop with Windows 8. Most CDs import without problem. The ones I can't import can be imported into iTunes with Windows 7. Does anybody know why this problem is occurring?

    I am having problems importing some CDs into iTunes on a laptop with Windows 8. Most CDs import without problem. The ones I can't import can be imported into iTunes with Windows 7. Does anybody know why this problem is occurring?

    First-off, this seems to be a general problem with 10.4 (across all the operating systems of which I am aware).  Unfortunately, I cannot provide a permanent solution but, if you need a quick fix, this will (hopefully) work for you.
    For some inexplicable reason, iTunes no longer recognises standard Windows paths.  For example:
    Y:\Music\Buddy Holly\Buddy Holly - Rave On.mp3
    The end result is that it will import a playlist with no content. 
    It will, however, recognise the equivalent Apple paths which look like this:
    file://localhost/Y:/Buddy Holly/Buddy Holly - Rave On.mp3
    It is possible to convert your existing playlists using a few basic replace commands in something like Notepad.  In my case, I made some code changes in my music manager and now generate two sets of playslists (one standard and one to accommodate iTunes).
    Forgive me foir stating the obvious but please remember to make sure that the disk / path containing your music is accessible when doing the import otherwise you will probably get a blank result.  Note that you can do a bulk import by selecting all the (revised) playlists and dragging them onto the iTunes sidebar.
    I am sorry that this is not a "clean" solution but it will work if you are in a bind.  The only alternative of which I am aware is to wait for Apple to fix the problem.

  • Unsure of import/namespace syntax

    OK, this is probably a newbie question but I'm unsure of how to use a message defined in one wsdl in the portType definition in another. Here's the fragment of the wsdl (called GoogleSearch.wsdl) where the message is defined:
    <message name="doGoogleSearchResponse">
    <part name="return" type="typens:GoogleSearchResult"/>
    </message>
    Here's the fragment of the wsdl file (called WriteResults.wsdl) where the message is used in defining the portType:
    <definitions
    name="WriteResults"
    targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/file/WriteResults/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/file/WriteResults/"
    xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
    xmlns:gsns="http://xmlns.oracle.com/GoogleSearch/"
    xmlns:hdr="http://xmlns.oracle.com/pcbpel/adapter/file/"
    >
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/file/" location="fileAdapterOutboundHeader.wsdl"/>
    <portType name="Write_ptt">
    <operation name="Write">
    <input message="gsns:doGoogleSearchResponse"/>
    </operation>
    </portType>
    Here's the error message returned from the make:
    [Description]: in "bpel.xml", XML parsing failed because "undefined WSDL message.
    Message "{http://xmlns.oracle.com/GoogleSearch/}doGoogleSearchResponse" is not defined in WSDL at "file:/C:/JDev_10_1_3_1/jdev/mywork/sandbox/GoogleTest/bpel/WriteResults.wsdl".
    Please make sure the spelling of the message name is correct and the WSDL import is complete.
    I guess I'm using the namespace/import stuff incorrectly. Can somebody point out my syntax error?
    Thanks,
    Bret

    I've packaged up the project so somebody can give it a quick try if they would be so kind. Here's the URL to download it:
    http://www.mediamax.com/bret_foreman/Hosted/GoogleTest/GoogleTest.zip
    Please let me know if any sees what the trouble is.
    Thanks,
    Bret

  • [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.)

  • Importing tga problem

    I have several targa image sequences from a client. FCP (6.0.5) will import some but not others. The only difference I can find is that under "kind" in the get info window some are "tga image" and the others are "adobe photoshop targa file". The latter imports no problem, while the former give an error: "File Error 1 file(s) recognized, 0 access denied, 1 unknown."
    Anyone know what I'm doing wrong or have run into this issue?
    FWIW, I checked the fils in photoshop and they all have the same modes. They also all have the same file sequence naming structure.
    Thanks in advance for any help.

    Actually forgot to explain that the error I mentioned above occurs when I try to import just 1 of the targa files individually. If I try to import a sequence the number of errors changes to match the number of targas in the sequence. Sorry about the miscommunication. For the record, there are no other files inside the sequence folder(s) - just the targas.
    Still haven't figured this out yet. Shake, Nuke, After Effects, Photoshop all open/import the files, but FCP will not.

  • Please help with namespace problem

    Hello,
    I am trying to display a gif image an I have a namespace problem.
    Here is my xml document:
    <?xml version='1.0'?>
    <?xml-stylesheet type="text/xsl" href="authors.xsl"?>
    <authors>
    <author>
    <name>Mike Galos</name>
    <nationality>French</nationality>
    </author>
    <author>
    <name>Cynthia Randall</name>
    <nationality>Canadian</nationality>
    </author>
    </authors>
    Here is my xsl stylesheet:
    <?xml version='1.0'?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:template match="//author">
    <image     xmlns:xlink="http://www.w3.org/1999/xlink"
                   xlink:type="simple"
                   xlink:href="logo.gif"
                   xlink:show="embed"/>
    </xsl:template>
    </xsl:stylesheet>
    I want the browser to diplay the gif image but it is only showing the image icon and not the actual gif image.
    Can anyone please help??
    Thanks in advance,
    Balteo.

    do you use a special browser?
    if not, do you really expect a standard browser to understand this kind of non-HTML image tag?
    <image xmlns:xlink="http://www.w3.org/1999/xlink" xlink:show="embed" xlink:href="logo.gif" xlink:type="simple">check HTML 4.0 (http://www.devguru.com/Technologies/html/quickref/html_img.html)
    or XHTML(http://www.devguru.com/Technologies/xhtml/quickref/xhtml_img.html)
    for the correct tag syntax.

  • XSLT Mapper: a lot of unused import namespaces

    Hi.
    The only way I have found to substitute an "any" element with a particular one from other schema in the XSLT mapper is to import the schemas in the main one. The problem is when you import a lot of schemas, the result mapper defines all these namespaces at the root level of the xslt (just in case), whether they are used or not. That produces an unnecessary overhead in the xslt file size.
    Is there any way to clean up the result mapper, so only the needed namespaces will be defined?
    It could seem it is not very important, but now I have 150 namespaces defined, when only 7 are used.
    Thanks.
    Ramon
    Edited by: Ramon Gordillo on Jun 6, 2011 5:19 PM

    Hi.
    I have been watching for some solutions, like for example the wtp for eclipse, which allows you to select the namespaces and clean them manually (without further checks than a valid XML), but all of the solutions falls in the "select" expressions with xpaths referring namespaces (and some of them, also with QNames elements).
    Any help? Oracle masters?

  • Namespace problem The result is empty for the XPath expression

    I have a problem with BPEL namespaces. The webservice that my BPEL process is using has changed namespaces (i.e. the java code package names changed and therefore the namespaces associated with the packages.)
    Before there was only one namespace associated with this web services; now there are multiple namespaces.
    I have changed the namespaces in my .bpel file; however I get the result is empty for XPath expression:
    /nsxml0:getMailResponse/nsxml0:getMailReturn/nsxml1:mailOut
    Any help appreciated...:(

    hey b-o-s-t-o-n,
    have your verified that the namespace import is correct, and with the right prefix
    you xpath contains 2 namespace prefixes
    /nsxml0:getMailResponse/nsxml0:getMailReturn/nsxml1:mailOut
    so check the bpel file and maybe the wsdl that has been generated (that inclused the plnk extensions for your external service)
    this is the most common issue ..
    hth clemens

  • Saaj namespace problem

    Hi,
    I am trying to using saaj to create ebXML soap message. I have two problems:
    1) I cannot change the prefix of the Envelope, Header etc. I would like SOAP instead of soapenv.
    2) More importantly, it repeats the namespace uri on each element, which is not necessary as it is declared in a parent element.
    Example soap message from code:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmls
    oap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP="http://schemas.xmlsoap.or
    g/soap/envelope" xmlns:eb="http://www.oasis-open.org/committees/ebxml-msg/schema
    /mgs-header-2_0.xsd">
    <soapenv:Header>
    <eb:MessageHeader xmlns:eb="http://www.oasis-open.org/committees/ebxml-msg/sch
    ema/mgs-header-2_0.xsd">
    <eb:From xmlns:eb="http://www.oasis-open.org/committees/ebxml-msg/schema/mgs-
    header-2_0.xsd">
    <eb:PartyId xmlns:eb="http://www.oasis-open.org/committees/ebxml-msg/schema/
    mgs-header-2_0.xsd"/>
    </eb:From>
    </eb:MessageHeader>
    </soapenv:Header>
    <soapenv:Body/>
    I would like:
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmls
    oap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP="http://schemas.xmlsoap.or
    g/soap/envelope" xmlns:eb="http://www.oasis-open.org/committees/ebxml-msg/schema
    /mgs-header-2_0.xsd">
    <SOAP:Header>
    <eb:MessageHeader>
    <eb:From>
    <eb:PartyId/>
    </eb:From>
    </eb:MessageHeader>
    </SOAP:Header>
    <SOAP:Body/>
    Following is my code:
    SOAPConnectionFactory connFactory = SOAPConnectionFactory.newInstance();
         SOAPConnection connection = connFactory.createConnection();
              SOAPMessage message = MessageFactory.newInstance().createMessage();
              SOAPPart soapPart = message.getSOAPPart();
              SOAPEnvelope envelope = soapPart.getEnvelope();
              envelope.setPrefix("SOAP");
              envelope.addNamespaceDeclaration("SOAP", "http://schemas.xmlsoap.org/soap/envelope");
              envelope.addNamespaceDeclaration("eb", "http://www.oasis-open.org/committees/ebxml-msg/schema/mgs-header-2_0.xsd");
              SOAPFactory soapFactory = SOAPFactory.newInstance();
              Name messageHeader = soapFactory.createName("MessageHeader","eb","http://www.oasis-open.org/committees/ebxml-msg/schema/mgs-header-2_0.xsd");
              SOAPHeader header = message.getSOAPHeader();
              SOAPHeaderElement headerElement = header.addHeaderElement(messageHeader);
              SOAPElement from = headerElement.addChildElement("From", "eb");
              from.addChildElement("PartyId", "eb");
              SOAPElement to = headerElement.addChildElement("To", "eb");
              to.addChildElement("PartyId", "eb");
    Any ideas?
    Many thanks for anyone able to help with this.

    Axis that is part of jboss web services. Looks like it is an axis issue, but I must point out that the messageas are valid - just a little verbose.

  • Namespace problem while updating a desktop app

    Hello,
    I've searched on a lot of forums but didn't find anything accurate on my problem.
    I have an old AIR 2.0 desktop app that updated itself.
    I want to update it to the last 3.4 framework. So I followed instructions for the intermediate application to update (between 2.0 and 2.5).
    I manage to update from 2.0 to a Air 2.5 intermediate application, while still having the 2.0 namespace in the app descriptor file.
    But it is impossible for me to update this 2.5 application (with 2.0 namespace) to a 2.5 namespace !!
    Here si my update descriptor file :
    <?xml version="1.0" encoding="UTF-8"?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/2.5">
               <versionNumber>0.3.2</versionNumber>
               <versionLabel>Version for 0.3.2</versionLabel>
         <url>http://www.mywebsite/app.air</url>
         <description><![CDATA[
    Final test
               ]]></description>
    </update>
    But I'm having the error 16831 : "Application namespace and update.xml namespace are not compatible".
    It seems that my application only wants to update to another one with the exact same namespace.
    How this can be ?
    Thanks !
    I must say that I publish to AIR 2.5 with Flash CS5 and flashpro extension for air (in beta version) as Flash CS6 always overwrite the app descriptor while publishing (so it is impossible to change the namespace to 2.0 for example)

    Ok, after having searched a lot, I managed to understand what was going on....
    To those interested, the update descriptor must stay in a 1.0 namespace until the end of the process.
    When all is updated (app namespace to 2.5), you can use the 2.5 update descriptor namespace....

  • Import purchase - problem with delivery costs

    Hi guys,
    In case of import purchase, we are normally giving 3 to 4 types of delivery costs (like freight,agency charges etc).  If there is no transaction done against the PO, we are able to either change or add new delivery cost to the Purchase Order.  But if we try to make changes or add one more condition type (related to delivery cost), after preparing inbound delivery/goods receipt against the PO, it is not allowing.  Do we need to make any configuratin changes for this to happen.
    Please suggest us the way out for this problem.
    Thanks in advance,
    Chintu

    Hi ,
    No , you won't be able to make any changes specially to the said condition .
    Any adjustment u can done  in MIRO document .
    Thanks
    Dipak

Maybe you are looking for

  • Sql server grants access to specific login to database.

    i have created website for intranet and hosted it on server. for that i needed to create login "IIS APPPOOL\hi" in sql server 2008 for my application to access my "reportdb" database. "IIS APPPOOL\hi" has sysadmin and public server roles in sql serve

  • COMPUTERS AND ITUNES WILL NOT RECOGNIZ MY IPOD NANO

    MY NANO IPOD IS NOT RECOGNIZED BY MY COMPUTERS OR ITUNES.   WHEN I TRY TO SYNC IT IS IN GREY AND WILL NOT LET ME SYNC

  • Problems with edited photos in iPhoto

    Hi all, today I imported some photos from my iPhone into iPhoto. After I cropped the photo and tried to open it, it became black with a grey exclamation. (see photo) If I reverted the photo back to original it worked all well. I could not export the

  • MBP suddenly SLOW wifi connect!! help

    All of a sudden the wifi speeds on my MBP are very, very slow. Like 100-300kbps when on the very same home wifi network my iPhone gets 3mbps down. Is there any thing on my MBP I can check, config settings??? thanks for any help!!

  • Duplicate files showing

    Hello All, I have my music files on three different harddrives and it seems that Itunes in most cases are showing doulble if not triple of the same songs. Is there anyway of telling Itunes to look only in one directory in stead of all 3. I have over