Web service enabled BAPI - PI

Hai,
How can I find BAPIs for which web service is enabled (to use in Proxy examples, I dont have auth to SICF and related tcodes for activating etc.)
Regards,
Bobby

Hi,
You can easily expose a  BAPI as Web service.
Just have a look at following links:-
1. Web Service Creation Wizard
   [http://help.sap.com/saphelp_nw04/Helpdata/EN/e9/ae1b9a5d2cef4ea4b579f19d902871/content.htm]
2. Steps to Create a Web Service out of a SAP BAPI
    http://wiki.open-esb.java.net/Wiki.jsp?page=BAPIWEBSERVICE
Regards,
Chandra

Similar Messages

  • Have problem when generate Web Service from bapi function

    Dear all,
    Please kindly help me about generating Web Service from BAPI function, It does not success only this attached function.
    I have done so many function without any problems.
    I found 1 case that I use specific variable to be an import/ export then, it can't create as well.
    As for this one, I try so many changes but I can't success it as well.
    This is my function on R/3 4.6C, Dot net connector 2.0, Dot net Frame Work 1.1.
    FUNCTION Z_BAPI_ATTACHMENT_CREATE.
    ""Local interface: Type: Remote-enabled module
    *"  IMPORTING
    *"     VALUE(P_BOTYPE) LIKE  BORIDENT-OBJTYPE
    *"     VALUE(P_BO_ID) LIKE  BORIDENT-OBJKEY
    *"     VALUE(P_MSGTYP) LIKE  SOFM-DOCTP
    *"     VALUE(P_DOCTY) LIKE  BORIDENT-OBJTYPE
    *"     VALUE(P_RELTYP) LIKE  BRELTYP-RELTYPE
    *"     VALUE(P_FNAME) LIKE  RLGRAP-FILENAME
    *"     VALUE(P_OBJDES) TYPE  SO_OBJ_DES
    *"  EXPORTING
    *"     VALUE(RETURNMESSAGE) TYPE  CHAR50
    INCLUDE : <cntn01>.
    P_BOTYPE  TYPE  BORIDENT-OBJTYPE DEFAULT 'BUS2105'
    P_BO_ID   TYPE  BORIDENT-OBJKEY
    P_MSGTYPE TYPE  SOFM-DOCTP DEFAULT 'URL'
    P_DOCTY   TYPE  BORIDENT-OBJTYPE DEFAULT 'MESSAGE'
    P_RELTYP  TYPE  BRELTYP-RELTYPE DEFAULT 'ATTA'
    P_FNAME   TYPE  RLGRAP-FILENAME
    P_OBJDES  TYPE  SO_OBJ_DES
    TYPES: BEGIN OF ty_message_key,
    foltp TYPE so_fol_tp,
    folyr TYPE so_fol_yr,
    folno TYPE so_fol_no,
    doctp TYPE so_doc_tp,
    docyr TYPE so_doc_yr,
    docno TYPE so_doc_no,
    fortp TYPE so_for_tp,
    foryr TYPE so_for_yr,
    forno TYPE so_for_no,
    END OF ty_message_key.
    DATA : lv_message_key TYPE ty_message_key.
    DATA : lo_message TYPE swc_object.
    DATA : lt_doc_content TYPE STANDARD TABLE OF soli-line
    WITH HEADER LINE.
    First derive the Attachment's ( MESSAGE )document type.
    p_docty = 'MESSAGE'.
    CASE p_reltyp.
    In case of URls
      WHEN 'URL'.
        p_msgtyp = 'URL'.
    In case of Notes / Private Notes
      WHEN 'NOTE' OR 'PNOT'.
        p_msgtyp = 'RAW'.
      WHEN 'ATTA'.
    Take given parameter e.g. 'DOC', 'PDF' etc.
    P_MSGTYP = 'EXT'.
      WHEN OTHERS.
    ....exit
        EXIT.
    ENDCASE.
    Create an initial instance of BO 'MESSAGE' - to call the
    instance-independent method 'Create'.
    swc_create_object lo_message 'MESSAGE' lv_message_key.
    define container to pass the parameter values to the method call
    in next step.
    swc_container lt_message_container.
    Populate container with parameters for method
    swc_set_element lt_message_container 'DOCUMENTTITLE' p_objdes.
    swc_set_element lt_message_container 'DOCUMENTLANGU' 'E'.
    swc_set_element lt_message_container 'NO_DIALOG' 'X'.
    swc_set_element lt_message_container 'DOCUMENTNAME' p_docty.
    swc_set_element lt_message_container 'DOCUMENTTYPE' p_msgtyp.
    In case of URLs..it should be concatenated with &KEY& in the begining.
    CASE p_msgtyp.
      WHEN 'URL'.
      lt_doc_content = '&KEY&http://www.rmtiwari.com' .
        CONCATENATE '&KEY&' p_fname INTO lt_doc_content.
        APPEND lt_doc_content.
    In case of Notes or Private Notes, get the data from files on appl
    server or from wherever(? - remember background).
      WHEN 'RAW'.
        lt_doc_content = p_fname.
        APPEND lt_doc_content.
    In case of PC File attachments
      WHEN OTHERS.
        OPEN DATASET p_fname FOR INPUT IN BINARY MODE.
        IF sy-subrc EQ 0.
          DO.
            READ DATASET p_fname INTO lt_doc_content.           "2 of 27
            IF sy-subrc EQ 0.
              APPEND lt_doc_content.
            ELSE.
              EXIT.
            ENDIF.
          ENDDO.
          CLOSE DATASET p_fname.
        ENDIF.
    ENDCASE.
    'DocumentContent' is a multi-line element ( itab ).
    swc_set_table lt_message_container 'DocumentContent' lt_doc_content.
    Size is required in case of File attachments
    DATA : lv_doc_size TYPE i.
    DATA : l_file_lines TYPE i.
    DESCRIBE TABLE lt_doc_content LINES l_file_lines.
    READ TABLE lt_doc_content INDEX l_file_lines.
    lv_doc_size = ( 255 * ( l_file_lines - 1 ) ) +
    STRLEN( lt_doc_content ).
    swc_set_element lt_message_container 'DOCUMENTSIZE' lv_doc_size .
    Refresh to get the reference of create 'MESSAGE' object for attachment
    swc_refresh_object lo_message.
    swc_call_method lo_message 'CREATE' lt_message_container.
    Get Key of new object
    swc_get_object_key lo_message lv_message_key.
    Now we have attachment as a business object instance. We can now
    attach it to our main business object instance.
    Create main BO object_a
    data: LO_IS_OBJECT_A type SIBFLPORB. "type SIBFLPORB is unknown, so I
    DATA: lo_is_object_a TYPE borident.
    lo_is_object_a-objkey = p_bo_id.
    lo_is_object_a-objtype = p_botype.
    LO_IS_OBJECT_A-CATID = 'BO'.
    Create attachment BO object_b
    data: LO_IS_OBJECT_B type SIBFLPORB. "type SIBFLPORB is unknown
    DATA: lo_is_object_b TYPE borident.
    lo_is_object_b-objkey = lv_message_key.
    lo_is_object_b-objtype = p_docty.
    LO_IS_OBJECT_B-CATID = 'BO'.
    *TRY.
    *CALL METHOD CL_BINARY_RELATION=&gtCREATE_LINK
    EXPORTING
    IS_OBJECT_A = LO_IS_OBJECT_A
    IS_OBJECT_B = LO_IS_OBJECT_B
    IP_RELTYPE = P_RELTYP.
    CALL FUNCTION 'BINARY_RELATION_CREATE'
      EXPORTING
        obj_rolea    = lo_is_object_a
        obj_roleb    = lo_is_object_b
        relationtype = p_reltyp
      EXCEPTIONS
        OTHERS       = 1.
    Check if everything OK...who cares!!
    COMMIT WORK.
    if sy-subrc = 0.
      RETURNMESSAGE = 'S-Success'.
    else.
      RETURNMESSAGE = 'E-Error'.
    endif.
    ENDFUNCTION.
    Thanks in advance,
    Benjawan
    Edited by: Nitipat Chadchavalpanichaya on Oct 20, 2008 9:02 AM

    There is no any error message show up. It just the class
    Z_BAPI_ATTACHMENT_CREATE  doesn't create autometically as normal. I showed you as below.
    That means I can't call class z_bapi_attachment_create.
    ' <autogenerated>
    '     This code was generated by a SAP. NET Connector Proxy Generator Version 2.0
    '     Created at 21/10/2551
    '     Created from Windows
    '     Changes to this file may cause incorrect behavior and will be lost if
    '     the code is regenerated.
    ' </autogenerated>
    Imports System
    Imports System.Text
    Imports System.Collections
    Imports System.ComponentModel
    Imports System.Runtime.InteropServices
    Imports System.Xml.Serialization
    Imports System.Web.Services
    Imports System.Web.Services.Description
    Imports System.Web.Services.Protocols
    Imports SAP.Connector
      '@ <summary>
      '@ Client SAP proxy class
      '@ </summary>
      <WebServiceBinding(Name:="dummy.Binding", Namespace:="urn:sap-com:document:sap:rfc:functions")> _
      Public Class PRAttachment
        Inherits SAPClient
        '@ <summary>
        '@ Initializes a new PRAttachment.
        '@ </summary>
        Public Sub New()
        End Sub
        '@ <summary>
        '@ Initializes a new PRAttachment with a new connection based on the specified connection string.
        '@ </summary>
        '@ <param name="connectionString">A connection string (e.g. RFC or URL) specifying the system where the proxy should connect to.</param>
        Public Sub New(ByVal ConnectionString As String)
          MyBase.New(ConnectionString)
        End Sub
        '@ <summary>
        '@ Initializes a new PRAttachment and adds it to the given container.
        '@ This allows automated connection mananged by VS component designer:
        '@ If container is disposed, it will also dispose this SAPClient instance,
        '@ which will dispose a contained connection if needed.
        '@ </summary>
        '@ <param name="Cont">The container where the new SAPClient instance is to be added.</param>
        Public Sub New(ByVal Cont As Container)
          MyBase.New(Cont)
        End Sub
      End Class

  • WebLogic 10.3.0, web-service enabled session beans, and CMT transactions

    Does WebLogic 10.3 support CMT for JAX-WS Web-Service enabled EJB 3.0 session beans?
    When a client invokes the following Web service:
    @WebService
    @Stateless
    @TransactionManagement( TransactionManagementType.CONTAINER )
    public class TestService       
        @WebMethod   
        @TransactionAttribute(TransactionAttributeType.REQUIRED)
        public String echo( @WebParam( name = "param" ) final String param)
            Context context = new InitialContext();
            TransactionSynchronizationRegisttry registry =
              (TransactionSynchronizationRegistry)
                context.lookup( "java:comp/TransactionSynchronizationRegistry" );
            registry.putResource("foo", "bar");
            return param;
    }WebLogic throws this exception:
    SEVERE: Transaction does not exist
    java.lang.IllegalStateException: Transaction does not exist
         at weblogic.transaction.internal.TransactionManagerImpl.putResource(TransactionManagerImpl.java:2033)
         at weblogic.transaction.internal.TransactionManagerImpl.putResource(TransactionManagerImpl.java:2029)Is this a bug in WL 10.3.0?
    Thanks in advance.
    Edited by: user572625 on Aug 18, 2011 12:29 AM

    This is fixed now. Someone had defined a Servlet for the web service in web.xml that was preventing the EJB container to kick in.
    Edited by: user572625 on Aug 25, 2011 11:54 PM

  • HP Web Services enabled, but info sheet not printing

    Hi all
    Just installed my new LaserJet Pro MFP M128fw and networked it with a static IP to suit my network.
    Printer is accessible to ALL computers on the network.
    Can print, scan, copy and fax without ANY problem from any computer. Can ALSO print from my networked mobile phones.
    ALL computers, mobiles and my new HP printer are configured with static IPs. ALL have DNS of 8.8.8.8 and default gateways installed.
    NO problem accessing the net from any one of the computers or mobiles.
    The printer is  web service enabled and I am able to access the printer's web page from my computer wirelessly AT WILL.
    I can enable web services (successful enabling from both computer OR Printer) WITHOUT any problems. Able to view the email address sent by HP's ePrint service BOTH on the computer AND on the printer.
    Problem:
    Then comes the problem - I am unable to print the Information Sheet which contains the code to register my printer on the HP ePrint Website. Have tried entering the printer email ID (characters before the @) at the printer registration prompt, but the website says that it is invalid, because apparently, the Information Sheet print out on MY printer is required, to complete the registration of my printer for the HP ePrint services.
    Have tried removing web services from the printer and restarting and re-enabling. Have tried shutting down my router and restarting. Have tried at various times over the past 48 hours just in case it was an HP website overload. When I try to print the information sheet directly from my printer, it goes into perpetual "Connecting..." until it just goes off. NOTHING WORKS!!! NO ERROR MESSAGES!!! JUST NOT PRINTING THE INFORMATION SHEET.
    Am now beginning to feel that perhaps the EPrint service is not available for India, but can't seem to locate that information on the HP website. If so, would DEFINITELY look at it as a lacuna / default in terms of clarity and consumer service, as this was one of the principal reasons for my purchase of THIS particular model. Believe me, it wasn't cheap. 

    Hi Gappu,
    Thank you for the updates.
    I can definitely understand your reluctance to change how your network is setup. If you are like me you’d get started doing it and someone would interrupt enough that you don’t remember where you were when you were interrupted and something simple but important gets missed.
    I have included a link by @VisionAiry titled Check the Anti-Virus for Blocked Ports and Timed Scans and it is regarding the ports that are used. I’m wondering if one of the ports might not be configured correctly for ePrint.
    Please let me know how it goes.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Web services enabled RFC for SO creation in SAP  5.0 is not responding

    Dear Members,
    Third party application is not able to getting response from SAP R/3 web service enabled RFC.
    We have created a RFC for creation of Sales order by passing mandatory values into SAP thorugh third party application from outside SAP. Accessing RFC in SAP through Web service is not sending response properly. However Sales Order is getting created in the SAP system perfactly, in return to third party application to out side SAP through web service throughing an Exception.
    As standalone RFC in SAP, which is creating Sales order perfactly.
    Here we have deleted web service of RFC many times and recreated also, still the problem is not get resolved.
    Web services is got configured perfactly in the SAP, because other RFCs are working fine.
    Please someone suggest how to resolve this issue in case of Sales Order creation through web service enabled.
    Sudheer

    Hi ARC,
    Here the issue is that, Sales Order is getting created but while sending the Order num. to Webpage through web service then rasing below Exception.
    Runtime Error UNCAUGHT_EXCEPTION
    Except. CX_SOAP_CORE
    Date and Time 07.05.2008 20:13:24
    ShrtText
    An exception that could not be caught occurred.
    What happened?
    The exception 'CX_SOAP_CORE' was raised but was not caught at any stage in the
    call hierarchy.
    Since exceptions represent error situations, and since the system could
    not react adequately to this error, the current program,
    'CL_SOAP_TRANSPORT_EXTENSN_ROOTCP', had to
    be terminated

  • Enable Web Service access for a Web service-enabled client

    Hi,
    I want to access data in Oracle CRM On Demand from a Web services-enabled client. The "Oracle Web Services On Demand Guide" suggest the Web Services Access should be granted by Customer Care representative. By default, this access is enabled for the Administrator role for new companies. However my admin account can't access web services from a web enable client.
    Can anyone please suggest me the setting/step that i need to enable Oracle On Demand Web service access from a Web services-enabled client?
    Note: I am new to oracle on demand so my query can be a silly thing.
    Thanks & Regards
    Ravish

    I was able to resolve this issue. Actually, i was trying with trial account that don't allow the OCOD web service integration.

  • ARIS Web Services  enables and ARIS connect  in SM

    Hi all,
    1.How to enable the ARIS Web Services  enables in Solution manager?
    2.How To connect the ARIS Server to Solution manager?
    Regards,Neni

    Hi Neni,
    Did you get any chance to go through the below links? It will be much appreciated if you could share the effort taken from your end to find the answers so that the team can provide you exactly what you require than giving all!
    Prerequisites & steps needed to connect SolMan  to the Aris server?
    Re: ARIS and Solution Manager
    SolMan - ARIS synchronization guide and u201Cbest practiceu201D documents
    http://help.sap.com/saphelp_nw70/helpdata/EN/84/da224272eeda2ce10000000a1550b0/frameset.htm
    Re: Aris Installation
    Rajeev

  • How to perform auth check on Web Service calling BAPI in R/3 via XI?

    Hi all,
    We are running Net weaver PI 7.0 SPS11 and 4.6C R/3 and working on proof-of-concept project using BAPIs exposed on XI as Web Services and called from external SOAP client (MS SharePoint). We got it working fine with HTTPS and SOAP protocol as Sender and RFC Adapter as Receiver to R/3.
    Now we want to add authentication and authorization to this scenario...authentication will probably be SSO and SSL/HTTPS, but we are wondering how to handle authorizations in R/3? RFC Adapter channel is configured with system user, so once BAPI is called this use runs transactions in R/3 and in R/3, where the authorization is checked, we have no visibility which user requested Web service…
    Is there any way we could extract user is from HTTP header and have it dynamically used in RFC Adapter channel config? Or maybe there is another way to handle this?
    Any insights how to resolve this issue will be greatly appreciated.
    Thanks
    Margaret

    We found solution, PP can be configured on XI to have user running transaction known on R/3 backend system, so authorizations can be invoked.

  • Web Service Commit (BAPI inside out)

    Hi all,
    I want to use update BAPI through web service which made by Web Service Wizard.
    I know we usually have to use BAPI_TRANSACTION_COMMIT to commit.
    Can I call single web service with commit?
    I found optional configrations in Service Definision (TR- SE80).
    "Configration" Tab=>"Operation Profile".
    commit hundling
    tranaction hudling
    It seems we can commit without BAPI_TRANSACTION_COMMIT.
    I tried several options but it didn't work.
    And I could find any document in help.sap.com and SDN like
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/9b/dad1ae3908ee44a5caf57e10918be9/frameset.htm
    Requirement
    1) We want to use BAPI without rapping.
    2) We want to use Web Service Wizard for BAPI/RFC web service generation.
    Environment
    ERP6.0 NW7.0(SP18)
    Regards,
    Teru

    Teru,
    When the web service is made for the BAPI to update, through the wizard,
    1) the endpoint should be selected as BAPI after giving the service name and short text
    2) Next scree, choose the application and the BAPI you need for update
    3) On the next screen, you have the option to add BAPI commit function to the existing list of methods. There is a pushbutoon which appears at the bottom of the table - BAPI Commit/Rollback
    So, the we service will have the BAPI commit included along with the update BAPI. So you need to invoke only one webservice from your end.
    Hope this helps!!
    Regards
    Deepthi

  • Creating web service for bapi and consume in portal.

    Hi ,
    I am new to Web Services. This is my requirement I need to publish the functionality of bapi as a web service and consume the web service from portal side.
    I have followed these steps to create web service.In transaction se80 i have created service definiton and a wsdl file is generated.
    When i am exporting that WSDL file and creating a model in a webdynpro project. I am getting the following error. I dont know how to proceed further.Error while loading WSDL.Check error log for more details.
    Whether the proxies need to be generated?What is the purpose of it? Where the proxies need to be generated?
    Is Process integration needed to use web services?
    Kindly guide me how to proceed.
    Best Wishes
    Idhaya R

    the proxy is the object that make possible to use the service; even if service and consumer are on the same host, you need a proxy to use it.
    try to check this blog
    /people/thomas.jung/blog/2007/12/17/consuming-services-with-abap

  • Error running web service enabled from ApplicationModule Service Interface

    Hi,
    I have created a web service from from ApplicationModule Service Interface and exposed a view instance update operation. When I run the service (right click on serviceimpl and run), I am getting the following error
    <BEA-101371> Error: There was a failure when processing annotations for application context. Please make sure that the annotations are valid. The error is message
    Description     There was a failure when processing annotations for application context. Please make sure that the annotations are valid. The error is message
    Cause     The descriptor has an invalid servlet-class, filter-class or listener-class
    Action     Fix the descriptors in application or the library.
    I have looked at web.xml, weblogic.xml, but couldn't figure out the issue.
    Our packaging structuring is some like this.
    Model -> Contains EO's, associations
    UIModel -> Contains AM, VO's Webservices
    UI -> Jsp, taskflows.
    But when I tried created a sample application with Model and View Controller. and a webservice in Model project, it runs OK.
    Please guide with on this issue.
    Appreciate your help in advance.
    Regards,
    Vara

    I am getting the same error. What was the solution that worked for you? Please help

  • Ann: Web Services Enable your Database

    This article, published by the Web Services Journal, will give you an overview on how to turn your database into a web services provider and consumer
    http://otn.oracle.com/tech/webservices/content.html
    Kuassi

    Hi Noyesbox,
    Have you updated the firmware on your printer so the firmware datecode shows version 20110826?
    You can find the download, if needed, here.  After selecting an operating system you will see a firmware option with the download and directions.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Cant enable ePrint web services for Color LaserJet M551

    Hi,
    I've read all posts in this forum about the ePrint web services enabling issue and tried out all suggestions with no luck.
    Here is the situation:
    The printer works fine locally. I can print without problem.
    The printer is wired.
    All ports in my router are open for outbound connections, including UDP.
    Using communication logs in my router I can see that the printer can resolve the DNS-names using either my ISP DNS-server or the suggested 8.8.8.8 and 8.8.4.4. Using nslookup shows "registration-pro-site1print.houston.hp.com" resolves to 15.240.60.111 and "registration-pro-site2print.houston.hp.com" resolves to 15.201.224.79.
    This indicates that the printer can indeed resolve the addresses. The logs also reveils that the printer communicates with the servers (connection established and data transferred) over https (probably the web service) but still after some minutes the enabling process times out.
    I've tried this enabling procedure for several days now so my believe is that the registration servers should have worked some time during that period.
    I'm frustrated
    ....even more frustrated
    what am I doing wrong?
    Please help !!
    trying to setup eprint for my brand new LaserJet Color M551dn and it fails with the
    This question was solved.
    View Solution.

    For whom out there having the same problem as I had. As HP couldn't help me out I restored factory settings and reconfigured everything and voilá, suddenly the printer managed to enable web services and print out the print code.
    Good luck to you facing the same problem !!
    /MrQQ

  • Session enabled RFC Web Service Fails & WSDL has enablesession=false

    Please help  Thanks in Advance
    A stateful Webservice with 2 RFCs, consumed by a .NET application fails and the cause seems to be because of statelessness.
    The call to 1st RFC succeeds and the call to the 2nd RFC fails with the below error message:
    An exception with the type CX_SY_REF_IS_INITIAL occurred, but was neither handled locally,
    nor declared in a RAISING clause.Dereferencing of the NULL reference"
    Question:
    1- Even though the "Session-Oriented Communication" is checked, the WSDL has EnableSession as false. Is there any special step to make it true?
    2- Even though the SOA Manager says that the Session is enabled and SessionMode is Http Cookie, the HTTPFiddler doesn't show any cookie in the .NET side.
    3- Are Web Service enabled HRXSS RFCs capable of performing Session Oriented Communication?
    Eg. Can the RFCs HrxssPerInitPernr and HrxssPerReadP0002Us be called in a sequence?
    service ws = new service();
                ws.Credentials = new System.Net.NetworkCredential("abcd", "abcd");
                System.Net.CookieContainer cookie1 = new System.Net.CookieContainer();
                ws.CookieContainer = cookie1;
                //BELOW CALL SUCCEEDS
               HrxssPerInitPernrResponse response = ws.HrxssPerInitPernr(new HrxssPerInitPernr()
    { Infty = "0002", Pernr = "52222068", Userdate="2009-01-01" });
                HrxssPerReadP0002Us read = new HrxssPerReadP0002Us() { Infty = "0002"  };
              // BELOW CALL FAILS
                HrxssPerReadP0002UsResponse readResponse = ws. HrxssPerReadP0002Us (read);
                HcmtBspPaUsR0002 [] records = readResponse.Records;
    EXCEPTION
    System.Web.Services.Protocols.SoapException was unhandled
      Message="CX_SY_REF_IS_INITIAL:Exception CX_SOAP_ROOT occurred (program: CL_SOAP_RUNTIME_ROOTCP,
    include:CL_SOAP_RUNTIME_ROOT CM004, line: 110)
    An exception with the type CX_SY_REF_IS_INITIAL occurred,
    but was neither handled locally, nor declared in a RAISING clause.Dereferencing of the NULL reference"
      Source="System.Web.Services"
      Actor=""  Lang="en"  Node=""  Role=""   StackTrace:
           at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke  at HrxssPerReadP0002Us
    Edited by: Tony TB on Jul 2, 2009 9:56 AM

    to get this working you need to enable some services in transaction SICF
    to know a complete list of all services to be enabled check oss note number 517484
    particularly these nodes should be active
    /default_host/sap/bc/soap/wsdl and
    /default_host/sap/bc/soap/wsdl11
    (to get the error thrown by the server instead of page cannot be found, in your browser go to tools->internet options->advanced and uncheck the check box "show friendly error messages" and run the wsdl button again)
    Regards
    Raja

  • Enabling Web Services

    I've installed, uninstalled and re-installed driver & software in my Officejet Pro X576dw, employing both ethernet cabe and via wireless connection but neither method would enable Web Services.
    Has anyone encountered same problem and found a solution?
    Thanks,
    Rod

    Hi,
    I hope you were trying to register the printer directly from the printers front panel, here is one more method to enable werb service.
    Once you connect your printer with the wired network, let the printer fetch the IP address.
    Now connect your laptop or PC to the same network.
    Type the IP address of your printer in the address bar of the browser and hit enter.
    You will now see the Embeded Web Services Page.
    Navigate to the Web Service tab and click enable.
    Now the printer should get enabled and print an information sheet with the claim code.
    If you still didnt get the web service enabled on your printer, restart the wifi, printer and try again. Make sure you have a working internet connection.
    Kind Regards,
    Oliver
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"--Please mark the post that solves your problem as "Accepted Solution"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.

Maybe you are looking for

  • How do I transfer iMovie projects to dvd if I don't have iDVD?

    I compile a year's worth of home movie clips into one DVD every year to distribute to grandparents. I had used my mom's Mac that had iMovie and iDVD but finally bought my own macbook pro so I could do the project from the comfort of my own home. What

  • Copying text in a column and pasting it into email

    I'm trying to copy a list of email addresses that are in a column in Numbers. It either won't let me paste it in an email at all or if I can get it pasted in another place it pastes it almost like it was an image, not individual lines of email addres

  • How to send acknowldgent back to sender in SOAP-ASNYC scenario

    Hi I have an requirement, iam getting the changemaster data (single filed) from source system , i need to update it in SAP via PI, iam using SOAP>PI---->SAP, once updataion is done, i need to send back the status message, here i want to use soap-asun

  • BUG: Searching for the word "united" in Contacts returns far too many results

    To recreate this bug: 1. I open the Contacts App on my iPhone 5 running iOS 6.0.1. 2. In the search field within the app, I search for the word "united." (For example, if I am trying to located the address book card for United Airlines). 3. Instead o

  • ATV 2.0.1 podcast issue

    Updated last night, and have found an issue. Well an issue for me. I have stopped getting all video podcasts on my Imac to save space. Started getting them all in HD on my ATV. Now with the update, they sync back to my Imac. ***! Can this be turned o