Tomcat Manager Portal in BlazeDS Turnkey Server

Hi all,
Im pretty new to blazeds, and liking what i have experienced thus far. Could anyone please tell me how to access the Tomcat Manager Portal within the BlazeDS Turnkey Server Installation.
Like in know it runs on port 8400 by default. So running it then opening http://localhost:8400 gets me the blazeds turnkey home page with links to the sample apps.
However I want to get to the Tomcat Portal to change file access permissions etc. And if i wanted to deploy apps from there etc.
Is this possible?
Please advise!
Kind Regards
Willem

Follow the instructions here:
http://blog.techstacks.com/2009/05/tomcat-management-setting-up-tomcat.html
Basically just add a user and role to the $CATALINA_HOME/conf/tomcat-users.xml:
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
  <role rolename="manager"/>
  <user username="tomcat" password="tomcat" roles="manager"/>
</tomcat-users>
Then use the URL: http://localhost:8400/manager/html to access the manager.

Similar Messages

  • Cant launch Profile Manager portal from Mountain Lion server

    After a previous permissions issue, I created a brand new ML server and now cant access the Profile Manager portal from the server (or any machines on the network). The DNS settings look good because I'm able to ping both the host name and the ip address from other computers on the network. Has anyone else experienced this?
    I tried to view the logs however the 'Profile Manager' logs are greyed out. Would any other log provide some information?

    Nelson -
    Pretty much everything boiled down to DNS, firewalls and ports.  Unfortunately, I was never able to acertain which of the three items were causing this problem because we have a separate group who manages the network and firewall (plus a separate security team).  If I recall, once they focused on what it was I was trying to accomplish, most of the problems "magically" went away. 
    Is your reverse DNS working the way it's supposed to?  Ex:
    yourserver:~ login$ hostname
    yourserver.yourdomainname
    yourserver:~ login$ host yourserver.yourdomainname
    yourserver.yourdomainname has address 10.x.x.x
    yourserver:~ login$ host 10.x.x.x
    3.34.2.10.in-addr.arpa domain name pointer yourserver.yourdomainname
    yourserver:~ login$
    Also be sure to follow "burton11234's" posts.  https://discussions.apple.com/people/burton11234?view=overview

  • Install and run blazeds-turnkey-3.2.0-3978 in Tomcat on Linux

    I Installed and ran the  blazeds-turnkey-3.2.0-3978 distrubution in Tomcat 5.0.27 with JVM  1.5.0_22 in my laptop (Window Vista Pro) successfully.
    Blazeds, ds-consolo, and  samples applications are working fine. I'm not using  Flex Builder for this. The ds-consolo and samples are
    accessed  through http://localhost:8080/ds-consolo and http://localhost:8080/samples.  I did not change any of the configuration files
    (service-config.xml,  ...) in the distribution package.
    Now I try to Install and run the same  blazeds-turnkey-3.2.0-3978 distrubution with the same Tomcat 5.0.27 with  JVM 1.5.0_22 in a remote Linux server.
    I changed the configuration  files as following:
    For blazeds application, I changed the parameters in all  the configuration files under WEB-INF/flex in following way:
    {server.name}:{server:port}  to xyz.com   (xyz.com is the domain name, and we use default port 80).
    {context-root}  to blazeds
    For ds-consolo application, I changed the  parameters in all the configuration files under WEB-INF/flex in  following way:
    {server.name}:{server:port} to xyz.com   (xyz.com  is the domain name,  and we use default port 80).
    {context-root} to  ds-consolo
    For samples application, I changed the parameters  in all the configuration files under WEB-INF/flex in following way:
    {server.name}:{server:port}  to xyz.com   (xyz.com is the domain name,  and we use default port 80).
    {context-root}  to samples
    It seems they were all deployed to the Tomcat OK,  but when I tried to run the ds-consolo and samples apps, I got
    errors.  Did I set the parameters in the configuration files, especially {context-root}, correctly? Am I  missing anything?

    If it is caused by a wrong port, I should get an error message or timeout.
    This is the services-config.xml file I'm using for Blazeds app
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <service-include file-path="remoting-config.xml" />
            <service-include file-path="proxy-config.xml" />
            <service-include file-path="messaging-config.xml" />       
        </services>
        <security>
            <login-command class="flex.messaging.security.TomcatLoginCommand" server="Tomcat"/>
        </security>
        <channels>
            <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
                <endpoint url="http://infody.com/blazeds/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
            </channel-definition>
            <channel-definition id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel">
                <endpoint url="https://xyz.com/blazeds/messagebroker/amfsecure" class="flex.messaging.endpoints.SecureAMFEndpoint"/>
                <properties>
                    <add-no-cache-headers>false</add-no-cache-headers>
                </properties>
            </channel-definition>
            <channel-definition id="my-polling-amf" class="mx.messaging.channels.AMFChannel">
                <endpoint url="http://xyz.com/blazeds/messagebroker/amfpolling" class="flex.messaging.endpoints.AMFEndpoint"/>
                <properties>
                    <polling-enabled>true</polling-enabled>
                    <polling-interval-seconds>4</polling-interval-seconds>
                </properties>
            </channel-definition>
        </channels>
        <logging>
            <target class="flex.messaging.log.ConsoleTarget" level="Error">
                <properties>
                    <prefix>[BlazeDS] </prefix>
                    <includeDate>false</includeDate>
                    <includeTime>false</includeTime>
                    <includeLevel>false</includeLevel>
                    <includeCategory>false</includeCategory>
                </properties>
                <filters>
                    <pattern>Endpoint.*</pattern>
                    <pattern>Service.*</pattern>
                    <pattern>Configuration</pattern>
                </filters>
            </target>
        </logging>
        <system>
            <redeploy>
                <enabled>false</enabled>
            </redeploy>
        </system>
    </services-config>
    There is no url or port settings in the other three Blazeds configuration xml file: remoting-config.xml, proxy-config.xml, messaging-config.xml
    Here is the services-config.xml file for ds-console app:
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <!--
                    REMOTING SERVICE
            -->
            <service id="remoting-service" class="flex.messaging.services.RemotingService">
                <adapters>
                    <adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/>
                </adapters>
                <!-- Runtime management console destination -->
                <destination id="RuntimeManagement" channels="amf">
                    <properties>
                        <source>flex.management.jmx.MBeanServerGateway</source>
                    </properties>
                </destination>
            </service>
        </services>
            <security>
                <login-command class="flex.messaging.security.TomcatLoginCommand" server="Tomcat"/>              
            </security>
        <channels>
            <channel-definition id="amf" class="mx.messaging.channels.AMFChannel">
                <endpoint url="http://xyz.com/ds-console/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
                <properties>
                    <polling-enabled>false</polling-enabled>
                </properties>
            </channel-definition>
        </channels>
        <logging>
            <!-- You may also use flex.messaging.log.ServletLogTarget -->
            <target class="flex.messaging.log.ConsoleTarget" level="Error">
                <properties>
                    <prefix>[BlazeDS] </prefix>
                    <includeDate>false</includeDate>
                    <includeTime>false</includeTime>
                    <includeLevel>true</includeLevel>
                    <includeCategory>true</includeCategory>
                </properties>
                <filters>
                    <pattern>Endpoint.*</pattern>
                </filters>
            </target>
        </logging>
        <system>
            <redeploy>
                <enabled>true</enabled>
                <watch-interval>20</watch-interval>
                <watch-file>ds-console/WEB-INF/flex/services-config.xml</watch-file>
                <touch-file>ds-console/WEB-INF/web.xml</touch-file>
            </redeploy>
        </system>
    </services-config>

  • Error: "Cannot access the web server" with BlazeDS Turnkey

    Help! I'm new to Flex and BlazeDS and Eclipse.  I was trying to setup a Flex Project using a BlazeDS/Tomcat server running from Eclipse on Windows XP per the example in flexbandit.com/archives/55#comment-269 and in (www.infoq.com/articles/blazeds-intro).   I am NOT using the Eclipse Flex plug-in.  I'm using Flex Builder for the Flex code.
    Here's what I've done:
    I installed BlazeDS and tested http://localhost:8400 - That worked.
    I setup Tomcat in Eclipse.  -  That seemed to work.
    I created a Dynamic Web Project in Eclipse - That seemed to work.
    I created the bare-bones BlazeDS Configuration under the Eclipse project and then created a basic HelloWorld java class.
    I added the destination in the “remoting-config.xml” file found in the c:/projects/workspace/ReportGenTool/WebContent/WEB-INF/flex” directory:
    <destination id="HelloWorld">   <properties>  <source>HelloWorld</source> </properties> </destination>
    When I started the application server by clicking on the server's green play button in Eclipse and then tried to open localhost:8400/ReportGenTool, I got the 404 error : The requested source (/ReportGenTool/) is not available which according to the instructions is fine.
    Next I created a Flex Project, but when I try to validate the new Flex project configuration, it gives me an error "Cannot access the web server. The server may not be running, or the web root folder or root URL may be invalid."
    When I validated the server was running after setting up the BlazeDs Turnkey, I saw the BlazeDS page.
    Now when I bring up http://localhost:8400 I get:
          Directory Listing for /
          Apache Tomcat/6.0.14
    My eclipse project is named ReportGenTool and I've overwritten the WebContent directory with the META-INF and WEB-INF directories from the BlazeDS installation (C:\blazeds\tomcat\webapps\blazeds).  According to Eclipse the server is running.
    My Flex project is named ReportGenTool and is located in another directory away from the Eclipse project directory.
         My root folder is: C:\Projects\workspace\ReportGenTool\WebContent
         Root URL: is http://localhost:8400/ReportGenTool/
         Context root is: /ReportGenTool/
    Any idea what might be wrong? What didn't I configure that needs to be configured?
    Thanks in advance.

    This is not working because your router has a direct to your web server that is not through the outside interface which is needed for nat to occur, for this to work you need to setup a loopback interface as nat outside and policy route traffic to there for your server traffic
    Bu if your server is internal why do you need nat at all? Can you not use bind with views that might be simpler
    M
    Sent from Cisco Technical Support iPad App

  • Install and run blazeds-turnkey-3.2.0-3978 in Tomcat in Linux

    I Installed and ran the blazeds-turnkey-3.2.0-3978 distrubution in Tomcat 5.0.27 with JVM 1.5.0_22 in Window Vista successfully.
    Blazeds, ds-consolo, and samples applications are working fine. I'm not using the Tomcat with Flex Builder. The ds-consolo and samples are
    accessed through http://localhost:8080/ds-consolo and http://localhost:8080/samples. I did not change any of the configuration files
    (service-config.xml, ...) in the distribution package.
    Now I try to Install and run the same blazeds-turnkey-3.2.0-3978 distrubution in the same  Tomcat 5.0.27 with JVM 1.5.0_22 in a remote Linux server.
    I changed the configuration files as following:
    For blazeds application, I changed the parameters in all the configuration files under WEB-INF/flex in following way:
    {server.name}:{server:port} to xyz.com   (xyz.com is the domain name, and we use default port 80)
    {context-root} to blazeds
    For ds-consolo application, I changed the parameters in all the configuration files under WEB-INF/flex in following way:
    {server.name}:{server:port} to xyz.com   (xyz.com is the domain name,  and we use default port 80)
    {context-root} to ds-consolo
    For samples application, I changed the parameters in all the configuration files under WEB-INF/flex in following way:
    {server.name}:{server:port} to xyz.com   (xyz.com is the domain name,  and we use default port 80)
    {context-root} to samples
    It seems they were all deployed to the Tomcat OK, but when I tried to run the ds-consolo and samples apps, I got
    errors. Did I set the parameters, especially {context-root}, correctly? Am I missing anything?

    I Installed and ran the blazeds-turnkey-3.2.0-3978 distrubution in Tomcat 5.0.27 with JVM 1.5.0_22 in Window Vista successfully.
    Blazeds, ds-consolo, and samples applications are working fine. I'm not using the Tomcat with Flex Builder. The ds-consolo and samples are
    accessed through http://localhost:8080/ds-consolo and http://localhost:8080/samples. I did not change any of the configuration files
    (service-config.xml, ...) in the distribution package.
    Now I try to Install and run the same blazeds-turnkey-3.2.0-3978 distrubution in the same  Tomcat 5.0.27 with JVM 1.5.0_22 in a remote Linux server.
    I changed the configuration files as following:
    For blazeds application, I changed the parameters in all the configuration files under WEB-INF/flex in following way:
    {server.name}:{server:port} to xyz.com   (xyz.com is the domain name, and we use default port 80)
    {context-root} to blazeds
    For ds-consolo application, I changed the parameters in all the configuration files under WEB-INF/flex in following way:
    {server.name}:{server:port} to xyz.com   (xyz.com is the domain name,  and we use default port 80)
    {context-root} to ds-consolo
    For samples application, I changed the parameters in all the configuration files under WEB-INF/flex in following way:
    {server.name}:{server:port} to xyz.com   (xyz.com is the domain name,  and we use default port 80)
    {context-root} to samples
    It seems they were all deployed to the Tomcat OK, but when I tried to run the ds-consolo and samples apps, I got
    errors. Did I set the parameters, especially {context-root}, correctly? Am I missing anything?

  • New Management Portal - Delete Function

    Anyone using the new Management portal?
    If yes then please can you let know how to delete a Azure SQL Server (That's associated with the SQL Databases).
    I can see the option in the old portal but the new portal under SQL Servers, I do not see any option to delete these servers.
    BTW these were test servers with databases and the SQL databases have been deleted but it leaves back the servers.
    Previous version AFAIK used to delete the server as well then all the databases were deleted.
    I know I can get this done using the old Management portal but I am just curious to know if anyone else has faced or see a similar issue.

    One way to delete a server in the new portal, albeit indirect, is to delete the resource group that contains the server. Please note that this will delete the server AND everything else in the resource group.  Deleting the resource group in the
    new portal can be accomplished by clicking on the resource group name above the SQL server name (example:
    Default-SQL-EastAsia) and then clicking the icon for "Delete" on the resulting blade.

  • Cannot connect to the Service Manager portal WCF service - Error when opening SM Portal

    Greetings,
    I have tried everything I can think of to resolve this issue and I have tried all suggestions I have found on Technet.
    Basically, I had the SM Portal working on a test VM.  I am ready to use it in production but it is not working.  I deleted my test VM and built a new one.  On it, I have SharePoint 2010 Foundation and the SM Portal installed.  I have
    a valid self-signed cert.  the FQDN is correct (hqsrva24.dds.local) in both SharePoint and also in IIS.  I also made sure under Application Settings on the SM Portal IIS site points to the FQDN of the SCSMWebContentServer.
    So what happens when I go to the SM Portal (https://hqsrva24.dds.local:444/SMPortal) is it prompts me for a logon, which i put in and the site comes up.  But at that point the Silverlight portion is not loaded and I immediately get prompted for a logon.
     I have tried several different logons, all of which have full access to the site in Sharepoint.  Eventually I get the error in red at the bottom of the screen "Cannot connect to the Service Manager portal WCF service"
    If I try to access the Web Content Server service on its own (https://hqsrva24.dds.local/Servicehost/services/DataAccessService.svc), I get a prompt to logon and none of my logons work.  i eventually get
    an unauthorized error. However; If I log into the server which SM Portal is on and go to https://localhost/Servicehost/services/DataAccessService.svc, I get no prompt to login and I get a "Metapublishing for this service is currently disabled."
    I'm out of ideas at this point, barring completely starting over (not just the SM portal but all of the Service Manager Suite).

    Man I've had this problem so many times and its almost always a different solution. Are you sure that either the Domain Users group or NT Authority\Authenticated Users have permissions to the site and service. remember the the two prompts are authenticating
    different things: the Sharepoint site and the application site (silverlight). Make sure users have permission in both SCSM and in Sharepoint. 
    - Slow is smooth and smooth is fast.

  • Cannot connect to the service manager portal wcf service

    Hi Guys,
    I'm having some issues with a fresh installation of the Service Manager 2012 Web Portal where I get the above message. Things I haved tried from reading other forum posts here:
    I've increased the maxStringContentLength value to 2457600
    Added HTTP bindings to Service Manager Portal (HTTP port 448) and SCSMWebContentServer (HTTP port 447)
    Added the FQDN to web.config in ContentHost
    ensured that web.config in ServiceHost has matching "DefaultHttpsBinding" throughout and "DefaultHttpsServiceBehavior" throughout
    I can access /ServiceHost/Services/DataAccessService.svc without issue
    I can access the SMPortal without issue, it just comes up with the above. Would anyone have any ideas?
    Thanks
    Lewis

    Sometimes if you don't have enough memory it can cause that error.  I have seen that a couple of times.  The first was because it was just a demo server and only had 4Gb RAM. 
    If you visit the page http(s)://servername:SMSSPPort/ServiceHost/Services/DataAccessService.svc what error do you get? 

  • Management Portal does not render content in IE10

    This appears to be a somewhat recent experience: I have logged on to the
    https://manage.windowsazure.com last month and all was working fine. Today I went and logged on via the ASC/ADFS SSO, and got the management portal with the top menu working, but just a spinner image in the body of the page. The spinner is stuck there after
    several minutes (see the attached image). I am running IE10.0.9200.17183 on Windows Server 2012 Datacenter Edition x64 (Version 6.2, build 9200). The portal opens just fine if I use Google Chrome browser. In IE10 I tried playing with browser compatibility
    mode in developer tools - same result. I've also tried in-private browser session to make sure I can exclude stale cache. No joy.
    I was wondering if this is a known issue, or perhaps an indication that Microsoft is shifting to using the new portal administration interface (it actually works in IE 10 no problem, I just don't like it as much). Thanks in advance.

    I got this problem a few times before. I just switched to use another browser and it would work. Then after a while IE will work again. Not sure of the root cause.
    Frank

  • Management Portal 8.5.2 Installation in Windows 2008

    Hi,
    I am experiencing a problem with Management Portal version 8.5.2. when I try to install this in windows 2008 R2 SP1 64 Bit server iam getting error stating that " Un supported Operating system and installer combination"
    Supported combinations are:
    32bit OS - 32 bit Vim.
    64bit OS - 64 bit Vim
    Currently running:
    64bit OS
    32bit process
    64bit Vim build
    .........aborting the install run
    Did any one face these kind of issues.....
    Thanks in advance....
    Karthik

    I experienced the same issue. This is how I resolved it.
    Check all pre-requisites .NET 3.5 Feature / Application Server Role with IIS / JRE 6u11 x64 / ASP .NET 2.0 AJAX Extension 1.0 / WSE 2.0 SP3 Runtime / SQL 2005 / SQL 2005 SP4 / SQL2005 SMO x64 - note X64 versions.
    Ensure that the software install is either from the CD or a mapped drive that presents the software like a CD i.e. Y:\autorun.bat
    Right click Y:\autorun.bat and select Run As Administrator - make sure it is the autorun.bat and not autorun.hta - windows helpfully hides the extension by default.
    Hope this helps someone else.
    Regards.

  • Error: "Cannot connect to the Service Manager portal WCF service on SSP" SCSM 2012

    I have the SSP installed on a Sharepoint 2010 server.  The web portal is installed on the SCSM 2012 management server.  When opening the SMPortal I get an error message at the bottom
    "Cannot connect to the Service Manager portal WCF service.  Please contact your helpdesk or UT administrator for further help."
    I have manually modified the web.config on the portal for SSL and the Application Settings in Sharepoint IIS per the guidance of others.  I'm able to open the service in a browser.  Assistance is greatly appreciated.

    Http and https is bound on both the content server and the portal. That didn't work. Same error message:
    Cannot connect to the Service Manager portal WCF service. Please contact your helpdesk or IT administrator for further help.
    Here's the IIS log for the content server
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/ServiceCatalogSilverlightModule.xap - 443 - 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 401 2 5 2078
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/ServiceCatalogSilverlightModule.xap - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 140
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/Instrumentation.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/BaseSilverlightModule.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/AdvancedResources.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 15
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/DataAccess.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/Core.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/BasicResources.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/BuildConstants.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 15
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/CustomControls.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/WizardResources.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.ComponentModel.DataAnnotations.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 15
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/ToolkitResources.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Data.Input.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Navigation.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.ComponentModel.Composition.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 62
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Input.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Data.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 140
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 218
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/en/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 2 15
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Toolkit.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 218
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Xml.Serialization.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Data.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Xml.Linq.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 250
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/en/SilverlightModule_StringResources.resx.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 203
    2012-01-10 21:10:20 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 - 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 401 2 5 17598
    2012-01-10 21:10:28 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 0 8580
    2012-01-10 21:11:01 X.X.X.X GET /ContentHost/ClientBin/en/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 2 0
    2012-01-10 21:11:01 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 0 203
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/RequestOfferingSilverlightModule.xap - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 171
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/FormControls.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 125
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/en/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 2 0
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/Microsoft.Practices.ServiceLocation.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/Microsoft.Practices.Unity.Silverlight.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:11:08 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 0 203
    2012-01-10 21:12:36 X.X.X.X GET /ContentHost/ClientBin/en/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 2 0
    2012-01-10 21:12:37 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 0 203

  • Sql database management portal

    Where is the ability to "MANAGE" your database through the portal without Visual Studio or SQL Server Management Studio?  Most of the documentation in the past reads that you can connect using https://sqldatabasename.database.windows.net but
    this is not the case.  Has Microsoft remove the ability to use an online Management Portal in lieu of VSTS 2013 or SSMS?
    Andy

    https://msdn.microsoft.com/en-us/library/azure/dn771027.aspx
    To launch the Management Portal for SQL Database, click a database name and then click the Manage button
    at the bottom of the page. If you are prompted to add the current IP address to a new firewall rule, click Yes.
    If you are connecting to the portal from inside a corporate domain, you might have to add the IP address of your proxy server as
    well.
    There is no "Manage" button any more.  
    I believe this feature has now been deprecated as it doesn't work in either Azure Portal or Azure Preview.
    Can you confirm?

  • Tomcat /manager commends from Servlet

    Hi all,
    I asked a question regarding the excution of Tomcat /manager commands from a servlet and I got no replies... :(
    Well, I never found a way to directly execute the /manager commands from the servlet (API) - but I did (eventually) get it working via URLConnection. Now, I've decided to release my (simple) code here so that it may help others!
    This code searches for a context and then checks if it is running, if it is found not to be running it will attempt to start it. (tested and found to work under Tomcat 5.0.28).
      String
        protocol  = "http",
        host      = "localhost",
        usr       = "usr",
        pwd       = "pwd",
        context   = "/myapp";
      int port = 80;
      URL list = new URL(protocol,host,port,"/manager/list");
      URLConnection c = (URLConnection)list.openConnection();
      String encs = new sun.misc.BASE64Encoder().encode((usr+":"+pwd).getBytes());
      c.setDoInput(true);
      c.setRequestProperty("Authorization", "Basic " + encs);
      c.connect();
      BufferedReader buf = new BufferedReader(new InputStreamReader(c.getInputStream()));
      String line;
      while ( (line = buf.readLine()) != null )
         * Search for the /workpackages context
        if ( line.startsWith(context+":") )
           * Found the context
           * Now make sure that it's running
          if ( line.indexOf("running") > 0 )
             * Context /workpackages found to be running!
              System.out.println("Context ["+context+"] - Running!");
          else
             * Context found NOT to be running!
             * Try and start the context!
            buf.close();
            System.out.println("Context ["+context+"] - Attempting to start context...");
            URL start = new URL(protocol,host,port,"/manager/start?path="+context);
            c = (URLConnection)start.openConnection();
            c.setDoInput(true);
            c.setRequestProperty("Authorization", "Basic " + encs);
            c.connect();
            buf = new BufferedReader(new InputStreamReader(c.getInputStream()));
            while ( (line = buf.readLine()) != null ) System.out.println(line);
          break;
    notes:
    The buffer reading after both commands seems to be required! I don't know why... But I found that without them, the manager commands seem to be ignored!?!? odd!
    Well, I hope this helps someone...

    thanx
    but when i am Deploying directory or WAR file located on server
    where is this XML Configuration file,
    so that i can fill in the text box-XML Configuration file URL
    and secondly in tomcat 5.5.4
    there is no context path described in server.xml
    so where is this in 5.5.4

  • Cisco Management Portal 8.5.1 Tenant/Peripheral Import failed

    Hi Folks,
    My name is Eric and I'm facing some issues on CCMP 8.5.1. First of all, I have configured all the steps following the  Installation Guide for Cisco Unified Contact Center Management Portal, but I stack at Tenant/Peripheral Import, at Communications Server Configuration. When I click to add a new Communications Manager, the system ask me to run a Tenant/Peripheral import, but when it starts, the process failed. All the connections are ok, the ICM connections to DB are ok.
    How can I import the Peripheral?
    I look at Connection Manager and all the process are yellow (pending test). There is a way to turn it green (Active)?
    Thank you very much.
    Obs.: I've attached some prints about this case.

    Hi eric,
    I have same issue. did you find solution to this?
    regards,
    Sandeep

  • [request] Asterisk Management Portal

    Asterisk Management Portal
    http://amp.coalescentsystems.ca
    I'd like this so it'd be better to manage my asterisk server. Thanks

    Heya,
    I just started to configure asterisk myself. I may build a PKGBUILD in the future, but I don't promise it.
    greetings,
    Michel

Maybe you are looking for

  • Implement a Pop-Up LOV in a report.

    Hi, I would like to use the 'HTMLDB_ITEM' item to generate a textfield with a link to a Pop-Up LOV in an Apex report. Anyone ever tried that before? Thanks. Edited by: Jacky411 on Jan 14, 2009 2:49 PM

  • Attempting to use flash builder beta 2 with beta 1 sdk

    Hi, I'm running into a few issues migrating a project I've started in Flash Builder Beta 1. The biggest mistake I probably made was uninstalling Beta 1 and I can't seem to find where to re-download it. Is it available somewhere? It would not be neces

  • MX7 SQL Server 2005 datasoucre error

    Webserver is Windows 2003 RC2, MX7.02 SQL Server is Windows 2003 RC2, SQL Server 2005 (9.0.1399) CF and SQL are on seperate machines [edit: the fix] OK, gotta love those netops guys. So we were narrowing it down to server -> server communication issu

  • On my Outlook e-mail I am unable to access my e-mail and there is a section at the top that is not normally there?

    For the past 4 days my msn outlook e-mail does not display correctly and I cannot select any of my e-mails even though I can see them. Also there is a view of (it looks like a preference selection window) at the top that I have not seen before. My e-

  • Has anyone experienced this? Slow audio playback.

    I'm wondering if anyone has experienced the issue I'm having... I'm using the same Flash/XML MP3 player that I've used on many occasions, but for some reason now, some of the mp3s that I'm pulling in are playing at a slower pitch. Because It only hap