Getting error ICM_HTTP_CONNECTION_FAILED  when retrieving employee photo

Hi,
We are using the who's who service in SAP ESS to retrieve the employee photo.
We got the error ICM_HTTP_CONNECTION_FAILED.
This function used to be working fine until we change our firewall recently.
Can anybody help please  ?
Thanks.

sm,
yes, all of your clients have to reach the content server, because the portal provides them with a http-link to the content server only.
the hostname and port are defined in OAC0. Doubleclick the entry that is used for your photos. On the next screen there are the used "HTTP-Server" and "Port" entries.
In such scenarios, maybe its useful to use reverse proxies. In that case your firewall could be maintained  easier.
kr, achim

Similar Messages

  • When synchronizing my iphone4 on the computer it errors out when optimizing the photos and shuts down iTunes.  Any idea what to do to get the synch working?

    When synchronizing my iphone4 on the computer it errors out when optimizing the photos and shuts down iTunes.  Any idea what to do to get the synch working?

    OKay, here is the deal. You cannot change the location of encrypted files nor can you share them with other machines. There is no file server for iTunes so even if you export the movie index from iTunes to an external volume, each time you reboot your computer itunes has to reindex the external drive every time you want to access the files. The second you run your mobile computer without the external drive or try to access the HD movies from another device or another user on the same network, the indexing gets out of synch. The entire process is self defeating regardless. The HD movies are encapsulized by apple to stream to your devices via iCloud and NOT via Cloud. Only your TV can play 1080p. That single file you download from iTunes has mutiple versions of the same video in the capsul, one version for each type of apple device. There are no 1080p apple devices except for the Apple TV. When you buy a movie you are buying a license and not the movie. It's going to get worse with all the new copywrite laws. Already you cant share any apple devices with other itunes accounts. Your airport express just stopped streaming music to all users on the local home sharing Cloud. Only the one user for each device and soon only airplay speakers connected directly to the device. No more passthru via your TV and no more file sharing with other accounts on the same wi-fi. All the ISPs are doing the same thing. And soon everybody will be buying their phones and TV's and iPads from the cabble guy.
    Apple has done a poor job of educating the consumer as to the difference between the Cloud and iCloud. They are not the same at all.
    Message was edited by: ronfromwoodland hills

  • ITunes for Mac Error -50 when syncing iPod photo

    OS X 10.5.4 iTunes 7.7 Getting error -50 when syncing photos to my 60G iPod Photo, music is synced but not alll checked photos. I have AppleTV and 2 iPhones that are synced with this computer and all 3 of those are synced properly. But this iPod is giving me fits. I have restored the iPod and re-synced to no avail. Are there any plists that are hidden that I can trash. I have read about keywords on photos causing it, but I have 19,0000 tagged photos and I can't look at each one for a corrupt keyword. I have turned on albums one at a time with no help. Seems like a sync is a sync iPhone, iPod, AppleTV. Why different results? I am trying to get the same photos as on iPhones (16G), and the Apple TV has all of my songs and Photos, so the keyword thing may be bogus info.

    Hi! I am having the same problem...how did you fix it?
    Thanks!

  • I keep getting error message when trying to sign in for iMessage with my Apple ID since upgrading to iOS 7

    I keep getting error messages when I try to activate iMessage on my iPad since installing iOS7. Anyone else having this issue or a solution. I can obviously sign in with the same Apple ID information/password as I have done here and I am connecting with Wifi now and in all other apps.

    After looking at some other posts I signed into iTunes and edited my password with my Mac. Then I powered off and restarted my iPad and all is good now.

  • Keep getting error message when trying to sign in to make a Genius Bar Reservation

    Keep getting error message when trying to sign in to make a Genius Bar Reservation

    Make the reservation by phone. 

  • I get error message when I try to load lightroom 5 -unable to laod application correctly (oxooooo7b)

    I get error message when I try to load lightroom 5 -unable to laod application correctly (oxooooo7b)
    what can I do

    Search here or Google ... https://helpx.adobe.com/lightroom/kb/error-unable-start-correctly-0xc00007b.html

  • I get error message when trying to add key tags

    I get error message when trying to add key tags

    You should always backup your iPad before ever doing anything major that coould result in a catastrophic loss is something goes wrong. You can then usually restore from the backup when your iPad has recovered.
    You should also be sure to have transfered any new purchases directly to your iPad to the iTunes app on your computer on a regular basis.

  • Getting error message when i am trying to update the excel file using script task in ssis package

    Hi Guys,
    I am getting error message when I am trying to update the excel. Please find the error messages as below
    Error at Update File [Update File]: Failed to compiled scripts contained in the package. Open the package in SSIS Designer and resolve the compilation errors.
    Error at Update File [Update File]: BC30002 - Type 'Microsoft.Office.Interop.Excel.Application' is not defined., ScriptMain.vb, 32, 32
    Error at Update File [Update File]: BC30002 - Type 'Microsoft.Office.Interop.Excel.Workbook' is not defined., ScriptMain.vb, 33, 25
    Error at Update File [Update File]: The binary code for the script is not found. Please open the script in the designer by clicking Edit Script button and make sure it builds successfully.
    Warning at Update File [Update File]: Found SQL Server Integration Services 2008 Script Task "ST_050fcae972904039b4f0fe59b7528ece" that requires migration!
    and the code that   I am using is
    Dell - Internal Use - Confidential
    ' Microsoft SQL Server Integration Services Script Task
    ' Write scripts using Microsoft Visual Basic
    ' The ScriptMain class is the entry point of the Script Task.
    Imports System
    Imports System.Data
    Imports System.Math
    Imports Microsoft.SqlServer.Dts.Runtime
    Imports Microsoft.Office.Interop.Excel
    <System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="",
    Description:="")> _
    <System.CLSCompliantAttribute(False)> _
    Partial
    Public Class ScriptMain
    Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
    Enum ScriptResults
                Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success
    Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
    End Enum
    Public Sub Main()
            Dts.TaskResult = ScriptResults.Success
    'Dim proc As System.Diagnostics.Process
    'kill all instances of excel
    'For Each proc In System.Diagnostics.Process.GetProcessesByName("EXCEL")
    ' proc.Kill()
    'Next
    Dim excelnacomm As
    New Microsoft.Office.Interop.Excel.Application
    Dim wbnacomm As Microsoft.Office.Interop.Excel.Workbook
            wbnacomm = excelnacomm.Workbooks.Open("http://test.xlsx")(renamed
    the excel)
            wbnacomm.RefreshAll()
            wbnacomm.Save()
            wbnacomm.Close()
            excelnacomm.Quit()
            Runtime.InteropServices.Marshal.ReleaseComObject(excelnacomm)
    End Sub
    End
    Class
    Please let me know what could be the reason
    Smash126

    Download:
    Microsoft Office 2010: Primary Interop Assemblies Redistributable
    How to: Add or Remove References By Using the Add Reference Dialog Box  /  How to:
    Add and Remove References in Visual Studio (C#)
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • I recently upgraded to iCloud 3.0 on home computer and now i get error messages when I open Outlook 2010.  It worked fine before with iCloud 2.1.2.  Any solutions?  I'm on Windows 7, Outlook 2010.

    I recently upgraded to iCloud 3.0 on home computer and now i get error messages when I open Outlook 2010.  It worked fine before with iCloud 2.1.2.  Any solutions?  I'm on Windows 7, Outlook 2010.

    HOW FRUSTRATING! NOW WHAT IS HAPPENING? WHEN I GO TO ANY WEBSITE THE PAGE FREEZES. TOP OF PAGE READS, MOZILLA FIREFOX NOT RESPONDING, THINK I"LL GO BACK TO IE, WAY TOO MANY ERRORS AND NO TECH SUPPORT ANSWERS

  • I get error (-15006) when I try to connect air play true Apple TV. No problem with my old PC.mit with my Mac i get that error.

    Hi, I get error (-15006) when I try to connect air play true Apple TV. No problem with my old PC. with my Mac i get that error.
    It is true the Ithunes I get the problem.
    What can I do to fix this.
    I also have problem some times to conect to my Ipad to Apple tv. Some time I have to restart my Ipad to get conection to Apple t. whay is that ?
    can some one help me ?

    Hi whitwick,
    If you are having issues with your network connection when attempting to use AirPlay, you may want to use the steps in this article to troubleshoot -
    iTunes: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS5209
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Get error message when trying to install windows. need to remort hd. how to

    tried to install xp with bootcamp. get error message when trying to partion the disk:"the disk can not be partioned because some files cannot be moved.
    back up the disk and use Disk Utility to format it as a single Mac OS Extended
    (Journaled) volume. Restore your information to the disk and try using Boot Camp
    Assistant again."
    bought an external hd and used time machine to back up everything. do not understand how to reformat the hd with disk utilities. any help is appreciated

    Hi and welcome to Discussions,
    have a look at the answers in this thread http://discussions.apple.com/thread.jspa?threadID=1972468&start=0&tstart=0 for an easier way to do this.
    Regards
    Stefan
    Message was edited by: Fortuny

  • Get error message when trying to launch bridge from CC 64 bit.

    Get error message when trying to launch Bridge from Photoshop CC 64 bit.  "Cannot complete command because extension cannot be loaded."  Need fix.  Thanks.

    Hi Adobe Bubba,
    Please uninstall the software, run the cleaner tool, restart your machine and install again.
    Cleaner tool: http://www.adobe.com/support/contact/cscleanertool.html .
    Regards,
    Romt Sinha

  • Get error message when trying to sync iphone to puter that says"cannot connect because apple mobile divise is not started? what do i do?

    get error message when trying to sync iphone to puter that says"cannot connect because apple mobile divise is not started? what do i do?

    Restart your computer and the iPhone. Press & hold the Power and Home buttons together for 10+ seconds, ignoring the red power-off slider, until you see the Apple logo. It is safe to do, there should be no content loss. It is the same as rebooting your computer.

  • Get error message when syching iPod, iPod cannot be synced. You do not have enough access priveleges for this operation.  How to solve this?

    Get error message when syching iPod, iPod cannot be synced. You do not have enough access priveleges for this operation.  How to solve this?

    Hello FranBNYC
    It sounds like a permissions issue with your library, check out the article below to check and make sure that things are set correctly.
    Trouble adding music to iTunes library or importing audio CD
    http://support.apple.com/kb/ts1387
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • I'm getting error 205 when trying to install ID with Creative Cloud on Windows 7. Help please.

    I'm getting error 205 when trying to install ID with Creative Cloud on Windows 7. Help please.

    Creative Cloud Help / Error downloading Creative Cloud applications
    http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html

Maybe you are looking for