Specifying tcpd for inetd based service in creating manifest

If I use an old inetd based service that specified /usr/sbin/tcpd, do I have to include that when I use inetconv to create the service manifest.
For example.
I currently use proftpd for ftp with tcp_wrappers. My old inetd line was
ftp stream tcp nowait root /usr/sbin/tcpd /usr/local/sbin/in.proftpd.
If I want to create a manifest for this, do I include /usr/sbin/tcpd in the line as it was before?
Thank you

Hi Bharathwaj.
Did you solve this issue? The string index out of range problem can be solved by setting Use_CustomerExit_ParameterProvider to true for the AppIntegrator service, the procedure is described in the latest version of the Self-Service Administrator documentation.
What about the other issue? Were you able to make the application views visible for the Web Dynpro component so that iViews can be created for them? I have setup FPM Applications and FPM Views but I fail to see how to establish the link between the iView, Web Dynpro component and the FPM Application.
I even attempted to make the Web Dynpro application use Multiple iViews as documented in the SAP Help Portal, that didn't do it.
Thanks for any tips,
Samuli

Similar Messages

  • Can I create JDE BSSV (Business Services) for REST based services?

    Can I create JDE BSSV (Business Services) for REST based services? If yes, then how? In what way it will be different from SOAP based?

    Hi
    Within Oracle SOA Suite, Oracle Service Bus would handle the REST side of things, which in turn would call the JCA adapter to talk to your JDE backend, or vice versa.
    Checkout the JDE adapter docs - http://www.oracle.com/technetwork/middleware/soasuite/documentation/jdewardsweb-1954164.pdf
    and the OSB Docs - HTTP and Poller Transports - 11g Release 1 (11.1.1.7)
    OSB 11.1.1.7 introduced additional REST support, so I'd recommend using that version onwards.
    Cheers
    iain

  • How to configure proxy services in OSB for Rest based services?

    how to configure proxy services in OSB for Rest based services implemented using Jersey (Rest).
    The Client need to contact OSB proxy servies by posting application/xml using jersey client and OSB proxy service will call the OSB business service.
    i would like to know how to get this request in OSB proxy service and send it to the business service and get the response back.

    I would suggest you refer to the below links:
    https://blogs.oracle.com/jeffdavies/entry/restful_services_with_oracle_s_1
    https://blogs.oracle.com/jamesbayer/entry/using_rest_with_oracle_service
    Hope this helps.
    Thanks,
    Patrick

  • Site survey for location based services

    Hi Experts ,
    Wht are the paramenters I need to concentrate while doing the site survey that incldes the requirement of location services?
    Thanks,
    Regards,
    Vijay.

    Location-based services:
    WLAN location-based services requires that access points are placed in such a
    fashion that the Active RFID tags and 802.11 clients ar
    e surrounded by access points for ultimate optimization.
    (This is a different access point placement strategy than data and voice WLAN only networks). If you are
    surveying for location based services, acce
    ss point placement is done differently. For more information on
    deploying location based services, refer to the Cisco 2700 Series Wireless Location Appliance Deployment
    Guide available at Cisco.com.
    http://www.cisco.com/en/US/docs/wireless/technology/vowlan/troubleshooting/8_Site_Survey_RF_Design_Valid.html

  • Which BADI will be triigrd for dates in service contract creating

    Hello CRM  guys ,
       Which BADI will be triigrd for dates in service contract creating.
    regards,
    ram.

    Hello CRM  guys ,
       Which BADI will be triigrd for dates in service contract creating.
    regards,
    ram.

  • Mapping DTO to XML Schema for Worship Web Service

    I have a number of DTOs that my application uses. This application
    needs to consume a number of document style web services created in
    workshop. When I generate the proxies for this web service, it creates
    Java beans for the XML schema types defined in the web service.
    Is there a way to get the workshop stubs to map my DTOs to XML schema?
    If not, what is the best way to do this mapping? Thanks.
    Mike

    I have a number of DTOs that my application uses. This application
    needs to consume a number of document style web services created in
    workshop. When I generate the proxies for this web service, it creates
    Java beans for the XML schema types defined in the web service.
    Is there a way to get the workshop stubs to map my DTOs to XML schema?
    If not, what is the best way to do this mapping? Thanks.
    Mike

  • Mapping DTO to XML Schema for Workshop Web Service

    I have a number of DTOs that my application uses. This application
    needs to consume a number of document style web services created in
    workshop. When I generate the proxies for this web service, it creates
    Java beans for the XML schema types defined in the web service.
    Is there a way to get the workshop stubs to map my DTOs to XML schema?
    If not, what is the best way to do this mapping? Thanks.
    Mike

    I have a number of DTOs that my application uses. This application
    needs to consume a number of document style web services created in
    workshop. When I generate the proxies for this web service, it creates
    Java beans for the XML schema types defined in the web service.
    Is there a way to get the workshop stubs to map my DTOs to XML schema?
    If not, what is the best way to do this mapping? Thanks.
    Mike

  • "Invalid printer specified" for 32bit Windows Service in 64bit Server

    Hi All,
    I'm having some issues with crystal reports.
    My development environment:
    Visual Studio 2008, 32bit Windows XP
    Running environment:
    Windows Server 2003 Service Pack 2 64 bit
    Crystal Reports Basic Runtime for Visual Studio 2008 (x86)
    I've created two applications: one is console application and one is windows service. Both application run same codes to print crystal reports to printers and run at 32 bit. I can have multiple instance of console application running without any issues. When I run the windows service version, the first time the service works fine. But after I restarted the windows server, the crystal report throw Sysstem.Runtime.InteropServices.COMException.
    The detail of the exception is:
    System.Runtime.InteropServices.COMException (0x80000201):
    Invalid printer specified.
       at CrystalDecisions.ReportAppServer.Controllers.PrintOutputControllerClass.ModifyPrinterName(String newVal)
       at CrystalDecisions.CrystalReports.Engine.PrintOptions.set_PrinterName(String value)
       at Company.PrintReport(ReportClass report, String printerName)
    Both console application and windows service run at 32 bits. The user runs the service is domain controller who has admin permission. And the same problem happened on an web application hosted on IIS of the same server.
    What I've done so far:
    1. Set the printer option in the report to no printer
    2. Try install the crystal report x64
    3. For the windows service build for x86.
    Please some one help me in this.
    Cheers

    That is a rather strange issue.
    Make sure you are killing the report object once you're doen with it. E.G;
    Dim report as New ReportDocument
    Protected Sub Page_load()
    End Sub
    Private Page_Unload()
    report.close()
    report.dispose()
    GC.Collect
    End Sub
    //C# (on form open):
    private void WebForm1_Init(object sender, System.EventArgs e)
        if (boReportDocument != null)
            boReportDocument.Close();
            boReportDocument.Dispose();
            GC.Collect();
    // C# on form close
    private void Page_Unload(object sender, EventArgs e)
            if (boReportDocument != null)
            { boReportDocument.Close();
                boReportDocument.Dispose();
                GC.Collect();
    If closing and disposing does not help, is htis happening on your dev computer or after you move that app to another server?

  • When I try to open a project, the only option for a new track is for external MIDI device; when I try to open an audio or software instrument track, I get an error message saying that "the specified number of tracks could not be created. Reduce the n

    When I try to open a project, the only option for a new track is for external MIDI device; when I try to open an audio or software instrument track, I get an error message saying that "the specified number of tracks could not be created. Reduce the number of tracks to create and try again." I didn't specify ANY number of tracks. Thanks for help!

    Ah.. then I suspect you just need to go to Logic's prefs/Audio and check CoreAudio...
    It has been unchecked somehow...
    Also.. as an aside.. Be careful not to create such large subject names in future when posting here.. They can cause issues with replying to posts in such threads.. due to a bug in the forum software.. so please keep them short and to the point...
    Cheers..
    Nigel

  • I have created a series of pdf schematics in a portfolio that revolves. For the field service techs I would like it to work on a smart phone or tablet. On the phones and tablet, they do not revolve. Any idea's?

    I have created a series of pdf schematics in a portfolio that revolves. For the field service techs I would like it to work on a smart phone or tablet. On the phones and tablet, they do not revolve. Any idea's? I am using Adobe Acrobat 9 Pro. It looks great and works as expected on my system, but the techs cannot scroll through the different prints.

    Edge has very clear restrictions, one being that you must have 6 months of clean payment history which you don't. Either wait until April 14, or good luck at Sprint.
    I am unsure how it can be determined the payment mix up was the fault of CS, but regardless, the mix up was done. There can be any number of reasons why a payment could be missed without any fault on your part, however you are still the responsible party for the account and must live with the repercussions.

  • What 3rd party companies are there that offer a photo printing service for ipad2 users? I suppose I am looking for a similar service to iPhoto on the MacBook pro but so far I've had no joy. I'm uk based.

    What 3rd party companies are there that offer a photo printing service for ipad2 users? I suppose I am looking for a similar service to iPhoto on the MacBook pro but so far I've had no joy. I'm uk based.

    Are these the kind of thing you're looking for:
    http://itunes.apple.com/us/app/lifepics/id323705153?mt=8
    http://itunes.apple.com/us/app/walgreens-for-ipad/id430444027?mt=8
    Matt

  • Multiple Instances created for a web service in OWSM

    Hi,
    I have created a gateway and added some services to the gateway. When i am invoking the webservice through the gateway, multiple instances of the service are created in bpel console.
    I have done everything as per the OWSM guide.
    Urgent Issue.
    Thanx in advance.

    Dear Nikhil,
    Please check that item is relevant for Text item,
    Check the copy control settings between sales order type and delivery type in VTLA transaction.
    I hope it will help you,
    Regards,
    Murali.

  • Creating SOAP Receiver comm.channel for axis web service

    Hi,
    I created Soap Receiver comm. channel fro Axis web service like below:
    *Target URL* : http://<IP>:<Port>/<x>/service
    *User:* <user>
    *Password :* <password>
    *SOAP Action:* <target namespace>/method
    when i drive PI Message that use Soap Receiver it get error below
    I do same method for .Net web service, it runs properly.
    How can i solve this problem?
    Error
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <!--  Call Adapter -->
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="MAPPING">NO_MAPPINGPROGRAM_FOUND</SAP:Code>
      <SAP:P1>Object ID B3004965647F340C997B5F2CC9EA7E22 Software Component 4CF44F80503211DEB2A0D3F40A194B29</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>Mapping program is not available in runtime cache: Object ID B3004965647F340C997B5F2CC9EA7E22 Software Component 4CF44F80503211DEB2A0D3F40A194B29</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>

    Hi,
    I did all  but nothing changed?
    I have doubt about axis side. Because respose like below.
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="UNKNOWN">APPLICATION_ERROR</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>application fault</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="http://xml.apache.org/axis/">hostname</SAP:ApplicationFaultMessage>
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    May be Soap Receiver setting for axis web service must be different.
    Thanks.

  • Creating Windows Based Service in Java

    Hey is there any way I can create windows based service in Java. My need is that no one has to log on to the machine to start a java application.
    Thanks in advance

    This can be done, although its been so long I forget the exact details. There are some utilities out there that will let you run any program as a service. I remember I created a batch file to run my java program in and then set the batch file up as a service.
    Hope that helps,
    Peter

  • Creating data server for Hyperion Shared Services (HSS)

    Hey Gang,
    Has anyone had experience in creating a Data Server for Hyperion Shared Services (HSS) using the java API? I know HSS uses Native Directory, but to be compliant the Hyperion folks recommend using the java API strictly to get access to the users, groups, etc.
    Anyone have experience with this, or perhaps at least how to get ODI to kick off a java file to pull the data needed? What effort would be needed in ODI, is it straight forward or would I have to develop a technology or something to integrate into ODI?
    Thanks.

    Thanks for the quick reply John. I am trying to get user and group information, and also doing some complex manipulation. I need this to verify user access and some other stuff. I will not always have access to HSS and cannot always export the information, thus the need to use the HSS java API.
    I'm trying to pull it out of HSS and put it into an Oracle table in a standard format where I'll use the information and do reporting off of it. I've developed a java class that does migrates the data over, but its crude and I'd like to move it into ODI with some of our projects that are currently doing the same thing with other ERP such as Ebiz and Peoplesoft.
    If I can recode some of the java in ODI, how would I go about doing that. Where would I include the libraries, etc.? is there a tutorial or a place where I can get started on that.
    Thanks for all the help.

Maybe you are looking for

  • Can not input data when removed the value for seleciton condition

    Dear Experts, We met a very strange issue for the IP. We create a aggregation level and relatd query for user to key in data. We have a filter in the aggregation level. It will set value for A,B,C,D When user opent he report, system will require user

  • Crystal Reports Causes Application to Hang in crpe32.dll When Viewing Report

    All, We have a C# Winform Application that uses Crystal Reports 13.0.9.  In production, our application is intermittently hanging. The crash dump analysis indicates that a Crystal Reports assembly is causing blocked threads (i.e. deadlock).  The resu

  • How to set up gmail as an exchange acount on my Ipad2 ?

    Getting gmail as my icon mail account was easy but did not provide all my functions, like my contact list.  I see suggestions on making it an "exchange account" instead.  What is that and how do you set it up?

  • Select ALL_TAB_COLUMNS

    Hi all, I got One Select Query as " SELECT * FROM ALL_TAB_COLUMNS WHERE TABLE_NAME = :tablename ". But with this i am getting only ( OWNER, TABLE_NAME, COLUMN_NAME, DATATYPE). But i want the following columns also: (character maximum length, numeric

  • Urgent : Trees in JSP

    hii guys i am very new to jsp..i want to display a employee hierachy structure( who reports to whom).. current i am using java swing tree and loading it in applet..but this is giving me problem because of the large size of driver file.. i would like