Accessing the Related components service

Hi All,
I installed the Related content component from stellent/oracle on the content server and works fine on the content server.
Now I want to integrate this with my Front End. I am already using CIS APIs getFile and searchResults. I am trying to create a search api for searching related content but i don't know how to execute the idcservices of related components from CIS APIs.
I am not able to find any CIS APIs to execute related component idcservice?
Also I am trying to create a custom WSDL file to access idcservice as another alternative but have not been succesfull in creating a proper response object.
If anybody else had worked on this please let me know..
Thanks
Manoj

I just realized that CIS provides ISCSAdministrativeAPI which allows to execute custom IDC service...
here is the sample code if anybody needs it :-)
ISCSAdministrativeAPI commandAPI;
ISCSServerResponse response = null;
List<ISCSObject> list =null;
try {
commandAPI = sCSActiveAPI.getAdministrativeAPI();
String idcService = "GET_RELATED_CONTENT";
String dID = "181";
String dLinkTypeID="1";
String isGetParents = "0";
Map arguments = new HashMap();
arguments.put("dID",dID);
arguments.put("dLinkTypeID",dLinkTypeID);
arguments.put("isGetParents",isGetParents);
response= commandAPI.executeIDCService(context,idcService,arguments);
if(response != null){
list = response.getResultSet("RelatedContent",ISCSObject.class);
for(ISCSObject obj : list){
System.out.println(obj.getPropertyAsString("dDocName"));
} catch (CommandException e) {
}

Similar Messages

  • Performance issues while accessing the Confirm/Goods Services' transaction

    Hello
    We are using SRM 4.0 , through Enterprise Portal 7.0.
    Many of our users are crippled by Performance issues when accessing the Confirm/Goods Services tab( Transaction bbpcf02).
    The system simply clocks and would never show the screen.
    This problem occurs for some users all the time, and some users for some time.
    It's not related to the User's machine as others are able to access it fast using the same machine.
    It is also not dependent on the data size (i.e.no . of confirmations created by the user).
    We would like to know why only some users are suffering more pronouncedly, and why is this transaction generally slower than all others.
    Any directions for finding the Probable cause will be highly rewarded.
    Thanks
    Kedar

    Hi Kedar,
    Please go through the following OSS Notes:
    Note 610805 - Performance problems in goods receipt
    Note 885409 - BBPCF02: The search for confirmation and roles is slow
    Note 1258830 - BBPCF02: Display/Process confirmation response time is slow
    Thanks,
    Pradeep

  • TS4055 How do I use my MacBook Air to access the Amazon Web Service?

    How do I use my MacBook Air to access AWS (Amazon web Service)?  The information provided to me by Apple Care seems to be about allowing outside access to my MacBook.

    Sorry, but does this relate to Apple Remote Desktop, Apple's software for managing networked Macs, in some way? If so, how are you using ARD in relation to Amazon's services?

  • Problem in accessing the XI web service in Web DynPro

    Hi Experts,
            I have a wsdl file created in XI. I have followed the as per this link https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b2bc0932-0d01-0010-6d8e-cff1b2f22bc7  to access the Web Service. But I end up in the following error. Can you please suggest me what are the credentials that I have to provide when creating the Logical Destinations in the Visual Admin.
    I have provided the Pipeline URL of XI server, system id and client
    Regards,
    Mathan MP

    Hi Experts,
            I have a wsdl file created in XI. I have followed the as per this link https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b2bc0932-0d01-0010-6d8e-cff1b2f22bc7  to access the Web Service. But I end up in the following error. Can you please suggest me what are the credentials that I have to provide when creating the Logical Destinations in the Visual Admin.
    I have provided the Pipeline URL of XI server, system id and client
    Regards,
    Mathan MP

  • Accessing the Identity Web Services

    Hello,
    We're trying to access the web services for OAM functions like: http://www.domain.com:port/identity/oblix/apps/
    userservcenter/bin/userservcenter.cgi. We're having issues sending the username and password programmatically.
    Does anyone know if you can change the Authentication scheme for the out of the box policy domain for /access so it's based on Client Certificate rather than Oracle Access and Identity Basic Over LDAP?
    Thanks!

    Found out you can change the Authentication scheme to whatever you want to protect the policy and identity manger policies.

  • Access the UI components in the managed bean

    I am newbie in Jdeveloper and just read the book of "Quick start guide to oracle developer"
    I am confused of the steps of accessing the UI component of the page
    e.g.
    public void salesman_valueChanged(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    getCommission().setDisabled(true);
    if (valueChangeEvent.getNewValue().equals("SA_REP")) {
    getCommission().setDisabled(false);
    getCommission is supposed to return the UI Component instance of text box commission.
    How can I implement this?
    Thanks.

    getCommission is supposed to return the UI Component instance of text box commission.Bind your UIComponent to your managedBean (you would need to register this in teh taskflow or adfc-config.xml) . This can be done using the Binding attribute in the Advanced tax for the inputText component.
    "binding=<MemoryScope_onlyIfOtherThanRequestScope.BeanName>.commission" .. this will generate a getCommission() & setCommission() method which can be used.
    Also please modify the code below to have a PPR on the component else it will not refresh on the UI-
    +public void salesman_valueChanged(ValueChangeEvent valueChangeEvent) {+
    +// Add event code here...+
    getCommission().setDisabled(true);
    +if (valueChangeEvent.getNewValue().equals("SA_REP")) {+
    getCommission().setDisabled(false);
    +}+
    AdfFacesContext.getCurrentInstance().addPartialTarget(getCommission());
    +}+

  • Problem in Accessing the Siebel Web Service

    Hi,
    I have a seibel web service which needs to be called from a SAP Webdynpro application. The URL is something like this.
    http://xxx.yyy.com:80/eai_enu/start.swe?SWEExtSource=SecureWebService&SWEExtCmd=Execute
    I am using Adaptive Webservice model and without hardcoding this value i should be able to send the user name and password information to the webservice.
    How i can achieve that. I am getting the error that,
    <b>returned http code 500 (Internal Server Error) with unacceptable content type (text/html;charset=UTF-8).
    <html><head><title>Message:</title></head>
    <body>The server you are trying to access is either busy or experiencing difficulties. Please close the Web browser, open a new browser window, and try logging in again.[12:02:58]</b>
    Siebel team was asked us to send the user/password info through SOAP header.
    <b>Is there any way to set thatbusername/password info in NWDS (Basically set the SOAP Header) and if it is OK only if we can set it in the Webservices security in the Visual Administrator.</b>
    Appreciate your reply.
    Thanks and Regards,
    Sekar

    Sekar,
    I have the same problem.
    How did you change your web service as Anonymous?
    I have a user id and pwd, i tried by appending end of the service and tried with basic authentication by passing uid and pwd. No luck.
    Can you please help me how to change web service as anonymous?
    Regards,
    Sridhar

  • Accesing the clustered components ...load balancing!!!

              Friends ... here is my problem scenario. If any body has ideas, pl.share them.
              I have Webservices exposed on weblogic server. UI (in .NET ) accesses the webservices
              API on WLS.(bunch of EJBs are deployed on the WLS)
              Now I thought of converting the WLS to a clustered environment. So I created 2
              manged servers (on the same machine ..just to try initially). I have assigned
              unique port numbers to them.I tried mutlcast test .looks like the intra-cluster
              communication is okay.
              How can I do load balancing in this situation ? I could individually ping(look
              up) each of the manged server address. But how do i look up the cluster as a whole
              and not individual managed servers.(I mean load balancing ) I tried to access
              using the cluster address.It does not work .
              Do we need to have a plug-in /proxy to do the load balancing or is there any load
              balancing mechanism build in to WLS, so that I dont have to work with plug-ins
              and other stuff.
              precisely how do i access the individual components on different managed servers
              with a single address (which should then redistribute to individual managed servers
              in the cluster)
              Thanks for your help .
              

              Thanks Bijan. That was very useful information.
              I have one more question.
              While configuring the iis ,Which kind of forwarding should i use ? path forwarding/file
              forwarding ?(may not be relevant )
              (what should i give as end point in the web.config xml file? )
              When I had only one instance of WLS I used to give
              "http://localhost:7001/CCWebModule/services/XCWebServiceSoap"
              Right now I have two managed servers in cluster running on port 8001 and 9001.(while
              7001 is the admin server )
              I know i need to put this addresses in the iisproxy.ini as "WeblogicCluster".
              In this case what seem appropriate for "WLForward=" in the iisproxy.ini file
              Thanks
              Prasanth
              "Bijan Mohanty" <[email protected]> wrote:
              >
              >Prashanth,
              >
              >If you have deployed some webservices on WLS and later used clustering
              >of WLS,
              >you have essentialy multiple WSDLs. When you use a client to talk to
              >this webservice,
              >you have to loadbalance between the webservices on the managed server.
              >
              >When you use RMI to talk to a EJB deployed on clustered WLS, the replica
              >aware
              >stub has the clustering info. So the client's call to EJB is loadbalanced
              >by weblogic
              >automatically.
              >
              >In case of webservices, there is no such luck. You can use any of the
              >following
              >tricks.
              >1. Create webservice stubs in the client for each webservice in the managedserver
              >and laodbalance it in the client.
              >2. Use a proxy (Apache or IIS or Iplanet) that can loadbalance betwen
              >the webservices
              >and use that from the client.
              >3. Use a hardware loadbalancer for loadbalancing.
              >
              >4. Or use HttpClusterServlet. I had lots of problems using this in the
              >past and
              >don't recommend that.
              >
              >My suggestion will be to use the first option in the development and
              >use a combination
              >of 2 and 3 for production env. In the second option, although you get
              >the loadbalancing,
              >you have a single point of failure(i.e the proxy plugin). That's why,
              >the combination
              >of 2 and 3 works best.
              >
              >BTW the webservices are implemented as a webapp. When a call reaches
              >that servlet
              >the call stays in that app server instance, even if the EJBs are clustered.
              >That's
              >because weblogic optimizes the calls to reduce the marshalling/unmarshalling.
              >
              >Hope this helps.
              >
              >Bijan
              >
              >"prasanthbk" <[email protected]> wrote:
              >>
              >>Friends ... here is my problem scenario. If any body has ideas, pl.share
              >>them.
              >>
              >>I have Webservices exposed on weblogic server. UI (in .NET ) accesses
              >>the webservices
              >>API on WLS.(bunch of EJBs are deployed on the WLS)
              >>
              >>Now I thought of converting the WLS to a clustered environment. So I
              >>created 2
              >>manged servers (on the same machine ..just to try initially). I have
              >>assigned
              >>unique port numbers to them.I tried mutlcast test .looks like the intra-cluster
              >>communication is okay.
              >>
              >>How can I do load balancing in this situation ? I could individually
              >>ping(look
              >>up) each of the manged server address. But how do i look up the cluster
              >>as a whole
              >> and not individual managed servers.(I mean load balancing ) I tried
              >>to access
              >>using the cluster address.It does not work .
              >>
              >>Do we need to have a plug-in /proxy to do the load balancing or is there
              >>any load
              >>balancing mechanism build in to WLS, so that I dont have to work with
              >>plug-ins
              >>and other stuff.
              >>
              >>precisely how do i access the individual components on different managed
              >>servers
              >>with a single address (which should then redistribute to individual
              >managed
              >>servers
              >>in the cluster)
              >>
              >>
              >>Thanks for your help .
              >
              

  • SMLETS. Get related Business Services from a Configuration Item

    Hi
    I need som help or guidiance on how to create a PS query to list out all the related business services from a Configuration Item (Computer) using the Windows Computer Class
    Im using the following orchestrator activity today to get the related business services from the CI.
    Thx for all replys! :)

    Hi,
    you can use this script as an example:
    Import-Module smlets
    #Definde Input-Values
    [String]$Server = "SCSMSERVER"
    [String]$SCObjectGUID = "6555226c-5e77-ea85-b79f-05dc8843dcb0"
    #Get Computer-Object by SC Object GUID
    [System.Object]$Computer = Get-SCSMObject -Id $SCObjectGUID -ComputerName $Server
    #Get Relationship Class "Is Related to Configuration Item"
    [System.Object]$Relationship = Get-SCSMRelationshipClass -Name "System.ConfigItemRelatesToConfigItem" -ComputerName $Server
    #Get defined Relationships by target
    [System.Object[]]$RelatedBSs = Get-SCSMRelationshipObject -ByTarget $Computer -ComputerName $Server | where { $_.RelationshipId -eq $Relationship.Id }
    #Create Arrray for Orchestrator Published Data
    $BusinessServiceDisplayNames = @()
    foreach($RelatedBS in $RelatedBS)
        #Add DisplayName of Business Service to Output-Array
        $BusinessServiceDisplayNames += $RelatedBS.SourceObject.DisplayName
    $BusinessServiceDisplayNames

  • OOABAP-How to access the protected methos from a class

    How to access the protected methos from a class..There is a built in class..For tht class i have created a object..
    Built in class name : CL_GUI_TEXTEDIT
    method : LIMIT_TEXT.
    How to access this..help me with code

    hi,
    If inheritance is used properly, it provides a significantly better structure, as common components only
    need to be stored once centrally (in the superclass) and are then automatically available to subclasses.
    Subclasses also profit immediately from changes (although the changes can also render them invalid!).
    Inheritance provides very strong links between the superclass and the subclass. The subclass must
    possess detailed knowledge of the implementation of the superclass, particularly for redefinition, but also in
    order to use inherited components.
    Even if, technically, the superclass does not know its subclasses, the
    subclass often makes additional requirements of the superclass, for example, because a subclass needs
    certain protected components or because implementation details in the superclass need to be changed in
    the subclass in order to redefine methods.
    The basic reason is that the developer of a (super)class cannot
    normally predict all the requirements that subclasses will later need to make of the superclass.
    Inheritance provides an extension of the visibility concept: there are protected components. The visibility of
    these components lies between that of the public components (visible to all users, all subclasses, and the class itself), and private (visible only to the class itself). Protected components are visible to and can be used by all subclasses and the class itself.
    Subclasses cannot access the private components  particularly attributes) of the superclass. Private
    components are genuinely private. This is particularly important if a (super)class needs to make local
    enhancements to handle errors: it can use private components to do this without knowing or invalidating
    subclasses.
    Create your class inse24 and inherit this CL_GUI_TEXTEDIT
    class in yours. You can then access the protected methods.
    Hope this is helpful, <REMOVED BY MODERATOR>
    Edited by: Runal Singh on Feb 8, 2008 1:08 PM
    Edited by: Alvaro Tejada Galindo on Feb 19, 2008 2:19 PM

  • Related Content Service Setup in PeopleSoft 9.1

    Can anyone tell me how to setup the Related Content Services in PeopleSoft?

    Hi, Thanks for your response.
    Would you please explain or elaborate little bit more about it?
    Thanks.

  • Excel Automation with Interop - Windows Service - Microsoft Excel cannot access the file

    I have a windows console application, which automates Excel. In our scenario the application gets called from a Windows Service. If the console app is executed directly everything works fine. If the console app is executed through the Win Service, we get
    the following error when trying to open the excel file:
    Unhandled exception Occured : 'Microsoft Excel cannot access the file 'bla.xls'. There are several possible reasons:
    The file name or path does not exist.
    The file is being used by another program.
    The workbook you are trying to save has the same name as a currently open workbook.'.'
    The code snippet used to open the file:
    xlApp = new Application();xlApp.Visible = false;xlApp.UserControl = false;xlApp.Application.ScreenUpdating = false;xlApp.DisplayAlerts = false;xlWorkbook = xlApp.Workbooks.Open( Filename: filePath,  UpdateLinks: 2,  IgnoreReadOnlyRecommended: true, Editable: false);
    The console app and windows service are running on a Win Server 2008 64-bit OS with Excel 2013 32-bit installed. The service is running with a special user account, which has all the right permissions on accessed files and folders. The excel process is also
    started with the same account (I cheched that one). 
    I already tried to do the following, but to no avail:
    Run excel.exe /automation -> worked fine
    Created the folders and also gave full control to the account under which the service is run (even gave full control to Everyone)
    C:\Windows\SysWOW64\config\systemprofile\Desktop
    C:\Windows\System32\config\systemprofile\Desktop
    Configured DCOM
    Excel Application -> Identity -> Specific user account
    Excel Application -> Identity -> Interactive User
    Excel Application -> Security -> Launch permissions -> Everyone full control
    Several combinations of the above
    So I really am stuck with this problem right now. Any input on this is appreciated.

    I have a windows console application, which automates Excel. In our scenario the application gets called from a Windows Service. If the console app is executed directly everything works fine. If the console app is executed through the Win Service, we get
    the following error when trying to open the excel file
    Microsoft does not currently recommend, and does not support, Automation of Microsoft Office applications from any unattended, non-interactive client application or component (including ASP, ASP.NET, DCOM, and NT Services), because Office
    may exhibit unstable behavior and/or deadlock when Office is run in this environment.
    If you are building a solution that runs in a server-side context, you should try to use components that have been made safe for unattended execution. Or, you should try to find alternatives that allow at least part of the code to run client-side.
    If you use an Office application from a server-side solution, the application will lack many of the necessary capabilities to run successfully. Additionally, you will be taking risks with the stability of your overall solution.
    You can read more about that in the
    Considerations for server-side Automation of Office article.

  • Unable to access the ITS service externally

    Transaction code created for the ( ABAP )Z-report.
    Using this Transaction Code an InternetService is say ZITS_DOWN is created in se80 and it is added to the services list in SICF transaction code.
    The report is used to perform the download the file n the file server for example : C:\down_dir\file.
    The user has to browse the directory using the F4 help , the popup appears for selecting the fie directory path.
    further the file is downloaded in the selected path.
    By activating the relevant JRE the functionality for the F4 is working fine in the internal server (by accessing the application using the its service )
    But when we use the URL / link (its SERVICE) externally , we can able to reach the applicaton.
    But the f4 pop up for selecting the filepath is not coming      . the server can't be reached externally.
    but can be reached internally.
    The internal servernames may not show up in the pages,
    Thing is the code of the related pages must be adjusted in such a way that the servername is not needed.
    Please provide some useful guidelines to overcome this kind of issue .

    Hi,
    Externally does often mean that a Reverse Proxy or WebDispatcher stands in between.
    Please have a look at SAP note 1145306 which provides some hints.
    Regards,
    Dieter

  • I am unable to covert a pdf to word. I get;"A error occured when trying to access the service

    I am unable to convert a pdf to a word doc.   I get, "An error occured when trying to access the service"

    This is the Reader forum, and your question seems to be related with ExportPDF. If it does, you should ask here:
    http://forums.adobe.com/community/exportpdf

  • Cannot Access the Service Partition after installing Lenovo Driver and Application Installation

    I recently upgraded my Lenovo 3000 H210, M/T 5355-2NU from Windows Vista Home Premium (64-bit) to Windows 7 Home Premium (64-bit) with the media received through the Windows 7 Home Premium Upgrade Fulfillment Program.
    I installed the 64-bit version of the Common Components Installation v1.0.0.8 and restarted the computer and then installed the 64-bit version of the Lenovo Driver and Application Installation program, v5.1.0.0900.  After
    restarting the computer, I receive a message box stating "Cannot access the Service Partition".  If I click on
    Lenovo Driver and Application Installation on the Start Menu, I receive an error that the installation has not
    completed.  Restart to complete the installation.  If I restart the computer, I am back to the first error.
    Any idea how to resolve this situation?
    Any help is greatly appreciated.  Thanks in advance.
    -Larry

    I am having the exact same problem. It's driving me nuts. I also downloaded and attempted to reinstall the factory software from Lenovo's site. It installs but will not launch, giving me the following error message: "This software is for intallation on a Lenovo computer." Or words to that effect.
    Hopefully someone knows the answer. Tried tech support twice. Ugh... Thanks in advance.
    Lenovo 3000 H210 Desktop, 64-bit, Intel E5200 Duo Core, 4GB RAM, 320 GB Hard Drive

Maybe you are looking for

  • Hick-ups and crashes Lr 4

    Lightroom runs reasonably fluid on my machine, I am a pretty heavy user, after so many operations the program will freeze with a notice in the Windows bar "Lightroom <module> not responding". In most cases, after about 5-15 seconds Lightroom continue

  • Application Express Vs developer suite 10g

    Hello I am a beginner and I am confused which application package I have to use to build my application consisting of forms and reports. Can someone please highlight the difference in applications created using application express and developer suite

  • Better results than you could achieve in a real-time onlining suite?

    Another for Zeb and anyone else who cares about color. HD for Indies (http://www.hdforindies.com/) reviews The DV Rebel's Guide by Stu Maschwitz. In a section, "Why so AE centric when such a pain - why not do in FCP?", Mike Curtis pseudo-interviews S

  • My Site access error in Sharepoint 2013

    I am configuring My Site as new Web Application (Port 8080). When I access My site from the portal, I get an error http://ghqsp13:8080/ Root Element is missing. /App_GlobalResources/dms.en-US.resx I tried the below link. No Luck http://spchickadee.wo

  • Printing Pick List

    Hello Techies, I am working on ECC5.0 IDES version and want to know whether i can print picklist in SD for outbound deliveries without implementing warehouse management module or lean warehouse management. Regards Srini