Create/Copy a Service

Hi all,
I need to copy a standard transaction of SRM in Z namespace and make some logical changes in it. To be able to use this transaction from web, I need to create a new service in Z namespace as well. I tried creating a new service in SICF by copying the standards characteristics, but the service does not work.
A communication failure error is given.
Please correct me if wrong. Can i use the standard ITS service to call my Zprgram??
Regards
Ali

Raja,
This has already been done. And the class 'CL_HTTP_EXT_ITS' has already been added. However upon testing the service in SICF that this error is given
The following error text was processed in the system ABCD3 : Communication failure
The error occurred on the application server ABCD and in the work process 0 .
The termination type was: IMC_CANCEL_TX
The ABAP call stack was:
Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_HTTP_EXT_ITS===============CP
Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
Module: %_HTTP_START of program SAPMHTTP
What could be wrong??
Regards.

Similar Messages

  • Notification data copy to Service orders created from sales order.

    Hi,
    In our business scenario, we are creating sales order from service notification & service order from sales order. Document flow will be Service Notification  -> Sales Order -> Service Order.
    Here user wants that Notification data to be copied to service order. This is possible when we create service order directly from notification. Buit in our case we are not creating service order directly from Notification, we are creating service order from sales order. in this case notifiationdata is not getting copied to service order.
    Our ABAPer's are also tried to find the exit or enhancement points, but not able to find any thing for this requirement.
    Pl. suggest, how to do it.
    Thank you in advance.

    The only way I have seen to do this kind of billing is using Resource Related Billing (RRB) and customizing of the Dynamic Item Processer Profile (DIP Profile)
    It is not exactly like a simple flow of Notification > Sales Order > Service order (with all of the problems of how to copy notification data through to Service order) but might be a possible solution for you ?
    [http://help.sap.com/saphelp_erp60_sp/helpdata/en/3c/abae15413911d1893d0000e8323c4f/frameset.htm]
    This link will take you to the main CS help but then drill down into Call Management > Billing > Resource Related Billing > Billing Scenarios.
    regards,
    Tony

  • Copy a service P.O. to create a new service purchase order

    I want to create a new service purchase order with items category D. However when I give ref. of some another purchase order the vendor and org. data fields become grey. How do I change these fields in new purchase order which I want to create? In case of material P.O. these fields are editable.
    Pl. help.
    Regards.

    Dear,
    Please check at the time of Service order creation the document type of purchase order is for services. If no please first change document type in ME21N select document type for service po then enter reference of document number in field of purchase order and it's line item at item detail level.
    So please compare your process of purchase order creation with below detail.
    Enter ME21N -Select document type for po.
    Then enter purchase order number in field of reference purchase order field. then check your data.
    Regards,
    Mahesh Wagh.

  • Creating a "Business Service" from a WSDL: Can't initialize WsdlEntryHelper

    I'm working through a "HelloWorld" setup of Weblogic (10.0.3.5) and OSB (11.1.1.5.0) using OEPE 11.1.1.7.2.
    I have a OSB Project with a Weblogic Web Service. I've generated a WSDL and when I try to copy/paste or drag-and-drop or load the WSDL file through the Business Service Configuration I always get the following error:
    Description     Resource     Path     Location     Type
    Could not initialize class com.bea.wli.sb.resources.wsdl.helpers.WsdlEntryHelper     HelloWorldService.wsdl     /HelloWorld_SB     line 1     ALSB Synchronization Error
    If it helps, the WSDL is linked below. Any ideas? Thanks.
    http://pastie.org/3438419

    I was able to recreate the test WS project and get to the same error as before. The difference is I didn't create an EAR project nor endpoint interfaces. It published fine with this bare-bones setup.
    Can someone please take a look at my steps and see if I'm doing anything wrong and if you know how to get around it? Trying to get just the most simple local WS on OSB has taken days and I really need to get to work on something productive!
    I'm pasting my notes below, but since the forum doesn't cooperate with my spacing, I've pasted a more readable version at pastie:
    http://pastie.org/private/5dlmjcbkrjzzmurt2f04g
    STEPS FOR CREATING A TEST WS
    ============================
    1) File -> New -> WebLogic Web Services -> Web Service Project
    a) Project name: Foo_WS
    b) Location: C:\workspaces\osb\TEST0_WS
    c) Target runtime: Oralce WebLogic Servier 11gR1 PatchSet 4
    d) Default Configuration
    e) EAR Membership: unchecked
    d) Finish
    2) Under "Servers" tab, right click the WebLogic Server and add Foo_WS
    3) In the "Foo_WS" project Right click 'src' -> New WebLogic Web Service
    a) Name: Foo
    b) Package: foo
    c) Do not check 'Generate Service Endpoint Interface'
    d) Click Finish
    3) Load Foo.java
    a) Change Foo.hello() to return a String and take a String argument
    b) Change the class annotation to:
    @WebService(name = "Foo", targetNamespace = "http://foo", serviceName = "FooService", portName = "FooPort")
    4) Republish to the server
    5) Check that it is running, load "http://localhost:7001/Foo_WS/FooService?WSDL". See output:
    <?xml version='1.0' encoding='UTF-8'?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.5. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.5. --><definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://foo" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://foo" name="FooService">
    <types>
    <xsd:schema>
    <xsd:import namespace="http://foo" schemaLocation="http://localhost:7001/Foo_WS/FooService?xsd=1"/>
    </xsd:schema>
    </types>
    <message name="hello">
    <part name="parameters" element="tns:hello"/>
    </message>
    <message name="helloResponse">
    <part name="parameters" element="tns:helloResponse"/>
    </message>
    <portType name="Foo">
    <operation name="hello">
    <input message="tns:hello"/>
    <output message="tns:helloResponse"/>
    </operation>
    </portType>
    <binding name="FooPortBinding" type="tns:Foo">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
    <operation name="hello">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="FooService">
    <port name="FooPort" binding="tns:FooPortBinding">
    <soap:address location="http://localhost:7001/Foo_WS/FooService"/>
    </port>
    </service>
    </definitions>
    6) Back to OEPE: Create New OSB Configuration Project: name = Foo_Conf, ignored advanced settings, Finish
    7) Add Foo_Conf to the server and publish. Now the OWL Server 11gR1 PatchSet 4 at localhost has 2 projects: Foo_Conf and Foo_WS
    8) Create New OSB Project: Project name: Foo_SB, OSB Configuration: Foo_Conf
    9) Under Foo_WS project, right click Foo.java -> WebLogic Web Services -> Generate WSDL (created a .wsdl and .xsd)
    10) Drag-and-drop FooService.wsdl and FooService_schema1.xsd from Foo_WS to Foo_SB
    a) ERROR:
    Description Resource Path Location Type
    Could not initialize class com.bea.wli.sb.resources.wsdl.helpers.WsdlEntryHelper FooService.wsdl /Foo_SB line 1 ALSB Synchronization Error
    ...I have no idea how to procede. I've been using "The Definite Guide to SOA 2nd Edition" to guide me along. I'm stuck here because I want
    to create a business service and proxy service utilizing the first Web Service Project I made (Foo_WS).
    Any advice please?

  • Copy of Servicie not display

    Good Night
    I am working with the release 6.0
    I want copy the service Leave request to Z.
    I am doing the following steps:
    T.Code--->PTARQ
    1 Step
    Employee Self-Service>General Settings>Homepage for Self-Services>Resources>Define Resources.
    I copy the resource Object Key EMPLOYEE_LEAVEREQUEST_SERVICE05 to ZEMPLOYEE_LEAVEREQUEST_SERVICE05
    2 Step
    Employee Self-Service>General Settings>Homepage for Self-Services>Services>Define Services.
    I copy the service Standard
    EMPLOYEE_WORKTIME_LEAVEREQUEST05 to
    ZEMPLOYEE_WORKTIME_LEAVEREQUEST05.
    And link the resource ZEMPLOYEE_LEAVEREQUEST_SERVICE05 to this service Z.
    3. Step
    Employee Self-Service>General Settings>Homepage for Self-Services>Services>Assign Services to Subareas
    I assign the service Z in the Subareas
    EMPLOYEE_WORKTIME_SUBLEAVEREQUEST_2005.
    The problem that i have is that in the portal not is display the service Z in the subarea that i create.
    Someone can help me. Someone can help me. What can to be doing bad?
    Regards

    Hi Bala
    I used the old one.
    I copy the resource of a standar,copy  the service of a standar ,assigning the service to subarea standar and subarea to area standard.
    I not understand, because the portal not display the service Z in the portal.
    Regards

  • External Reference number not copied in Service Confirmation

    Hi,
    We are on CRM 5.0 SP11. We have Mobile Service 5.0 SP11.
    In Mobile Service in the Service Order creation screen we have a window to input External reference number. When we create a Service Confirmation as a followup document of Service Order, SAP by default only allows to copy Reference Object,Subject and notes (both header and item level) to the Confirmation.
    Does anyone have idea how we can copy the External Reference number to Confirmation when we do followup to Service Orders on mobile.
    This functionality works fine on Enterprise.
    Thanks,
    Yatin

    Hello,
                 The external number won't be copied by standard as Wolhfard said they are different documents.
    You need to code this to make this copy from service order to Service confirmation.
    Open your Mobile Application Studio and make following changes.
    Open the BusinessObject "BOMSVHelper"  and view the code. Go to the Method "CopySrvTransHeader"  write the following code in it.
    Find the code
    UserName = _unwind(BusinessRootObject.UserDataDictionary.GetData("USERNAME"))
    and paste the following code below it.
            Dim servconfobj As BusinessObject = bocopysrvtrans.SalesInfo
            Dim servtransobj As BusinessObject = orderheaderobj.SalesInfo
            servconfobj.SetAttribute("PoNumberSold", servtransobj.GetAttribute("PoNumberSold"))
            servconfobj.SetAttribute("PoDateSold", servtransobj.GetAttribute("PoDateSold"))

  • Create Multiple presentaion services

    Hello,
    I am trying to create multiple presentaion services by referencing the following document
    http://gerardnico.com/wiki/dat/obiee/obiee_and_multiple_presentation_services_windows
    In this document at step 2 it says
    Copying the original catalog into another directory is how to create the new catalog. Copy the directory OracleBIData\web\catalog to OracleBIData\web\catalog_test. Now the new catalog-directory is ready to use and should be entered in the configuration file ( instanceconfig.xml).
    The first part of step 2 is fine.What does it mean by "Now the new catalog-directory is ready to use and should be entered in the configuration file ( instanceconfig.xml)"
    Does it means I need to enter one more entry for serverinstance in the same file?
    And also step 3 says
    Change the listener port in file instanceconfig_9710.xml into 9710. Also change the listener port in file instanceconfig_9712.xml into 9712.
    There is no listener port 9710 in instanceconfig.xml file.
    I am very confused.Please suggest.
    Thanks in advance

    Hello Goran,
    Thanks for the reply.
    I didn't understansd the below steps in the provided link
    The command c:\>C:\instrsrv.exe "Oracle BI Presentaion SErver Two" C:\srvany.exe
    What does the above command do?
    and you also performed this step after the above step
    C:\instsrv.exe “Oracle BI Presentaion Server Two” Remove
    Why is it for?Please clarify.
    Thanks in advance

  • Create New Web Services

    Hello,
    Pardon my igonorance, however I am a .NET developer coming over to Java land. I downloaded Sun Java Studio (great!) and am able to do some things, bind controls to the db, consume Web services, etc. However, I need to create some Web services. First of all, can I do that in Studio Creator? Is there any clear, examples that will walk me through, step-by-step?
    Thanks in advance,
    Dan

    Theoretically, yes, you can build a service in.NET
    and a UI in JSC. There is a problem that cropped up.
    I have posted the problem earlier. To create a web
    service in .NET is a breeze. However, it does not
    come over to JSC as a UI. May be there is some
    tweeking to do. Web Services should be platform
    independent, right now they do not seem to be so.You are correct that web services (generated in .NET or anywhere else) do not get exported "as a UI". However, all web services should provide a way to get the Web Services Description Language (WSDL) description of that web service. If you can find the URL for that WSDL file (or get a copy onto your local disk), you can add a corresponding web service to Creator, by going to the Server Navigator, right clicking on Web Services, and selecting the "Add Web Service" dialog.
    This will cause a client proxy library to be created and added to your Server Navigator list, just like the examples that are pre-installed. Then, you can import and use those web services to construct a web user interface for them.
    See the online help for the Add Web Service dialog for more information, as well as the "Accessing Web Services" tutorial on the Creator web site.
    Craig

  • Copying standard services

    Hi Experts,
    For Copying standard services  and create as a new Zservices , should i need to create resources?
    Regards,
    Rameshb
    Edited by: rameshb on Nov 14, 2008 6:20 AM

    Ramesh,
    you shouldnot change the standard resources because you will lose all your changes when you upgrade your system.
    so it is better to create z copies of the resources
    Thanks
    Bala Duvvuri

  • Creating a Web Service from EJB 3.0 - J2SE 5.0 Collection mapping problem

    Hi,
    Apologies if this is the wrong forum, I'm not quite sure where it fits in.
    I have some Toplink JPA entity beans that I access through a session bean. I am then trying to create a web service based on the session bean by deploying it to a 10.1.3 application server. This is based on the documentation at http://download.oracle.com/docs/cd/B31017_01/core.1013/b28764/web_services002.htm#CHDJEDDH
    The two entity beans are like:
    public class Event {
    private java.util.List<EventDetail> eventDetailList;
    public Event() {
    public void setEventDetails(java.util.List<EventDetail> eventDetailList) {
    this.eventDetailList = eventDetailList;
    public java.util.List<EventDetail> getEventDetails() {
    return eventDetailList;
    public void addEventDetail(EventDetail eventDetail) {
    this.eventDetailList.add(eventDetail);
    public class EventDetail {
    public EventDetail() {
    The session bean has a method like:
    List<Event> listParents();
    When this is deployed to the application server I expected a complex type like ListOfEventDetail to be generated in the WSDL, as shown in http://download.oracle.com/docs/cd/B32110_01/web.1013/b28975/apptypemapping.htm#sthref966, and the Event complex type would have an element of ListOfEventDetail. Instead the Event complex type looks like this:
    <complexType name="Event">
    <sequence>
    <element name="eventDetails" type="ns1:list" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="EventDetail">
    <sequence/>
    </complexType>
    and ns1:list appears in a different schema:
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://www.oracle.com/webservices/internal/literal" targetNamespace="http://www.oracle.com/webservices/internal/literal" elementFormDefault="qualified">
    <import namespace="http://wsdl/"/>
    <complexType name="list">
    <complexContent>
    <extension base="tns:collection">
    <sequence/>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="collection">
    <sequence>
    <element name="item" type="anyType" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </schema>
    However, if I change the getters and setters for eventDetailList in Event to setDetails and getDetails like this:
    public void setDetails(java.util.List<EventDetail> eventDetailList) {
    this.eventDetailList = eventDetailList;
    public java.util.List<EventDetail> getDetails() {
    return eventDetailList;
    the WSDL is generated as I expected:
    <complexType name="EventDetail">
    <sequence/>
    </complexType>
    <complexType name="Event">
    <sequence>
    <element name="details" type="tns:ListOfEventDetail" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="ListOfEventDetail">
    <sequence>
    <element name="item" type="tns:EventDetail" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    After messing around with various combinations of things, it seems that if the getters and setters have more than just the initial capital letter the (eg getTheThings instead of getThings) the WSDL gets messed up. Does anyone have any ideas what is going on here?

    Using <autotype> and <source2wsdd> to generate what I need. Now WL seems happy.

  • Error while creating a web service

    Hi all,
    I am trying to create a webservice for doing SOAP to JDBC scenario. I created a WSDL file in Configuration. I am using NWDS for developing a web service using this WSDL file.
    While creating a web service, I am getting 2 errors after creation of Custum controllers. The errors are as follows:
    1. Request_SOAP2RFC_MI_SOAP2RFC_MI cannot be resolved or is not a type
    2. WDMessageManager cannot be resolved or is not a type
    I am making use of the following pdf file to create the web service.
    <a href="https://">www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5f3ee9d7-0901-0010-1096-f5b548ac1555</a>
    Please help in this regard
    Regards,
    Pavani

    Hi
    Check this thread
    WD Message Manager
    Reward opints if usefull....

  • How to call COPY web service from sharepoint in SAP

    Hello Experts,
    I want to call COPY web service from SharePoint in SAP  web dynpro / JAVA application.
    However, when I try to connect to web service and download wsdl using   http:// <hostname:port>/_vti_bin/copy.asmx?wsdl
    it results in Unauthorized error and doesnt complete the setup. Detail error is :
     Error occurred while downloading WSIL file. Error message: Deserializing xml stream  http:// <hostname:port>/_vti_bin/copy.asmx?wsdl
    failed.com.sap.engine.services.webservices.espbase.wsdl.exceptions.WSDLException: Invalid Response Code: (401) Unauthorized. The requested URL was:"Connect to 
    http:// <hostname:port>/_vti_bin/copy.asmx?wsdl , used user to connect: userid"
    I am trying to connect with server user account. Any idea on what authorizations might be required or any help on the scenario .
    -Abhijeet

    Here's an example on how to delete a list item, hopefully this helps
    package com.jw.sharepoint.examples;
    import java.io.File;
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.Properties;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import com.microsoft.sharepoint.webservices.CopySoap;
    import com.microsoft.sharepoint.webservices.GetListItems;
    import com.microsoft.sharepoint.webservices.GetListItemsResponse;
    import com.microsoft.sharepoint.webservices.ListsSoap;
    import com.microsoft.sharepoint.webservices.UpdateListItems.Updates;
    import com.microsoft.sharepoint.webservices.UpdateListItemsResponse.UpdateListItemsResult;
    public class SharePointDeleteListItemExample extends SharePointBaseExample {
     private String delete = null;
     private String deleteListItemQuery = null;
     private String queryOptions = null;
     private static final Log logger = LogFactory.getLog(SharePointUploadDocumentExample.class);
     private static Properties properties = new Properties();
     public Properties getProperties() {
      return properties;
      * @param args
     public static void main(String[] args) {
      logger.debug("main...");
      SharePointDeleteListItemExample example = new SharePointDeleteListItemExample();
      try {
       example.initialize();
       CopySoap cp = example.getCopySoap();
       example.uploadDocument(cp, properties.getProperty("copy.sourceFile"));
       ListsSoap ls = example.getListsSoap();
       example.executeQueryAndDelete(ls);
      } catch (Exception ex) {
       logger.error("Error caught in main: ", ex);
     public void executeQueryAndDelete(ListsSoap ls) throws Exception {
      Date today = Calendar.getInstance().getTime();
      SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
      String formattedDate = simpleDateFormat.format(today);
      String queryFormatted = String.format(deleteListItemQuery,formattedDate);  
      GetListItems.QueryOptions msQueryOptions = new GetListItems.QueryOptions();
      GetListItems.Query msQuery = new GetListItems.Query();
      msQuery.getContent().add(createSharePointCAMLNode(queryFormatted));
      msQueryOptions.getContent().add(createSharePointCAMLNode(this.queryOptions));
      GetListItemsResponse.GetListItemsResult result = ls.getListItems(
        properties.getProperty("folder"), "", msQuery, null, "",
        msQueryOptions, "");
      writeResult(result.getContent().get(0), System.out);
      Element element = (Element) result.getContent().get(0);
      NodeList nl = element.getElementsByTagName("z:row");
      for (int i = 0; i < nl.getLength(); i++) {
       Node node = nl.item(i);
       String id = node.getAttributes().getNamedItem("ows_ID").getNodeValue();
       String fileRefRelativePath = node.getAttributes().getNamedItem("ows_FileRef").getNodeValue();
       logger.debug("id: " + id);
       logger.debug("fileRefRelativePath: " + fileRefRelativePath);
       String fileRef = properties.getProperty("delete.FileRef.base") + fileRefRelativePath.split("#")[1];
       logger.debug("fileRef: " + fileRef);
       deleteListItem(ls, properties.getProperty("folder"), id, fileRef);
     public void deleteListItem(ListsSoap ls, String listName, String listId, String fileRef) throws Exception {
      String deleteFormatted = String.format(delete, listId, fileRef);  
      Updates u = new Updates();
      u.getContent().add(createSharePointCAMLNode(deleteFormatted));
      UpdateListItemsResult ret = ls.updateListItems(listName, u);
      writeResult(ret.getContent().get(0), System.out);
     public void initialize() throws Exception {
      logger.info("initialize()...");
      properties.load(getClass().getResourceAsStream("/SharePointDeleteListItemExample.properties"));
      super.initialize();
      this.delete = new String(readAll(new File(this.getClass().getResource("/Delete.xml").toURI())));
      this.deleteListItemQuery = new String(readAll(new File(this.getClass().getResource("/DeleteListItemQuery.xml").toURI())));
      this.queryOptions = new String(readAll(new File(this.getClass().getResource("/QueryOptions.xml").toURI())));
    Brandon James SharePoint Developer/Administrator

  • Importing to Library created "Copy To ...." Folders - Can I Delete Them ??

    I'm new to iTunes, and I'm usings Windows XP PRO SR3.
    I ripped some CDs to FLAC format (one folder per CD).
    Then converted FLAC to MP3 in a new folder tree
    (F:\Music\MP3\"one folder per CD")
    When I imported the sub-folders in the MP3 folder (my iTunes "root" folder), iTunes created a new subfolder F:\Music\MP3\"Copy To " folder for each of my original folders. This is a duplicate of a duplicate.
    Can I safely delete these "Copy To" subfolders ??
    How do I prevent iTunes from doing this in the future ??
    Advanced Setup Notes:
    "iTunes Media folder location" is: F:\Program Files\iTunes\iTunes Media
    "Keep iTunes Media folder organized" is Not Selected
    "Copy files to iTunes Media folder when adding to library" is Not selected.
    I prefer to manually control my folder/file usage.
    Thanks
    John

    I made the initial post .....
    Tried to reproduce the Importing to Library creating "Copy To ...." folders problem.
    But it didn't do it this time ??? I don't know why.
    Everything worked the way I thought it should.
    Thanks
    John

  • Creating a web service to consume price of a particular stock from ???

    hey,
    i'm new, donno much about web services in terms of writing it, but i do have some knowledge about wat it actually does...
    im here becuz i wanna create a web service to consume the price of a particular stock and then store the closing price along with the dates into a database
    now, im abit lost here.. how do i know where to get the information from? is it possible for me to write a web service to communicate with Yahoo! Finance or any other sites which allows consumption of information?

    If you are talking about simple XML transformation of the SOAP payload between the client calling your service and the final destination of the message you are routing, the ESB approach may be a better fit.
    If you have more complex transformation in mind, with major processing and rework of the message in the intermediary, you may be better of with using the POJO approach. Write your service and embed a callout to the other service in your implementation. If the two services share the same Java Model, you may even be able to re-use the same Java Bean.
    To get SOAP Element instead of Java bean, you just need to use the noDataBinding option with either genProxy and topDownAssemble (or assemble). See the WS-Guide [1] for details. Chapter 18 will give you all the details about the different WSA command line parameters.
    Hope this helps,
    -Eric
    [1] http://download-west.oracle.com/docs/cd/B31017_01/web.1013/b28974/toc.htm

  • How can I create a web Service from my Web Dynpro Application ?

    Hi,
    Kindly let me know How I could create a "Web Service" with my Web Dynpro DC project.
    Awaiting your responses.
    Regards,
    Mahesh

    Hi Mahesh,
          You can use the web services by creating the Model in web Dynpro
    And if you want to publish your own web service then you have to create a EJB module and publish as a web service.
    Thanks
    Ninad

Maybe you are looking for

  • Error in Receiver File adapter - FCC

    Got error message as "File Adapter Receiver Channel CC_OB_REQ: Not initialized - cannot proceed: null" My requirement is to send IDOC to file which consists of 4 fields, My target message interface is MT_REQ   FILE_STRUC     FILE_OP        AAA (Field

  • Smart Guides- Not that Smart?

    Problem: Can't snap a curcle's center to a multi-angled (45 and 90 degree) path Device and Program details: Illustrator CS6 running on a 2009 iMac (3.06 Ghz Processer and 16 GB RAM) I've worked with Ai for years but can't remember running into this p

  • Bought Aperture 3.2.2 through App Store, crashing after install

    This is a new install, not an upgrade. We are using Snow Leopard, not Lion. My husband has downloaded and installed Aperture, but gets an error that it must be updated through the App Store, however, there are no updates available...

  • What to put on what HDD for best performances

    Hi, A New HDD just fallen on my lap recently, I'm new into Premiere and I wished to use it for my video edition. Here my current Spec: CPU  I7-2600K @ 4.6Ghz RAM: 2 * [ RipjawsX ] F3-17600CL7D-4GBXHD (8 Gig total) Motherboard: GA-P67A-UD5-B3 Hard Dri

  • Giving Authorizations to OSS ID

    Hi,    My user is super user,I want to create ossids for my consultants and and i want give some authorizations only for that ids(Ex:no download access like that).where i have to create ids and authorizations for them in service.sap.com. Thanku