Logical Path of  wsdl

Hi, I´m developing a Adaptive Web service Model in Webdynpro and i´m facing a problem trying to create a model, I don´t know how can i find the logical destination of the wsdl created on xi scenario, i need to give this path to be able to create the model, any clue?
Note: I´ve already used the phisycal path and doesn´t work
Thanks in advance

Matias I can access through URL from my pc to server and the WSDL is shown, the XI server and SHTTPD are running together in different ports but i got the same exception
Exception on execution of web service with WSDL URL 'http://ip-address:10080/MI_CODES.wsdl' with operation 'MI_CODES' in interface 'MI_CODES'
Here is my WSDL i think is ok, nothing is missing..
If we try to consume the webservice through other GUI like SOAP UI the service is successfully executed but i got an error:
<code>RecoverableException</code>
  <text>com.sap.aii.af.ra.ms.api.DeliveryException: XIServer:CANNOT_READ_PAYLOAD
WSDL:
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="MI_Codes"
                  targetNamespace="urn:company.com:xi:test"
                  xmlns:p1="urn:company.com:xi:test"
                  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:types>
    <xsd:schema targetNamespace="urn:company.com:xi:test"
                xmlns="urn:company.com:xi:test"
                xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <xsd:element name="MT_Resp" type="DT_resp"/>
      <xsd:element name="MT_Codes" type="DT_Codes"/>
      <xsd:complexType name="DT_resp">
        <xsd:sequence>
          <xsd:element name="resp" type="xsd:string">
            <xsd:annotation>
              <xsd:appinfo source="http://sap.com/xi/TextID">917b85306c7f11dca94c0018de7bac49</xsd:appinfo>
            </xsd:annotation>
          </xsd:element>
        </xsd:sequence>
      </xsd:complexType>
      <xsd:complexType name="DT_Codes">
        <xsd:sequence>
          <xsd:element name="Cve_Ur" type="xsd:string">
            <xsd:annotation>
              <xsd:appinfo source="http://sap.com/xi/TextID">7b8539c06c7e11dcb1f10018de7bac49</xsd:appinfo>
            </xsd:annotation>
          </xsd:element>
          <xsd:element name="Imp_Clc" type="xsd:string">
            <xsd:annotation>
              <xsd:appinfo source="http://sap.com/xi/TextID">7b8539c16c7e11dcc3590018de7bac49</xsd:appinfo>
            </xsd:annotation>
          </xsd:element>
          <xsd:element name="Num_Clc" type="xsd:string">
            <xsd:annotation>
              <xsd:appinfo source="http://sap.com/xi/TextID">7b8539c26c7e11dc83ba0018de7bac49</xsd:appinfo>
            </xsd:annotation>
          </xsd:element>
        </xsd:sequence>
      </xsd:complexType>
    </xsd:schema>
  </wsdl:types>
  <wsdl:message name="MT_Codes">
    <wsdl:part name="MT_Codes" element="p1:MT_Codes"
               xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"/>
  </wsdl:message>
  <wsdl:message name="MT_Resp">
    <wsdl:part name="MT_Resp" element="p1:MT_Resp"
               xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"/>
  </wsdl:message>
  <wsdl:portType name="MI_Codes">
    <wsdl:operation name="MI_Codes">
      <wsdl:input message="p1:MT_Codes"/>
      <wsdl:output message="p1:MT_Resp"/>
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="MI_CodesBinding" type="p1:MI_Codes"
                xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    <soap:binding style="document"
                  transport="http://schemas.xmlsoap.org/soap/http"
                  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
    <wsdl:operation name="MI_Codes">
      <soap:operation soapAction="http://sap.com/xi/WebService/soap1.1"
                      xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
      <wsdl:input>
        <soap:body use="literal"
                   xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal"
                   xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="MI_CodesService">
    <wsdl:port name="MI_CodesPort" binding="p1:MI_CodesBinding"
               xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
      <soap:address location="http://host:50000/XISOAPAdapter/MessageServlet?channel=:BS_WS:CC_WS&version=3.0&Sender.Service=ztest&Interface=ztest%5Eztest"
                    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>
Thank you Matias for your support

Similar Messages

  • File Adapter Write: Howto read partnerLinkBinding "logical path"-property?

    A process writes a file to a fileserver, and further down the process I'd like to publish the path+filename of the written file to an external partnerLink.
    I'm looking for something similar to ora:getPreference(), but instead reading a spesific partnerLinkBinding property not just the preferences-section property of bpel.xml.
    alternative 1) From within the BPEL-process I configure a logical path, but I can't see any api for reading that value (my property "OutBoundFiles").
    The value is read and used by the jca:operation within the FileWriter, and I supply a static value for it in the bpel.xml, like in:
    <partnerLinkBinding name="OutboundFileWriter">
    <property name="wsdlLocation">FileWriter.wsdl</property>
    <property name="OutBoundFiles">\\fileserver\OutboundDir</property>
    </partnerLinkBinding>
    alternative 2) The FileWriter wsdl OutboundHeader_msg has the one-and-only element "fileName", which also contains what I'm looking for.
    But I can't see how to read this element either, probably because the BPEL-team don't expose the value, due to the fact that they don't support writing to the element (there is no support for writing files to a dynamic path in version 10.1.2).
    Current workaround:
    Currently I use a preference property in which I copy the "OutBoundFiles"-value, and read it runtime using ora:getPreference(). Not a beauty.

    alternative 3)
    One could use a simple copy rule, by reading the bpel.xml-file:
    <copy>
    <from expression="ora:doc( 'bpel.xml', '/BPELSuitcase/BPELProcess/partnerLinkBindings/partnerLinkBinding[ @name = &quot;OutboundFileWriter&quot; ]/property[ @name = &quot;OutBoundFbFiles&quot; ]') "/>
    <to variable="emailpayloadUNCPath"/>
    </copy>

  • Logical filename and logical path in lsmw

    Hi all,
           I am doing a lsmw for purchasing info record . i created a logicalpath and assigned a physical path to that . i created a logical filename and assigned the logical path .but when i assign that to the lsmw it is throwing error as 'LOGICAL PATH DOES NOT POINT TO PHYSICAL DIRECTORY' .
    can anybody provide a solution for that .
    Thanks & regards
      Magesh anandan

    hi ,
      goto the tcode file then u find the relation between the logical and physical paths ...and their assignment..
    hope it will helps u..
    regards,
    venkat.

  • LSMW: Error concerning the logical path in Specify Files step

    Hi,
    I am trying on an ECC 6.0 EHP6 system to upload (open) POs from an existing SAP ERP system. Since I faced some complications in batch input recording method, I decided to go with the standard batch/direct input method.
    I selected object 0085 (Purchase Order) and method 0001 (Purchase Order). The program that is used is RM06EEI0. I followed all the usual steps, but in the "Specify Files" step I get the message:
    '****.lsmw.conv' does not exist; edit the logical path using transaction FILE
    Being aware of both the FILE and SF01 transactions, I created the logical path and file (through the FILE transaction). However, after the modification, I get the message:
    Logical file '****' is not assigned to physical file '****.lsmw.conv'
    There is also the related SAP Note 753511 (Logical and physical path and file name in transaction LSMW) that refers to this case.

    Hi,
    Click on specify file radio button>Legacy data-on the PC Front end
    where input file location like C:\mydocument\desktop\test.txt
    and give input in Name field: mydocument
    in delimiter section > select Tabular
    File structure section> tick on Field order matches source structure definition
    File type: Record end marker(Text file)
    then press enter key and other steps as same.
    Second thing you said that you have used Batch input recording
    after creation and recording finish , scroll the page below on recording and put a cursor unwanted field and remove unwanted input field.
    I hope your problem will resolve. you can find the steps pdf on Google search try now.
    Thanks
    Sanjeet Kumar

  • Logical path in lsmw

    hi friends,
    i have been uploading using the direct input method in lsmw.it is requiring the logical path and the logical file to be given.i tried to create them using the transaction FILE.but while using that in LSMW it is giving error stating that logical path doesn't point to the physical directory.can any how let me know how to create a logical file and logical path.
    thanks in advance.
    -senthilkumar

    hi ,
      goto the tcode file then u find the relation between the logical and physical paths ...and their assignment..
    hope it will helps u..
    regards,
    venkat.

  • Logical Path Problem

    hi,
    Good day guys
    Ive created the Logical path for mmi interface. its working fine. but in the logical path ive given the drive is H:
    Bcoz in the dev system drive is H: one which is maintain the file.
    But for the Quality and Production , Drive is different.. its in D:
    How to solve it? can any one plz tell me
    CALL FUNCTION 'FILE_GET_NAME'
        EXPORTING
    *   CLIENT                        = SY-MANDT
          logical_filename              = lv_log_file
    *   OPERATING_SYSTEM              = SY-OPSYS
          parameter_1                   = lv_log_file
    *      parameter_2                   = sy-uzeit
    *      parameter_3                   = '.txt'
          use_presentation_server       = 'X'
    *   WITH_FILE_EXTENSION           = ' '
    *   USE_BUFFER                    = ' '
    *   ELEMINATE_BLANKS              = 'X'
    IMPORTING
    *   EMERGENCY_FLAG                =
    *   FILE_FORMAT                   =
       file_name                     = outfile
    * EXCEPTIONS
    *   FILE_NOT_FOUND                = 1
    *   OTHERS                        = 2
      ELSE.
        CONCATENATE outfile sy-datum sy-timlo '.txt' INTO outfile.
      ENDIF.

    When you are not in development, you can assign a different physical path to the same logical path in your staging system via the file transaction. As long as you use the logical path name in your code, it will be interpreted correctly with the setup in the system.

  • Finding the logical path

    How to find the logical filename for the given ARCHIVE object.
    I want to know the logical file name of FI_FICA object.
    Can any one guide me.
    Thanks,
    Shree

    Hi Sree,
    I don't have SAP system right now to check it.
    I think if you know the physical path, logical path can be found.
    Please check this thread for further reference.
    https://forums.sdn.sap.com/post!reply.jspa?messageID=5726662
    Thanks and Regards,
    Guru

  • Logical Path and File Name

    Hi Everybody,
    How could I check the actual value of 2 variables which I defined with transaction \nFILE for the Logical Path and the logical file name?
    Background to this question is that I am experiencing problems in using them and want to check if the variables have correct values.....
    Thanks in advance
    FedeX.

    Hi FedeX,
    Did not get exactly what you wanted.
    May be you can try this: You can check the varibale values in the table V_PARAMVAL.
    Bye
    Dinesh

  • Unable to see the logical path and file created in FILE tcode from AL11 and unable to upload the file to this path from front end

    Hi Experts,
    I have created the logical path and filename in FILE tcode.I am trying to upload the pdf file to application server by using this path.But
    I am getting message like "Unable to open the file".Even I cannot find the this path in AL11 tcode.Kindly anyone advise how to upload pdf file using
    custom path and file created from FILE tcode.
    Thanks & Regards,
    Anusha.

    Hi Anusha,
    Please give as below.
    I forget to say you cannot open the PDF in AL11 and for that you need some configuration, i think it can be done using content server,not sure completely please wait for some more suggestions.
    Regards,
    Pavan

  • Logical path using in abap program

    hay,
    I want to create file in application server directory.
    so i want the user to select the Logical path and file name from screen.so that he can create the file and seved in selected logical path.{path used must be from Instance profile DIR_LOGGING,GLOBALPATH directory etc).
    could you pls tell me how to do this using parameter for user input selecting FILE PATH.
    Do we have Functional module for Retrieving physical path
    from logical path?
    could you pls help me..
    ambichan.

    hey,
    Thanks for your reply.
    Instead of using logical file name as input, can we allow the user to select logical path using parameter?
    I want user to select Logical path or logical file name from parameter. is it possible?
    (I want to avoid user to input insteal want to allow user to select the path)
    ambichan
    Message was edited by: ambi chan

  • Logical path and syntax groups

    WE know that we may define ligical file & logical file path. It is said that if we link  a logical path to a logical file the logical file is valid  for all syntax groups  thgat have been maintained  for that logical path?
    Could some one explain  how to note  the syntax groups  that haver been maintained for that logical   path?
    Why is it not that all listed syntax groups are valid?

    Hi FedeX,
    Did not get exactly what you wanted.
    May be you can try this: You can check the varibale values in the table V_PARAMVAL.
    Bye
    Dinesh

  • Logical path creation for an InfoSpoke

    Hi,
    I have an InfoSpoke for which I need to create a Logical Path. All I know is it involves some commands in MSDOS may be. Could anyone please let me know the procedure for the same?
    Thanks.

    Hi Bobs,
             Go to File trnx -> drill down the Logical File Path Definition -> Clcik on  "Create a logical file path" in middle of the screen  ->
    Then it will prompt for details of logical path you want to create
    EX: you can specify in the same lines as give below
    Logical path        ZXXXXXXXXXX                  
    Name                 Description of ZXXXXXXXXX
    Syntax group      UNIX     Unix compatible
    Physical path     /ABC/XYZ/<FILENAME>
    ZXXXXXXXXX is the logical path you want to create
    /ABC/XYZ/<FILENAME> -> /ABC/XYZ/ is the physical path in your server where your files will stored. dont forget to give filename within <> as shown above.
    Just save after that
    Regards
    Sunil

  • Logical path for getting a Flat file from application server

    Hi All,
    We have loaded some .csv files to application server, what is the logical path we have to mention in the infopackage scheduler screen? please guide me how to give the path for getting a flat file from application server.
    Thanks,
    Sairam.

    Hi Sairam,
    I hope you know which location you have saved in the Application server.
    Now if you go to the Infopackage and click on the "External Data" tab, there you will see Radio Buttons for
    1) Client Workstation
    2) Application Server
    Choose the second radio button, then in the Field "Name of the File" you will be able to use the F4 help and browse AL11 transaction through this option. You can then choose the File.
    Hope this helps
    Regards,
    Praveen.

  • Logical path

    Hi All,
    How to create logical path in SAP.
    thanks in ADV.

    Hi,
    Use the FILE transaction to create the logical file path.
    The table PATH stores this logical file path.
    You can retrieve the physical file path by supplying logical file path to FM FILE_GET_NAME_USING_PATH.
    Hope this helps.
    <b>Please reward points to all helpful answers and close the thread.</b>
    Regards,
    Amit Mishra

  • LSMW - No logical path specified

    Hi Experts,
    Am developing a Project to upload the data, so, am using spread sheet from my C drive..........but, am getting the following error,
    No logical path specified
    Message no. /SAPDMC/LSMW_OBJ_060046
    So, pls, let me know that,
    1 - How to fix it?
    2 - Why its throwing?
    thanq

    In the "Specify files" step, you see following 3 nodes: Legacy Data, Read Data & Concerted data.
    Double click on Converted data where you get a popup & you need to mention the logical path & Logical file name. ( Normally LSMW will be the logical path & specify the same path as presentation server path / File.
    If you do not have a logical path - LSMW, create one with tx: FILE.
    Regards.

Maybe you are looking for