Working with XSLD mappiing using Altova XML SPY 2007

will any one to give me some inputs regarding the working with SPY XML , i have never worked with it please help me
thanking you
sridhar

Hi;
XML spy is a tool which will help you out in doing XSLT mapping.
But you will have to design your logic by your self
download XML spy from http://www.altova.com/download/xmlspy/xml_editor_enterprise.html
XSLT mapping
/people/prasadbabu.nemalikanti3/blog/2006/03/30/xpath-functions-in-xslt-mapping
Mudit

Similar Messages

  • Working with XSLD mappiing using Altova map force

    i have taken the mapping file which is in .XSL from the import archive and put in Altova map force for further adding certain fields , but it is showing me a error which is UNABLE TO DTERMINE THE SCHEMA TYPE (DTD W3C SCHEMA)
    please help me in this
    thanking you
    sridhar

    Sridhar,
    If you want to add new fields then first add the fields in your source structure and target structure and reimport the message types both of them in altova so that you will have the schema for them. Then you can do the mapping for these fields. This is what it is complaining about.
    Regards,
    ---Satish

  • How to convert XML into XSD Using Altova XML Spy

    Hi,
    How to convert XML file into XSD Using Altova XML Spy.
    I want to use that XSD as an External Def in my IR
    Regards
    Suman

    hi
    Following is the path where you could get the PDF's and zip file.
    https://www.sdn.sap.com/irj/sdn/howtoguides?rid=/webcontent/uuid/5024a59a-4276-2910-7580-f52eb789194b [original link is broken]
    please check out the following Heading, and at the bottom corner you will find the download option where you will get the zip file:
    How to Generate XSD Schemas from Existing MDM 5.5 Repositories
    You can download xomlite45.jar from sdn
    copy the jar file to your java installation location like c:>java in
    Java –jar xomLite45.jar MyFile.xml
    then you get correspondig MyFile.xsd
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bf0e8a97-0d01-0010-f0a2-af3b18b7f4eb

  • When will we go for Altova xml spy testing in case of soap scenario ??

    Hi
    suppose I have a scenario like this: rfc-xi-soap. In this scenario if somebody say's testing the scenario using Altova xml spy means Altova xml spy will be acting as webservice ?? what is the ( or is there) significance of below URL in testing ??
    http://<host>:<j2ee-port>/XISOAPAdapter/MessageServlet?
    channel=<party>:<service>:<channel>
    thanks
    kumar

    Hi Kumar
    I am using XmlSpy for following reasons ::
    *) To check & confirm the Request/Response/Fault Structure of the WebService.
    *) To check the whether the WebService is UP or not, in case someone has reported an issue.
    *) To develop the xsd structure for the WebServices, in case I am getting different structure after importing the WSDL in XI. Like in the case of this Weblog -->
    /people/shabarish.vijayakumar/blog/2006/03/23/rfc--xi--webservice--a-complete-walkthrough-part-1
    In this response structure is created, you can also use other tools for creating xsd.
    - Lalit -

  • WSDL frm  Altova xml spy

    How do we generate WSDL files using Altova xml spy....Is there any tutorial/ beginners guide available for that...

    Alexander,
    There is a WSDL tutorial in User Manual of Altova XML Spy Help. Just go through that which gives you an idea of how to generate the WSDL file.
    Also go through this weblogs which may give some information:
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi
    /people/siva.maranani/blog/2005/03/01/testing-xi-exposed-web-services
    ---Satish

  • Usage of Altova XML Spy

    Hi,
    My Scenario is IDOC-XI-SOAP
    Is there any chance to use the XML Spy here,
    What are all the possibilities to use the XML Spy and in which scenario's
    Regards
    Suman

    Hi,
    Then if it is the case means,
    In IDOCXISOAP Scenario, how can i check the end to end functionality whether it is working correctly or not
    I dont want to interact with the Webservice directly So first i want to check the functionality and then i will interact with the webservices
    Then in this case what shld i do
    Regards
    Suman

  • XSLT Mapping By Altova XML SPY

    Hi Gurus,
    I am new to XLST mapping, I want to know how to debug the XSLT mapping by using the Altova XML spy . please explain me in detail.
    I have studied in the Altova XML Spy site but i didn't understood .
    Thanks and Regards,
    Ram.

    Hi,
    there is a video showing how to do that :
    http://www.altova.com/videos.asp?type=0&video=xslt
    is it any clearer now ?
    Regards,
    Michal Krawczyk

  • Altova XML Spy parsing issue

    I wonder if anyone can help.
    Pasted below is an standard WSDL file has generated by BPEL Designer. However, XML Spy wont validate it, reporting:
    "The file is not valid. Unexpected element 'plnk:PartnerLinkType' in element definitions"
    Can anyone help?
    many thanks
    Vince
    <?xml version="1.0"?>
    <definitions name="a"
    targetNamespace="http://www.a.com"
    xmlns:tns="http://www.a.com"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    >
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    TYPE DEFINITION - List of types participating in this BPEL process
    The BPEL Designer will generate default request and response types
    but you can define or import any XML Schema type and use them as part
    of the message types.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <types>
    <schema attributeFormDefault="unqualified" elementFormDefault="qualified"
    targetNamespace="http://www.a.com"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="aRequest">
    <complexType>
    <sequence>
    <element name="input" type="string"/>
    </sequence>
    </complexType>
    </element>
    <element name="aResponse">
    <complexType>
    <sequence>
    <element name="result" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </types>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    MESSAGE TYPE DEFINITION - Definition of the message types used as
    part of the port type defintions
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <message name="aRequestMessage">
    <part name="payload" element="tns:aRequest"/>
    </message>
    <message name="aResponseMessage">
    <part name="payload" element="tns:aResponse"/>
    </message>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PORT TYPE DEFINITION - A port type groups a set of operations into
    a logical service unit.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <!-- portType implemented by the a BPEL process -->
    <portType name="a">
    <operation name="process">
    <input message="tns:aRequestMessage" />
    <output message="tns:aResponseMessage"/>
    </operation>
    </portType>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PARTNER LINK TYPE DEFINITION
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <plnk:partnerLinkType name="a">
    <plnk:role name="aProvider">
    <plnk:portType name="tns:a"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>

    Alexander,
    There is a WSDL tutorial in User Manual of Altova XML Spy Help. Just go through that which gives you an idea of how to generate the WSDL file.
    Also go through this weblogs which may give some information:
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi
    /people/siva.maranani/blog/2005/03/01/testing-xi-exposed-web-services
    ---Satish

  • Need an equivalent to Altova XML Spy Windows software

    In our company our publishing dept is gradually moving to Mac. One of their programs they use is Altova XML Spy which is an XML editor.
    Does anyone know a Mac complaint XML Editor that is similar in looks, functionality as Altova XML Spy?
    The users want something that is very similar for lower learning curve.
    Thanks
    JTS

    You might take a look at Exchanger XML. I haven't used it myself, but in features it looks pretty similar to XML Spy. It has the additional advantage of being multiplatform, so if your company keps some PCs, you could potentially run the same XML editor on all your systems.

  • My Viewsonic monitor won't work with the Imac using the Mini Port to DVI adapter.

    My Viewsonic monitor won't work with the Imac using the Mini Port to DVI adapter. I also tried the HDMI to DVI adapter ane the Mac-Mini with same result. The monitor does work on my older Macbook Pro that has the DVI connector. Is it a Software/Driver issue ?

    Should be extremely simple, please carefully read Connect multiple displays to your Mac. If you still have problems then it's probably a cable issue that would be resolved by replacing the adapter cable. You should be using this adapter. If you are using a third party adapter that might be your problem!

  • I am looking for a task app that will work with MS Exchange using SecurID. Any suggestions?, i am looking for a task app that will work with MS Exchange using SecurID. Any suggestions?

    My company uses MS Exchange with RSA SecurID. I also have an iphone 5 and i would like a good task app to manage my tasks on the go. The problem is all the task apps ive tried wont work with the SecurID. Any suggestions on a good app which will work with SecurID? thanks

    Only two devices on our plan, so not so much an issue. And I have found myself using it much more than I thought I would when we got them (also first smart phones for both of us). Even got my wife to use hers for checking email while we were out of the country (big step forward for her ). I'm very interested in the ApplePay, but will want to wait a bit before diving into it. And since both phones are still in great working order, will likely wait a bit for the upgrade (sometime next year?). Will depend, I suppose, on the kinds of deals we see and what the plans turn out to be for updating my iPad and getting here one.

  • Working with executing query using IExecution

    Dear EP friends,
    i am trying to executing a query using IQuery, but i am getting com.sapportals.connector.metadata.CapabilityNotSupportedException
    exception.
    As i digged the error, i found IQuery is deprecated and i need to use IExecution from https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/javadocs/nw04/sp12/j2ee engine/deprecated-list.html
    how to work with IExecution??
    thanx in advance
    regards
    kantha

    Hi Laxmi,
    were you able to do this?? I have exactly the same problem.
    Please let me know if you have already done this.
    Regards,
    NArahari

  • Is the MacBook Air recommended for working with RAW photographs using Aperture or Lightroom and perhaps Photoshop?

    Is the MacBook Air recommended for working with RAW photographs in Aperture and Photoshop, or do I need a more powerful MacBook ?   The relative lack of weight of the AIr is what attracts me to it.

    For doing Photography with RAW files in either Aperture or Photoshop, the new MacBook Air is fine, but for Photoshop CS6 some of the filters and plugins really need a better graphics card and plenty of RAM.
    You'll also want an external disk if you are going to be doing lots of shooting.
    Summary:
    Yes, you can use an air but you'll want external storage and at least 8GB of ram.
    Or go MacBook Pro with 16GB ram with the 650M card.

  • Is there a download for Mavericks to work with Epson printer using EFI Fiery 4.5Xpress?

    Working with OS 10.9.1, we've purchased the Fiery 4.5 Xpress software for the Epson Stylus Pro 4900, when trying to send a PDF to the printer, I keep getting a "Not supported" error. Is there a patch to fix this incompatibility?

    Not from Apple. It would have to come from Epson. Consult their tech support.

  • Error while testing WSDL in Altova XML spy  tool

    Experts,
        I am testing on a scenario. SOAP to Proxy synchronous. This scenario is working fine in production.I have used the HTTP security level as "HTTPS with client authentication" in SOAP adapter. I am getting the following error in Altova while testing the wsdl in Test environment. Anyone please help me out in teh below issue.
    <?xml version="1.0"?>
    <!-- see the documentation -->
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
         <SOAP:Body>
              <SOAP:Fault>
                   <faultcode>SOAP:Server</faultcode>
                   <faultstring>Server Error</faultstring>
                   <detail>
                        <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
                             <context>XIAdapter</context>
                             <code>ADAPTER.JAVA_EXCEPTION</code>
                             <text><![CDATA[
    java.security.AccessControlException: https scheme required
         at com.sap.aii.af.mp.soap.ejb.XISOAPAdapterBean.process(XISOAPAdapterBean.java:889)
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl0_3.process(ModuleLocalLocalObjectImpl0_3.java:103)
         at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:292)
         at com.sap.aii.af.mp.processor.ModuleProcessorLocalLocalObjectImpl0_0.process(ModuleProcessorLocalLocalObjectImpl0_0.java:103)
         at com.sap.aii.af.mp.soap.web.MessageServlet.callModuleProcessor(MessageServlet.java:178)
         at com.sap.aii.af.mp.soap.web.MessageServlet.doPost(MessageServlet.java:478)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
              ]]></text>
                        </s:SystemError>
                   </detail>
              </SOAP:Fault>
         </SOAP:Body>
    </SOAP:Envelope>
    Thanks
    Veeru

    Vijay,
       I have tested using HTTP also but teh same error saying as HTTP schema required.
    Any other suggestions.
    Thanks
    Veeru

Maybe you are looking for

  • How to see Canon HDV native 24p video on a CRT external monitor?

    Mac Pro 2009, FCP 7, brand new install- I'm trying to view Canon HDV native 1080/24p video in my timeline via s-video to a JVC TM-H150C external 15" CRT monitor (or via component if I buy the additional JVC card). The footage is from a Canon HV40 cam

  • My phone is not working after updating to OS 4.3

    Hi there. I'm running Windows 7 Ultimate 64-bit. I have the latest version of iTunes which I downloaded today before updating my phone. So I updated my iPhone 4 from 4.2.# OS to 4.3 OS as iTunes recommended me to. Everything was going fine, but as th

  • Mac Pro keep freezing and powering off itself

    I have a Mac Pro 2008. For weeks now, it will start, work for plus minus 4 minutes and freeze or go off itself. There is no authorised maintenance in my country. Has someone experience the same before ? Have tried all reset, etc.. Does it has to do w

  • FCPX re-initialize file links

    I am using FCPX 10.1.4 I have transferred all my clips from an USB2 HD to a Firewire 800 HD - 100% identical setup Of course all clips appear now in red in the libraries. Is there a way to change the source disk, as only the old disk is searched for

  • How to follow a question and not a whole community?

    How to follow a question and not a whole community? THanks.