Cannot access web resource after amserver success authentication.

Linux+Apache 2.0.54+2.2 Agent
1. access pretected resource; [302] redirected to amserver login UI; submit login request; [302] redirected back to the target resource.
2. web page show [500], Internal Server Error
3. agent log [amagent] show:
2008-01-06 13:50:46.460 Error 4852:5e8bb0 AM_SSO_SERVICE: SSOTokenService::getSessionInfo(): Error 5 for sso token ID AQIC5wM2LY4SfcxfvsTxJKgdtVH6IxuOLHnXhijcQGeJU/s=@AAJTSQACMDE=#.
2008-01-06 13:50:46.460 Error 4852:5e8bb0 PolicyEngine: am_policy_evaluate: InternalException in Service::initialize() with error message:Session query failed during service creation. and code:5
Anyone has ever met this?
Another question - why the sso token ID does not equal the browser received cookie [iPlanetDirectoryPro]?

You should not have upgraded it wirelessly. Upgrading it wirelessly is not recommended because it is very unstable... if you lose connection to the router while upgrading.. it will definitely get bricked... which might be the case w/ your router now...
But anyway try one last thing, try to force the NIC to 10 half mode or 10 half duplex... then try to ping the router... on tips on how to do this go to www.linksys.com/kb and type on the main search bar "forcing NIC to 10 mbps" and that should give you the necessary article you need to follow...

Similar Messages

  • Cannot access web console after install.

    Hi all.
    The last day has been my first encounter with Oracle VM and it seemed to go fine until I finished. I have installed the latest VM and management tools on a bare bones machine (spec below) but cannot access the console via http://machine:8888/OVA.
    I have tried installing using https and without and can gain access to neither the https 4443 or the http 8888 yet I can ssh into it quite easily. The dmesg only really complains that there are no ipv6 routers (understandable) but the xend.log in /var/log/xen does show something strange at the bottom:
    [2011-07-13 16:04:45 3011] DEBUG (XendDomain:452) Adding Domain: 0
    [2011-07-13 16:04:45 3011] DEBUG (XendDomain:386) number of vcpus to use is 0
    [2011-07-13 16:04:45 3011] INFO (SrvServer:177) unix path=/var/lib/xend/xend-socket
    [2011-07-13 16:04:45 3011] DEBUG (XendDomainInfo:1727) XendDomainInfo.handleShutdownWatch
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: VBD.set_device not found
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: VBD.set_type not found
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: session.get_all_records not found
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: event.get_record not found
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: event.get_all not found
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: VIF.get_network not found <------ ?????
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: VIF.set_device not found
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: VIF.set_MAC not found
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: VIF.set_MTU not found
    [2011-07-13 16:04:45 3011] WARNING (XendAPI:695) API call: debug.get_all not found
    The spec of the machine started out as:
    Athlon 64 x2 3600+
    4Gb Ram
    2 Nics (1 built in Broadcom & 1 Intel MT)
    1 NVidia super duper gt9500
    3 Hard Disk, (1 IDE 150gb , 1 SATA 80 & 1 SATA 150 - the IDE is master boot with system on it)
    After a few attempts, I removed Video and the Intel card.
    The install was done via CD and never complained and in this last install, it only had 1 NIC to choose for the management console.
    On this last install I also chose top use none https and therefore the system says I should gain access via http://machine:8888/OVA
    I do notice though that in some tutorials, it states alternatives to OVA like OVS etc, all of which I have tried.
    Oh and if I netstat -an, it shows it's listening on port 8888.
    many thanks, I'm guessing it's some a bit silly that I've over looked but from the way I read the install instructions, you only need the VM and the management Disks to install and you should be able to access via web console?
    BTW, systems I'm using as clients to access range from, opera, firefox (Soalris), ie 6,7,8 & 9 from Windows and Windows server. All I get is Internet Explorer Cannot Display This Page.
    many Thanks, Mark

    Did you install the VM Manager software as a VM hosted by OVS? Make sure the VM is running. It is probably named something like OVM_EL5U4_X86_OVM_MANAGER_PVM. Use "xm list" on the OVS server to see which VMs are running.
    If it's not running, then run "xm create /path/to/vm.cfg" the path is probably something like /OVS/running_pool/OVM_EL5U4_X86_OVM_MANAGER_PVM/vm.cfg
    Jim

  • Unable to access Web Method after deploying into the server

    Hi,
    I'm Unable to access Web method after deploying into the server.
    My Web method is 
    [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Json )]
    public object getOwners()
    DataTable dt = _qbObj.returnDDLData("employeedetails", "EmpID", "EmpFirstName");
    if (dt == null)
    return new { Result = "Error", Options = "Error getting data" };
    string[] strAttributes = { "ID", "Name" };
    string[] strColName = { "EmpID", "EmpFirstName" };
    List<SolOwners> lstObject = convertToList(dt, strAttributes, strColName, new SolOwners());
    var owners = lstObject.Select(c => new { DisplayText = c.Name, Value = c.ID });
    return new { Result = "OK", Options = owners };
    When I.m accessing that method after deploying into server, I got following error.
    System.InvalidOperationException: There was an error generating the XML document. ---> System.InvalidOperationException: &lt;&gt;f__AnonymousType9`2[System.String,System.Collections.Generic.IEnumerable`1[&lt;&gt;f__AnonymousTypea`2[System.String,System.String]]] cannot be serialized because it does not have a parameterless constructor.
    at System.Xml.Serialization.TypeScope.GetTypeDesc(Type type, MemberInfo source, Boolean directReference, Boolean throwOnError)
    at System.Xml.Serialization.XmlSerializationWriter.CreateUnknownTypeException(Type type)
    at System.Xml.Serialization.XmlSerializationWriter.WriteTypedPrimitive(String name, String ns, Object o, Boolean xsiType)
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriter1.Write1_Object(String n, String ns, Object o, Boolean isNullable, Boolean needType)
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriter1.Write71_anyType(Object o)
    at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
    --- End of inner exception stack trace ---
    at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
    at System.Xml.Serialization.XmlSerializer.Serialize(TextWriter textWriter, Object o, XmlSerializerNamespaces namespaces)
    at System.Web.Services.Protocols.XmlReturnWriter.Write(HttpResponse response, Stream outputStream, Object returnValue)
    at System.Web.Services.Protocols.WebServiceHandler.WriteReturns(Object[] returnValues)
    at System.Web.Services.Protocols.WebServiceHandler.Invoke()Please help me to solve that issue.Thank you.

    Hi Vani,
    What project are you developing? According to your code looks like an Asp.Net application? Am i right?
    If so , please repost in  ASP.Net Forum
    http://forums.asp.net for more efficient responses.
    This forum is discuss problems of C# development.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • After upgrading to Mountain Lion I am not able to access "security and privacy" button under "system preferences". I like to activate "find my mac" but cannot access privacy setting after upgrade. Kindly advice.

    After upgrading to Mountain Lion I am not able to access "security and privacy" button under "system preferences". I like to activate "find my mac" but cannot access privacy setting after upgrade. Kindly advice.

  • How do i solve - cannot access web server - error message when creating a project in 4.5 with PHP

    How do i solve - cannot access web server - error message when creating a project in 4.5 with PHP

    Screenshot of how it looks when i try to show a ms access form inside a iframe:
    http://oi58.tinypic.com/2vj4ish.jpg

  • NAC GUEST SERVER CANNOT ACCESS WEB CONSOLE

    Hello,
    I have a NAC guest server. I can access CLI but cannot access web console. I used both the https:// ip address/admin and http://ip address/admin. Please what could be the solution of this issue?
    thank you and best regards.
    Edwin

    Edwin,
    Are the various necessary services running on that server? Post the output of following commands:
    ps auwwwx
    chkconfig --list
    service httpd status
    service postgresql status
    Faisal

  • SPA122 cannot access web configuration utility

    The new SPA122 device connected to router through DHCP.
    I can see IP-address on router's web page, can ping it, and receive it with ****110# IVR command.
    But I cannot access web configuration utility in the browser: the page is unavailible. I tried to allow WAN access with ****7932#1#1 IVR action - the problrem still on.
    Can You give me any advice what to do.

    You can also connect to the lan/ethernet side of the device, do an ipconfig /renew
    You should get an address on the 192.168.15 network, the default for the router in the ATA is 192.168.15.1
    Then you can set up the non default password, enable the wan web server (administration tab I think).
    dlm...

  • Suddenly on my iPad I cannot access web links  via emails but can on my iphone

    Suddenly I Cannot access web links via emails on my iPad but can on my iPhone. Is there something in my settings I need to change?

    Restart
    https://www.apple.com/support/iphone/assistant/phone/#section_1

  • Users cannot access removable devices after you enable and then disable a Group Policy setting in Windows 7 64 Bit

    Users cannot access removable devices after you enable and then disable a Group Policy setting on Windows 7 64 bit machines.
    on the 32 bit machines I was able to apply this hotfix
    http://support2.microsoft.com/kb/2738898
    But it will not install on 64 bit machines. 
    Is there a hotfix for 64 bit?  If not, what is the work around?
    Thanks!
    Robert

    Select "Show hotfixes for all platforms and languages", then download x64 hotfix:
    Please take a moment to Vote as Helpful and/or Mark as Answer where applicable. Thanks.

  • Cannot access my Ipad after downloading latest download.  It wont accept my password.

    I cannot access my Ipad after downloading latest download.  The Ipad wont accept my password.  What can I do?

    Try the following:
    1. Restore:
    http://support.apple.com/kb/HT1414
    2. Recovery:
    http://support.apple.com/kb/HT1808

  • Cannot access local resource file

    When I run my application on browser these error comes, I have found to change right click on project>properties>flex build path>libary path> framework linkage to "Merge into code"not working,
    I have also changed right click on project> properties>Flex compiler> Additional compiler arguments - -locale en_US to some -network false still its not working
    and undid whatever change i made,
    Help!
    SecurityError: Error #2148: SWF file http://localhost/aamshare-debug/aamshare.swf cannot access local resource file:///C|/wamp/www/aamshare-debug/media/bse.png. Only local-with-filesystem and trusted local SWF files may access local resources.
        at flash.display::Loader/_load()
        at flash.display::Loader/load()
        at mx.controls::SWFLoader/loadContent()[C:\autobuild\3.2.0\frameworks\projects\framework\src \mx\controls\SWFLoader.as:1611]
        at mx.controls::SWFLoader/load()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\con trols\SWFLoader.as:1380]
        at mx.controls::SWFLoader/initializeHandler()[C:\autobuild\3.2.0\frameworks\projects\framewo rk\src\mx\controls\SWFLoader.as:1971]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::UIComponent/dispatchEvent()[C:\autobuild\3.2.0\frameworks\projects\framework\src \mx\core\UIComponent.as:9298]
        at mx.core::UIComponent/set processedDescriptors()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UICom ponent.as:1217]
        at mx.core::UIComponent/initializationComplete()[C:\autobuild\3.2.0\frameworks\projects\fram ework\src\mx\core\UIComponent.as:5395]
        at mx.core::UIComponent/initialize()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx \core\UIComponent.as:5379]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[C:\autobuild\3.2.0\frameworks\pro jects\framework\src\mx\core\UIComponent.as:5267]
        at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()[C:\autobuild\3.2.0\frameworks\pro jects\framework\src\mx\core\Container.as:3305]
        at mx.core::Container/addChildAt()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\c ore\Container.as:2217]
        at mx.core::Container/addChild()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\cor e\Container.as:2140]
        at mx.core::Container/createComponentFromDescriptor()[C:\autobuild\3.2.0\frameworks\projects \framework\src\mx\core\Container.as:3681]
        at mx.core::Container/createComponentsFromDescriptors()[C:\autobuild\3.2.0\frameworks\projec ts\framework\src\mx\core\Container.as:3493]
        at mx.containers::ViewStack/instantiateSelectedChild()[C:\autobuild\3.2.0\frameworks\project s\framework\src\mx\containers\ViewStack.as:1140]
        at mx.containers::ViewStack/commitProperties()[C:\autobuild\3.2.0\frameworks\projects\framew ork\src\mx\containers\ViewStack.as:664]
        at mx.core::UIComponent/validateProperties()[C:\autobuild\3.2.0\frameworks\projects\framewor k\src\mx\core\UIComponent.as:5807]
        at mx.managers::LayoutManager/validateProperties()[C:\autobuild\3.2.0\frameworks\projects\fr amework\src\mx\managers\LayoutManager.as:539]
        at mx.managers::LayoutManager/doPhasedInstantiation()[C:\autobuild\3.2.0\frameworks\projects \framework\src\mx\managers\LayoutManager.as:659]
        at Function/http://adobe.com/AS3/2006/builtin::apply()
        at mx.core::UIComponent/callLaterDispatcher2()[C:\autobuild\3.2.0\frameworks\projects\framew ork\src\mx\core\UIComponent.as:8628]
        at mx.core::UIComponent/callLaterDispatcher()[C:\autobuild\3.2.0\frameworks\projects\framewo rk\src\mx\core\UIComponent.as:8568]

    Since you are loading your swf over http, it will be placed in a remote sandbox and will not be able to access the local filesystem. You should load your png in the same way as your swf (ie. over http), or embed it into your application.

  • Cannot access web. Network diagnostics says my internet connection appears to be working correctly

    Am running Lion on MacBook. Suddenly cannot access web with Safari or Firefox. Email OK and Network diagnostics says my internet connection appears to be working correctly". No problems with my iMac on same network.

    What exactly happens when you try to load a web page?

  • No longer able to access Web Management after Firmware Update [SF200]

    Hello!
    Today I was attempting to set up SNMP on our SF200-48 switch. I realized we were running old firmware which does not support SNMP and that the most current version (1.4.0.88) does support it. I attempted to upgrade the firmware but it failed, so I decided to install the 1.1.2.0 firmware because I read that the firmware flash process has changed before 1.4
    Unfortunately, after rebooting I was no longer able to access web management on the switch. Unfortunately SF200 switches do not support CLI.
    The switch is functional and responds to ping, but I cannot get into management to do anything, is there any steps we can try or will I need to reset the switch? After resetting the switch, will I lose any configuration but still not be able to access management? We do not have any other switches to drop in place of this one, and I'd like to minimize downtime as much as possible.
    thanks,
    Graham Rounds

    Hi Graham,
    if you are sure that the ping response is coming from the switch then I guess the only thing you could try is the factory reset but you will loose all the configuration. You might call also Small Business Team and open a ticket so they will proceed with RMA if necessary: 
    http://www.cisco.com/c/en/us/support/web/tsd-cisco-small-business-support-center-contacts.html
    Regards,
    Aleksandra

  • "Site System Status Summarizer still cannot access storage object" after DB Move

    After our SCCM server was up and running, the DBAs moved the SQL Site Database to a new drive which is a supported SQL Operation according to this Support document:
    https://support.microsoft.com/en-us/kb/2709082
    Using the methods described by the above document we were able to restore functionality to SCCM but I am still seeing Informational messages in the SMS_SITE_SYSTEM_STATUS_SUMMARIZER component.
    Site System Status Summarizer still cannot access storage object "\\<SQLServer>\S$\SMS_<SQLServer>" on site system "\\<SQLServer>". The operating system reported error 67: The network name cannot be found.
    Possible cause: The site system is turned off, not connected to the network, or not functioning properly.
    Solution: Verify that the site system is turned on, connected to the network, and functioning properly.
    Possible cause: Site System Status Summarizer does not have sufficient access rights to connect to the site system and access the storage object.
    Solution: Verify that the accounts are properly configured to allow the site to connect to the site system and access the storage object.
    Possible cause: Network problems are preventing Site System Status Summarizer from connecting to the site system.
    Solution: Investigate and correct any problems on your network.
    Possible cause: You took the site system out of service and do not intend on using it as a site system any more.
    Solution: Remove the site system from the list of site systems used by this site; this list appears under Site Systems in the Configuration Manager Console.
    Possible cause: You accidentally deleted the storage object or took the storage object out of service.
    Solution: The components will eventually detect that the storage object no longer exists on the site system and will either recreate it or choose a new storage object. Monitor the status messages reported by other site components to verify that this
    occurs properly.
    The storage object has been inaccessible since "14/03/2015 1:23:20 AM". When you correct the problem and Site System Status Summarizer successfully accesses the storage object, Site System Status Summarizer will set the storage object's status
    to OK, providing that the storage object has sufficient free space.
    I have run a site reset to try and fix this but the site server still seems to be trying to access files on the old drive. Is there a method to get SCCM to start looking for these files on the NEW DB drive (H$) in my case?

    Was a site reset performed at all yet? This has to be done. 
    Torsten Meringer | http://www.mssccmfaq.de
    Yes, I tried a site reset prior to making this post. I was sure I had read that this should resolve the issue but unfortunately it seems a site reset did not resolve the issue.
    Since we are running a virtualized environment, is it possible the old drive has to still exist prior to running the site reset? If we add a small "S" drive back to the server and run the site reset again, might that help?

  • Cannot access web site hosted on Azure VM

    I have created Windows Server 2012R2 VM and after creating VM I have installed IIS and hosted my site and found it is working fine inside the VM.
    Then I have added HTTP end point to my VM from azure portal. After creating http end point I cannot access my web site using MyHostName.cloudapp.net.
    Can you help me why http end point is not working?
    Then I have crated VM with template and there I have defined HTTP endpoint before creating VM.
    Finally I found that if I create end point before creating VM then it works fine and if I create endpoint after creating VM then it doesn’t work.
    Can you kindly help me to solve this issue (so that end point works properly after creating VM)?
    Hasibul Haque,MCC2011,MCPD hasibulhaque.com

    Hi,
    You can check the port you bind for the website in IIS and make sure you have created endpoint with the correct port. You can also install Telnet client on your local computer and run "telnet xxx.cloudapp.net public_port_in_endpoint" at the command
    prompt to see it works.
    Have you enable SSL on the website hosted on Azure VM? If yes, please also create an endpoint with port 443 and open that port in Windows Firewall on the VM.
    Best regards,
    Susie
    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]

Maybe you are looking for