Which webcenter services need UCM?

Hi,
Can somebody please tell me which webcenter services need UCM?
Thanks in advance

Thanks for the reply!
Basically we are not able to install UCM alongwith Webcenter (due to performance issues).
So we would like to know if we can still build/integrate some services without UCM.
Apart from the services you mentioned, can we build/integrate following services also, without UCM?
Announcements Service
Instant Messaging and Presence Service
Links Service
Mail Service
Recent Activities Service
RSS Service
Search Service
Thanks

Similar Messages

  • Need help in using web service of UCM in C#

    I am trying to use the "Search" web service of UCM in C#.
    The code below is what I did,
    ucm_server.Search search = new ucm_server.Search();
    search.Credentials = new NetworkCredential("sysadmin", "idc");
    QuickSearchResult result = search.QuickSearch("xKeywords like `lvl`", null);
    "xKeywords" is a custom metadata field and it works well in content server. "lvl" is what I want to search.
    And this is the error message:
    Unable to retrieve search results. Parsing error at character 13 in query: "xKeywords like `lvl`"
    Here is what I tried in the "queryText" parameter, but I got the same error message
    [*]xKeywords like 'lvl'
    [*]xKeywords <substring> `lvl`
    [*]xKeywords <substring> 'lvl'
    [*]xKeywords like &quot;%lvl%&quot;
    I got the error whatever I define for extraProps.
    I don't know what the "queryText" parameter should be in C#. Could someone help me with this? Thanks a lot.
    I knew the reason. xKeywords is a custom metadata field and it works with a default metadata field like "dDocName".
    But I still do not know how to make it to work with a custom field:(
    Edited by: [email protected] on Jun 24, 2010 7:49 PM

    Its a UCM setting... go to "Administration > System Audit Information" and enable socket tracing. Then click the "view server output" button to see what raw data is coming to the UCM from your .NET application. You may need to turn on "verbose" tracing as well. Do this one a test box, because it will generate a TON of output...

  • Which MSXP Services does FF Need? When Disabling Services; extentions, addons, themes stopped working

    I disabled some Service in MS Windows XP Home SP3 cause my Internet only lagged in Windows.. So i unchecked everything i didnt need or use.. Windows works wonderfull, runs even faster than before.. Only my extentions, Add-Ons, Plugins and Themes stopped working except for one.. The spelling-checker.
    So, my question is which Windows Service Process prob. disabled this when i shut down the services.. (By asking this i want an answer so i only need to enable 1-2 processes and not the dumb-ass answers where you advice to turn everything on again)
    PS.
    Troubleshooting Information included but i didnt find any complaints there

    Disable Photo Stream in the System/iCloud preference pane
    and in iPhoto's Photo Share preference pane.
    Reboot and reenable both respectively. That should jump start Photo Stream.
    OT

  • Anyone know which services need to be actived

    Anyone know which services need to be actived to permit back and forth communication with the ADS & WDA?
    thanks,
    rp.

    Hi Robert,
    Please refer to the installation guide of your scenario at SAP Interactive Forms by Adobe - Configuration Guides [original link is broken]
    Regards,
    Darwin

  • How to display content without using webcenter services - task flows?

    Good day!
    I wanted to create a portlet where I can display and update an xml content retrieved from UCM Content Server. How can I do this without using taskflows (webcenter services)?
    Thanks in advance!
    Keith

    Hey Keith,
    Since you are already using the getResponseAsString() method you have your GET_FILE call working. To get the xml file as the file itself you need to instead call the getResponseStream() method. This will get you an InputStream representing the response.
    Once you have the stream you can do the following (I assume you are on a jsp page or somewhere you have access to the HttpServletResponse):
    String contentType = serviceResponse.getHeader("Content-Type");
    InputStream xmlInputStream = serviceResponse.getResponseStream();
    OutputStream outStream = response.getOutputStream();
    response.addHeader("Content-Disposition", "attachment;filename=myXmlFile.xml");
    response.setContentType(contentType);
    StreamUtil.copyStream(xmlInputStream,outStream,true,true);
    The runthrough:
    1. get the content type of the file coming back form the GET_FILE call
    2. grab the file as an InputStream
    3. get the output stream representing the response
    4. add a header to the response to trigger the "download file" dialog
    5. set the content type of the response
    6. copy the input stream to the output stream to send the xml file to the browser
    Notes:
    -StreamUtil is part of the RIDC jar
    -use Content-Disposition = inline to tell the browser to try and render the file in it's window if it can.
    Hope that helps,
    Andy Weaver - Senior Software Consultant
    Fishbowl Solutions < http://www.fishbowlsolutions.com?WT.mc_id=L_Oracle_Consulting_amw >

  • How to find out which RAC service a user is using.

    Hi,
    Our RAC database uses clustering services.
    How do I find out to which RAC service a database user is setup for?
    I know how to check what it is currently using by looking at GV$SESSION. But i want to check what service a user was originally setup?
    I cant seem to find the info i need on the following views:
    GV$ACTIVE_SERVICES
    DBA_SERVICES
    GV$SESSION
    am i missing out something?
    thanks,

    There is a service_name column in gv$session that should show what service is being used by a connection.
    Sorry...reread and see that you know about gv$session...I'm not really sure what you mean by originally setup or how long ago you are trying to look for but in v$active_session_history there is a column that is service_hash that will join to dba_services column name_hash..so if you can find some old session from that user and get the service_hash you can get the service name from dba_services.
    Edited by: DBA_Mike on Mar 24, 2009 6:48 AM

  • Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.

    I am trying to connect to SharePoint in my Office 365 environment by following https://support.office.com/article/Set-up-the-SharePoint-Online-Management-Shell-environment-7b931221-63e2-45cc-9ebc-30e042f17e2c and I am getting:
    Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.
    Is there some setting I need to change on the O365 side? Thanks.

    Hi,
    Based on your description, my understanding is that you want connect SharePoint Online using PowerShell.
    Please make sure that the following software is installed.
    Windows Management Framework 3.0
    SharePoint Online Management Shell
    And then, open the SharePoint Online Management Shell and use the Script below to test
    whether it works.
    $User = "[username]@[tenant].onmicrosoft.com"
    $Pass = "[password]"
    $creds = New-Object System.Management.Automation.PSCredential($User,(ConvertTo-SecureString $Pass -AsPlainText -Force));
    Connect-SPOService -Url https://[tenant]-admin.sharepoint.com -Credential $creds
    Get-SPOSite
    More information:
    http://blog.falchionconsulting.com/index.php/2013/01/using-powershell-to-manage-sharepoint-2013-online/
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Which port is need on Linksys QuickVPN access

    I want to set up the VPN service  on remote site but it site have only one public IP available.I  think can I set up the self own Linksys RV042 router in the ISP  provided router LAN port and ask ISP use port forwarding to my Linksys  RV042 router. So I want to know which port is need on using Linksys  QuickVPN to access RV042 VPN client-access. Are there are port 443 and  port 60443?
    It  is existing setup on ISP Router
    LAN: 192.168.1.1/24
    WAN: only one  public IP provided
    I will set own RV042
    LAN: 172.16.0.1/24
    WAN:  192.168.1.50/24 & gateway 192.168.1.1
    & ask ISP set port forwarding on  ISP provided router forward port 443 & 60443 to 192.168.1.50
    Is it  possible to provide VPN access to RV042?

    Ive got a WRT54GS v6  - Firmware 1.52.5
    Ive run out of port forward slots, Ive tried to use the port triggering but it always says
    "port forwarded range is overlapping with other port trigger records"
    Ive checked and no ports are overlapping, one person suggested that I try just using the forward slot instead of the trigger slot as well. When I click save changes it says succesful but then when it returns to the port trigger page everything is blank. no changes made.
    Everything has worked fine until this, im trying to get EA Games "Command and Conquer: Red Alert 3" to work online but the router is not co-operating very well.

  • WebCenter Services for Oracle Portal - licenses?

    Folks
    We have Oracle IAS Enterprise Edition. If we upgrade to 11g are the WebCenter Services components bundled with AS Portal or do you have to separately license them?
    cheers
    Terry

    Is it showing some error ?
    Check with DB settings and parameters properly.Usaully it should not take long time to complete.Possible chances are corrupt rcu file.I would suggest download again the RCU and re-run it.
    Anyways in which version of DB you are trying to install ?(vendor and version).
    Which version of RCU you are using ?
    Regards,
    Hoque

  • Hyper-v integration services needs to be updated.

    Recently we have moved few virtual machines to hyper-v core 2012 R2 (Free version) Now few virtual machines are showing below in hyper-v management console. 
    Do i need to update integration services as this message showing on virtual machines who are hosting mail server and database server. so after upgrading to latest integration services will it impact on VM's. Also
    "Guest Services" option is unchecked. Do need to enable this as well.  
    Akshay Pate

    Yes, you need to update integration service. 
    In Hyper-V Manager, double-click on a VM, click Action/Insert Integration Services Setup Disk, follow installation in the guest VM, reboot.
    Guest Services allows you to copy files to a running VM without using a network connection. It's optional. Integration services need to updated regardless
    of which ones you check/uncheck. 
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
    Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx

  • Which steps we need to follow in order to IE 11 can send requests using AES 128.

    Internet Explorer 11 by default send requests to servers using AES256 algorythm instead of using AES128 bits (used for PKI Service). Which steps we need to follow in order to IE 11 can send requests using AES 128.

    Shuffling the cipher suits should do the trick.
    See Prioritizing Schannel Cipher Suites
    http://msdn.microsoft.com/en-us/library/windows/desktop/bb870930(v=vs.85).aspx
    At a command prompt, enter gpedit.msc. The Group Policy Object Editor appears.
    Expand Computer Configuration, Administrative Templates, Network, and then click SSL Configuration Settings.
    Under SSL Configuration Settings, click the SSL Cipher Suite Order setting.
    In the SSL Cipher Suite Order pane, scroll to the bottom of the pane.
    Follow the instructions labeled How to modify this setting.
    It is necessary to restart the computer after modifying this setting for the changes to take effect. The list of cipher suites is limited to 1023 characters.
    examples
    TLS_RSA_WITH_AES_128_CBC_SHA                
    TLS_RSA_WITH_AES_256_CBC_SHA                
    TLS_RSA_WITH_RC4_128_SHA                    
    TLS_RSA_WITH_3DES_EDE_CBC_SHA               
    TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P256     
    TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P384     
    TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P521     
    TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P256     
    TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P384      
    TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P521
    TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA_P256   
    TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA_P384   
    TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA_P521   
    TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA_P256   
    TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA_P384   
    TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA_P521   
    TLS_DHE_DSS_WITH_AES_128_CBC_SHA            
    TLS_DHE_DSS_WITH_AES_256_CBC_SHA             
    TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA
    TLS_RSA_WITH_RC4_128_MD5                                      
    SSL_CK_RC4_128_WITH_MD5                     
    SSL_CK_DES_192_EDE3_CBC_WITH_MD5            
    TLS_RSA_WITH_NULL_SHA
    TLS_RSA_WITH_NULL_MD5    
    At which point you may place AES 128 suites before AES-256 suites, which is actually the default I believe even for TLS 1.2.

  • I am trying to use a website on my ipad which says it needs Adobe Flashplayer but I can't download Adobe when I click on it

    I am trying to use a website on my ipad which says it needs Adobe Flashplayer but I can't download Adobe when I click on it

    Adobe has not made a version of Flash for the iPad.
    Kappy explains why. https://discussions.apple.com/message/19446567#19446567
    5 Flash Player Alternatives http://www.techshout.com/features/2011/01/flash-player-for-ipad-apps/
    Top 4 browsers supports flash player on iPad and iPhone
    http://mashtips.com/flash-player-ios/
     Cheers, Tom

  • In R12 which file we need to modify as there is no jserv.properties

    In 11i we used to set some proxy settings like proxy host, proxy port etc... where as in R12 there will be no jserv.properties.. so where and which file we need to set these settings.
    can you plz guide me

    Hi,
    in R12 all the JVM parameters can be changed in $ORA_CONFIG_HOME/10.1.3/opmn/conf/opmn.xml
    But if you are talking about proxy and the rest then please check in $INST_TOP/ora/10.1.3/j2ee/oafm/config/oc4j.properties
    Thanks
    Edited by: EBSDBA on Dec 18, 2012 12:30 PM

  • Before i buy the complete creative cloud, how many computers can i install it on with the one subscription? i have a macbook pro laptop and a iMac desktop, which i both need it on.

    before i buy the complete creative cloud, how many computers can i install it on with the one subscription? i have a macbook pro laptop and a iMac desktop, which i both need it on.

    Creative Cloud Help | Creative Cloud / Common Questions
    "Can I use the software I download from Creative Cloud on more than one machine?
    Yes. Creative Cloud desktop applications can be downloaded and installed on multiple computers, regardless of operating system. However, activation is limited to two machines per individual associated with the membership. See the terms of use for more information. Learn how to deactivate a Creative Cloud license on a machine."

  • HT1338 Hi everybody..i have an enigmatic problem since i bought MacBook Air..i can't watch youtube videos and i did install the latest adobe flash player BUT when i start to install it the system keeps asking me to enter a password ? which password i need

    Hi everybody..i have an enigmatic problem since i bought MacBook Air..i can't watch youtube videos and i did install the latest adobe flash player BUT when i start to install it the system keeps asking me to enter a password ? which password i need ??????

    Your admin account password.

Maybe you are looking for