Disabling IP Communicator web server

How can I disable the web server on IP communicator? This is for security purpose.
We are using CM 4.2(1)sr1b

Hi Pascal,
Disabling the Internal Web Server
You can disable the internal web server for Cisco IP Communicator by creating a Windows registry value using the regedit utility.
Open Windows regedit from the command line or from Start > Run. In regedit, choose HKEY_LOCAL_MACHINE\SOFTWARE\Cisco Systems, Inc.\Communicator. From the Edit menu, choose New > DWORD value. Rename the value WebServerDisabled (this value does not appear by default) and set it to any non-zero value. To enable the web server again, delete this key or set it to zero.
From this doc;
http://www.cisco.com/en/US/products/sw/voicesw/ps5475/prod_release_note09186a00802b9509.html#wp1082852
Hope this helps!
Rob
Please remember to rate helpful posts.....

Similar Messages

  • How to disable (his`de) Web Server Version Information

    Running sjsws 7.0u4 (and sjsws6.1) on SPARC Solaris 10 (10/08)
    How can I disable text that returns web server version information from sites such as Netcraft, etc.. on both these systems
    Thanks

    [http://wikis.sun.com/display/WebServer/faq_configuration#faq_configuration-17.HowtodisableWebServerfromdisplayingserverinformationwithintheresponseheader%3F|http://wikis.sun.com/display/WebServer/faq_configuration#faq_configuration-17.HowtodisableWebServerfromdisplayingserverinformationwithintheresponseheader%3F]

  • Communication problem the web server extension (WGATE) failed to receive a

    Hi,
    When a user tries to access his timesheet he get the below error:
    <b>communication problem the web server extension (WGATE) failed to receive a response from the ITS web service</b>
    Only ONE user is getting this error. If everyone get\s the same we can check on the ITS side, but if only ONE user is getting it.
    Please help.
    Regards,
    PK

    HI ALL,
    Thanks for your time. The issue got resolved however without cheking the logs itself. The problem was with the scripfile. All other users and all other scripts were working, except one. And it got recified.
    Regards,
    P. Kumaravel.

  • Error occured while communicating with web server

    In Netweaver if you receive this error  " error occured while communicating with web server "
    check your script logic file if you have mande any change to dimension
    names
    Vinoo

    Hi,
    validate below note
    Note 1330145 - an error occured while communicating with the web server
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b161a590-0201-0010-5590-91fa5076a914
    regards
    nag

  • Disabling Web Server HTTP Trace/Track Method

    How is it possible to disable the Web Server HTTP Trace/Track Method under SJS 7.x?
    As per out internal Qualys Scan report:
    A Web server was detected that supports the HTTP TRACE method. This method allows debugging and connection trace analysis for connections from the client to the Web server. Per the HTTP specification, when this method is used, the Web server echoes back the information sent to it by the client unmodified and unfiltered. Microsoft IIS web server uses an alias TRACK for this method, and is functionally the same.
    A vulnerability related to this method was discovered. A malicious, active component in a Web page can send Trace requests to a Web server that supports this Trace method. Usually, browser security disallows access to Web sites outside of the present site's domain. Although unlikely and difficult to achieve, it's possible, in the presence of other browser vulnerabilities, for the active HTML content to make external requests to arbitrary Web servers beyond the hosting Web server. Since the chosen Web server then echoes back the client request unfiltered, the response also includes cookie-based or Web-based (if logged on) authentication credentials that the browser automatically sent to the specified Web application on the specified Web server.

    http://blogs.sun.com/meena/entry/disabling_trace_in_sun_java

  • Disable PUT and DELETE HTTP methods in Sun ONE Web Server 6.1

    Hello ,
    i want disable PUT and DELETE methods in SunOne 6.1 , i don't find the solution ...
    Thnaks to help me .
    telnet www.mywebsite.com 80
    Trying 145.248.193.13...
    Connected to www.mywebsite.com.
    Escape character is '^]'.
    OPTIONS * HTTP/1.0
    HTTP/1.1 200 OK
    Server: Sun-ONE-Web-Server/6.1
    Date: Wed, 18 Jan 2006 08:07:41 GMT
    Content-length: 0
    Allow: HEAD, GET, PUT, POST, DELETE, TRACE, OPTIONS, MOVE, INDEX, MKDIR, RMDIR
    Connection: close

    are you sure that it isn't a vulnerability ? if i understand you , OPTIONS * HTTP/1.0 list all the possible methods but they are not actived ?
    i have test with OPTIONS / HTTP/1.0 , is that the those possible methods : HEAD , GET ??
    thanks
    telnet www.mywebsite.com 80
    Trying 145.248.193.13...
    Connected to www.mywebsite.com.
    Escape character is '^]'.
    OPTIONS / HTTP/1.0
    HTTP/1.1 200 OK
    Server: Sun-ONE-Web-Server/6.1
    Date: Wed, 18 Jan 2006 11:11:07 GMT
    Content-length: 0
    Allow: HEAD, GET
    Connection: close

  • How to disable OPTIONS in sun java web server 7.1

    I found TRACE in one of meena web log seems good. But I did not find service the OPTIONS in obj.conf. Is there any way to disable this service as it is showing vulnerabilities in one of our scanning report?

    In Web Server 7.0 Update 5 disabling TRACE and OPTIONS was trivial with:
    <If $method="TRACE" or
        $method="OPTIONS">
       AuthTrans fn="set-variable"
            error="501"
    </If>Place that near the top of your default object in the obj.conf. It should come before any NameTrans statements just to interrupt the request as early as possible.
    Result:
    # telnet foo.com 80
    Trying 1.2.3.4...
    Connected to foo.com (1.2.3.4).
    Escape character is '^]'.
    OPTIONS / HTTP/1.0
    Host: foo.com
    HTTP/1.1 501 Not Implemented
    Server: Netscape-Enterprise/7.0
    Date: Wed, 22 Jul 2009 18:38:13 GMT
    Content-type: text/html
    Connection: close
    <HTML><HEAD><TITLE>Not Implemented</TITLE></HEAD>
    <BODY><H1>Not Implemented</H1>
    This server does not implement the requested method.
    </BODY></HTML>
    Connection closed by foreign host.

  • Disable HTTP Methods on Sun One Web Server 6.1

    I've been instructed by our auditors to disable the HTTP TRACE and TRACK methods in our web server. I can't find anything in the documentation on how to do this, although the following statments in the default object in obj.conf look like they might be involved:
    Service method="(GET|HEAD)" type="magnus-internal/imagemap" fn="imagemap"
    Service method="(GET|HEAD)" type="magnus-internal/directory" fn="index-common"
    Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file"
    Service method="TRACE" fn="service-trace"
    Can anyone point me in the right direction here?
    Thanks,

    Remove Comment out the line in obj.conf that contains the method "TRACE".
    http://blogs.sun.com/meena/entry/disabling_trace_in_sun_java

  • An Error Occurred While Communicating with Web Server

    We are getting an error message ("An Error Occurred While Communicating with Web Server") when sending data from BPC Excel. Any one konws why it is coming.
    We are using ASP.NET version 2.0.50727 in ISS Server

    Hi,
    This kind of error happens when EVDRE status is not Ok.
    Even if EVDRE status is OK please make the relevant changes in expansion range--> MemberSet values.
    Hope it helps
    Raman
    Edited by: Radharaman Singh Rajkumar on Jun 29, 2010 5:25 PM

  • Communication problem between external web server and SAP WebAS

    Hello Experts,
    We are having a serious problem over here where we had one external server is pushing XML string using a HTTP-POST request to our SAP WebAS server (a BSP application is handling this request). We are not able to see the request coming to SAP i.e. SAP-BSP is not receiving XML.
    Also we found that, if request is routed through another proxy server (apache tomcat server redireting the request) connected through VPN to our network, it works but if the the same server is inside our network it doesn't. Rather in that case it never hits the Apache-Tomcat server itself.
    We tried to identify the network issue but it seems it is not the network or any firewall issue. When we had a small Echo server (itu2019s a small Java server) running on our SAP machine, we could see the request coming in. So it is definitely reaching the SAP server but the SAP Web AS is not picking up. Rather what we found that if the URL is simple e.g. http://<hostname>:<port> it works but if the URL is complex like something generated by SAP incase of BSP application it doesn't.
    Any idea what is causing this issue?
    I tried to look at SMICM trace files but got nothing. Any idea where would find the trace of incoming HTTP requests to SAP WebAS?
    Thanks in advance.
    regards
    rajeev

    Hi Rajeev,
    Pelase find the below link. i am not sure this is the exactly one for you. But i hope it'll help you.
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417800)ID0350917650DB11174011760851503410End?blog=/pub/wlg/10285
    http://www.sap-img.com/basis/basis-faq.htm
    Regards,
    CSK.

  • Disabling Weblogic's http server port - Using an external web server

    Hi,
    We are using Weblogic 8.1 as application server and IWS as web server. We have
    siteminder web agent configured on the web server for implementing authentication
    and authorization.
    All our requests first go to the web server which redirects them to the application
    server.
    Since Weblogic itself has a http listen port, user can still send requests directly
    to the application server(which does not have any siteminder configuration on
    it). Is it possible to ensure that all http requests made directly to the application
    server are not processed so that the user is forced to hit the web server first.
    Thanks,
    Akash

    When you say redirect, do you mean you use an HTTP redirect to send it to your
    WLS servers URL? Or do you mean you proxy the requests from the webserver to
    the WLS instance? In the former case, you must expose WLS's HTTP server to the
    clients in order to redirect them to the address and you will not be able to
    stop them from going directly there. In the case of the latter, you can put
    your WLS instance behind the firewall so external users can't get to it. If you
    also need to protect it from internal users you should probably not use
    siteminder as your authentication mechanism. You may be able to configure
    siteminder so that it has to authenticate itself to send requests to weblogic
    and then protect all weblogic resources with that role requirement.
    Sam
    [email protected] wrote:
    Hi,
    We are using Weblogic 8.1 as application server and IWS as web server. We have
    siteminder web agent configured on the web server for implementing authentication
    and authorization.
    All our requests first go to the web server which redirects them to the application
    server.
    Since Weblogic itself has a http listen port, user can still send requests directly
    to the application server(which does not have any siteminder configuration on
    it). Is it possible to ensure that all http requests made directly to the application
    server are not processed so that the user is forced to hit the web server first.
    Thanks,
    Akash

  • Sun ONE Web Server 6.1SP5 and Communications Express Error

    I post this to the wrong forum i think i am getting this error after running the config-uwc.
    Sun ONE Web Server 6.1SP5 B06/23/2005 22:22
    info: CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.5.0_04] from [Sun Microsystems Inc.]
    config: for host 0.0.0.0 trying to GET /, name-trans-passthrough reports: init-passthrough has not been called
    info: WEB0100: Loading web module in virtual server [https-proxy1.mrc.ac.za] at [da]
    info: WEB0100: Loading web module in virtual server [https-proxy1.mrc.ac.za] at [uwc]
    info: WEB0110: Ignoring invalid property [allowLinking] = [true]
    info: WEB0100: Loading web module in virtual server [https-proxy1.mrc.ac.za] at [search]
    warning: CORE3283: stderr: Exception in thread "Thread-1" java.lang.NoClassDefFoundError: org/mozilla/jss/crypto/KeyGenAlgorithm
    warning: CORE3283: stderr: at java.lang.Class.forName0(Native Method)
    warning: CORE3283: stderr: at java.lang.Class.forName(Class.java:164)
    warning: CORE3283: stderr: at com.iplanet.services.util.Crypt.createInstance(Crypt.java:133)
    warning: CORE3283: stderr: at com.iplanet.services.util.Crypt.<clinit>(Crypt.java:103)
    warning: CORE3283: stderr: at com.iplanet.services.ldap.LDAPUser.getPasswd(LDAPUser.java:117)
    warning: CORE3283: stderr: at com.iplanet.services.ldap.ServerInstance.getPasswd(ServerInstance.java:128)
    warning: CORE3283: stderr: at com.sun.identity.security.ServerInstanceAction.run(ServerInstanceAction.java:92)
    warning: CORE3283: stderr: at java.security.AccessController.doPrivileged(Native Method)
    warning: CORE3283: stderr: at com.iplanet.am.util.AdminUtils.<clinit>(AdminUtils.java:82)
    warning: CORE3283: stderr: at com.sun.identity.security.AdminDNAction.run(AdminDNAction.java:86)
    warning: CORE3283: stderr: at java.security.AccessController.doPrivileged(Native Method)
    warning: CORE3283: stderr: at com.sun.identity.authentication.internal.server.SMSAuthModule.initialize(SMSAuthModule.java:129)
    warning: CORE3283: stderr: at com.sun.identity.authentication.internal.LoginContext.login(LoginContext.java:122)
    warning: CORE3283: stderr: at com.sun.identity.authentication.internal.AuthLoginThread.run(AuthLoginThread.java:82)

    I reran the access manager configuration and deployed it to the web server and now the webserver starts up successfully. I think my problem was that the file I was using initially wasn't properly setup for my enviroment.
    Carinus

  • Need Help Streaming Video From Web Server Built Into Application - Linksys WRT54g Router

    Very much appreciate any help getting streaming video feed from web server built into video application to work properly using port forwarding on my Linksys WRT54g wireless router.
    Here is the situation:
    My PC is connected to the internet via a Linksys WRT54g wireless router.
    The Windows XP Pro SP2 firewall is enabled, with a firewall exception established for the video camera application.
    On the router, forwarding of port 80 is enabled for the LAN IP address of the PC running the video application with an embedded web server, and the web server in the video camera application is also set to use port 80.
    I have a free DYNDNS account and also run the DYNDNS updater program on the PC running the video application with embedded web server. According to the DYNDNS web site and the DYNDNS updater program, the IP address assigned to the machine running the video application with embedded web server is set correctly in my dyndns account.
    When I open a browser (Explorer or Firefox) on the PC running the video camera application with embedded web server, I am able to  connect to the video application's web server by going to the dyndns address linked to the machine running the video application. The video application's web server is set to use the dyndns address. That's the good news. The bad news is that I can't connect to the video application's web server from any machine that connects to the internet that uses a router other than the router used by the PC running the video application. I am only able to connect to the streaming video from the application's web server only on machines that connect to the internet using the same (home) router used by the PC that is running the video application.
    Since I am able to connect to the video app's embedded web server successfully on the machine running the video application, it seems that at least something about the current port forwarding settings is correct. For example, if I uncheck 'enable' for forwarding of port 80 on the router settings page, I am no longer able to connect to the video app's web server when I try to do so in a browser running on the machine running the video app. When I re-enable port 80 forwarding on the router, I am again able to connect to the web server of the video application on the machine running the video app. I thought that by enabling forwarding of port 80 on the router and associating that port with the LAN IP of the machine running the video application, it would be possible to connect to the streaming video of the video app's embedded web server from ANY machine connected to the internet, but that is not the case. There must be some other router settings to update/change in order to get the port forwarding working to enable a successful connection to the video web server, but I am stumped. Very grateful for any suggestions as to how to get this working properly.
    Thanks in advance...

    The firewall log can be configured on the third tab in the window for the firewall settings, where you can turn the firewall on and off completely.
    From your tests, though, it does not seem to be the firewall. However, to be sure, it would be good to check the log. It will help to eliminate the firewall as the culprit and you may find it handy in the future, too. ;-) Just don't forget to turn the log off again after you are done because it may cause some performance penalty on your system while on.
    From what you write, it seems as if I should give a little networking background on the ip addresses you'll see. Your setup is (or should be) a modem connected to the WAN/Internet port of the WRT. The computer is connected into a LAN port of the WRT.
    Your router has two IP addresses (that's what makes it a router): a WAN address and a LAN address. The WAN address is the address assigned by the ISP. It is a normal internet IP address. Everyone is able to send packets to this IP address. The WAN address is the one reported by whatismyipaddress.com, it should be listed in the dyndns record and it is the address that your router shows on the Status page. It's the public IP address of your router. Dyndns maps your dyndns.org name to that IP address.
    Your router also has an IP address on the LAN side. You can configure it to be whatever you want. The default is 192.168.1.1 with netmask 255.255.255.0 and it is better to leave it like that or at least inside the network 192.168.*.*. 192.168 is a special, reserved IP address range for private networks. Basically, routers in the internet are not supposed to forward addresses in this range. That makes them suitable for private LANs as the packets never can get anywhere. Most people using Linksys routers have there LAN in 192.168.1.*.
    The router acts as gateway, which means it forwards packets from PCs in the LAN to the internet and back. As all your PCs in your LAN share a single WAN IP address, the gateway does address translation (NAT). This works only in one direction: from the inside to the outside. The router remembers when a PC in your LAN sends something out and accepts the responses in and sending them back to the PC. If something comes in from the internet which cannot be associated with a ongoing communication the packet is dropped unless you use port forwarding.
    All computers in your LAN either have a static IP address assigned or use DHCP to get it automatically. The router has a DHCP server as well which gives out IP address from 192.168.1.100-149 if not changed. With a router with default settings static IP addresses can be in the range of 192.168.1.2-99 and 150-254.
    ipconfig /all reports your IP address in your LAN, i.e. an address 192.168.1.*. The gateway in this output should be 192.168.1.1 which is your router. And packet no in the LAN address range 192.168.1.* is send to the router which forwards the packets into the internet.
    An address 192.168.1.* should not appear as internet address in the Status page of the router nor should it appear at dyndns.
    Port forwarding is used to operate a server in the LAN. By default, a server in the LAN cannot be reached from the internet. You have to configure port forwarding for this. You configure that traffic bound for a specific port (e.g. TCP port 80 for http) on your WAN IP address is forwarded to the same port on a specific LAN IP address. If your server runs on 192.168.1.50 than traffic to your WAN IP address port 80 is forwarded to 192.168.1.50 port 80. That way your HTTP server can be reached from the internet. As you can only configure a fixed IP address in port forwarding it is recommended that the server uses a static IP address and not DHCP as in the latter case the IP address may change over time...
    O.K. so much for networking. I hope that makes things a little clearer and you can verify that your setup is how it is intended to be.
    I suggest the following: on the router's security page there is an option to block WAN requests. Remove the check if it is set (meaning: do not block). After you did that change you should be able to ping your WAN address (e.g. ping xxxx.dyndns.org) from the internet. That way we know that it is on the correct address.
    Also on the Administration page make sure that remote management is disabled (should be like that per default) or that the management port is NOT 80 but for example 8080. What is your your UPnP settings on the same page?
    O.K. that should be enough for the moment...

  • Web server config tool problem

    Hi, I just installed coldfusion 702. At the end got an error
    that I need to manually configure web server through the tool. When
    I open the tool it does not show any existing servers. I have
    checked - IIS is running. I can access the localhost page.
    Coldfusion server is running. Checked that in control
    panel>administrative services>services. I have disabled all
    firewalls, antivirus, privacy service. I am using XP sp2. Have read
    through forums and tech notes - no luck. Any advise would be
    greatly appreciated. The wsconfig log shows the following error
    message:
    "error Could not connect to any JRun/ColdFusion servers on
    host localhost.
    Possible causes:
    o Server not running
    -Start Macromedia JRun4 or ColdFusion MX server
    o Server running
    -JNDI listen port in jndi.properties blocked by TCP/IP
    filtering or firewall
    on server
    -host restriction in security.properties blocking
    communication with server
    jrunx.connectorinstaller.NoServerException: Could not connect
    to any JRun/ColdFusion servers on host localhost.
    Possible causes:
    o Server not running
    -Start Macromedia JRun4 or ColdFusion MX server
    o Server running
    -JNDI listen port in jndi.properties blocked by TCP/IP
    filtering or firewall
    on server
    -host restriction in security.properties blocking
    communication with server
    at
    jrunx.connectorinstaller.CIJndi.findServers(CIJndi.java:477)
    at
    jrunx.connectorinstaller.CIJndi.<init>(CIJndi.java:141)
    at
    jrunx.connectorinstaller.CIJndi.<init>(CIJndi.java:147)
    at
    jrunx.connectorinstaller.ConnectorInstaller.parseArgs(ConnectorInstaller.java:228)
    at
    jrunx.connectorinstaller.ConnectorInstaller.<init>(ConnectorInstaller.java:56)
    at
    jrunx.connectorinstaller.ConnectorInstaller.main(ConnectorInstaller.java:750)"

    I am having this same problem. I have uninstalled Windows
    Defender and disabled Windows Firewall and no matter what I do, the
    wsconfig utility does not find any servers on localhost. I do get
    the Add/Exit buttons, but when I click Add, I don't get anything.
    I've modified C:/CFusionMX7/runtime/lib/security.properties
    to include:
    jrun.trusted.hosts=localhost,127.0.0.1
    Which jndi.properties should I look at?
    C:\CFusionMX7\runtime\lib\client\CLIENT-INF or
    C:\CFusionMX7\runtime\servers\coldfusion\SERVER-INF
    Should either of these files be modified?
    Restarting Coldfusion has not made a difference.

  • Built-In Web Server and Anonymous Access

    Is it possible to disable anonymous acess to a virtual
    directory if I'm using the CF built-in web server?

    kslane@FSI wrote:
    > I have CF8 Developer Edition running with the built-in
    web server on my work
    > computer. Is it possible for other machines to connect?
    I was hoping to let
    > my co-worker connect to see what I was doing, but
    http://myipaddress:8500 does
    > not work nor does
    http://mymachinename:8500.
    Have you disabled your firewall?
    Jochem
    Jochem van Dieten
    Adobe Community Expert for ColdFusion

Maybe you are looking for