Custom UCM Error Page how to take referral URL

Hi all,
I am creating a custom error page and I was wondering is there a way to take
the url that throw the error.
Example:
While looking at http://my_site.com/sectionA/
you follow link leading to http://my_site.com/sectionB/
Unfortunately http://my_site.com/sectionB/ does not exist
and you are redirected to my error page http://my_site.com/errorPage/
Is there a way when I am on http://my_site.com/errorPage/ to know that
it was that throw the error http://my_site.com/sectionB/
thanks in advance,
eng. Ilian Iliev

Is this site studio?
Go to the url that was bad, get redirected to your custom error section, then in the url add ?IsJava=1 and press enter. This returns the data that is behind the page.
One of the variables I see is named originalSiteRelativeUrl and it appears to contain information you're looking for.
Give that a try and let us know!

Similar Messages

  • How do I create custom HTTP Error Pages for a Weblogic Server

    I need to be able to display custom HTTP error pages such as a 404 from my Weblogic
    Server when my web application is not deployed.
    Is this possible?
    I have seen some suggestions about putting something like:
    <error-page>
    <error-code>404</error-code>
    <location>Error404.jsp</location>
    </error-page>
    in the web.xml for my web application but I can't see how that would work since
    the web application would not be deployed. I need to set these messages at the
    server level.
    Any help would be appreciated!
    thanks

    Your CategoryAxis id="ha_ccm" uses categoryField="period", and this is the label for the your series (i.e. "Quarter 4/2010"). You cannot have multiple categoryFields for the CategoryAxis; it can only use one data field for the labels. You can use data tips and/or label functions to show the individual series' values on the columns.
    Also:
    Your labelField in the ColumnSeries are set to a ColumnSet name instead of a field name in your dataprovider.
    Font must be embedded if you set ColumnChart.showLabelVertically="true".

  • How can I set up a custom 404 error page on OSX Server?

    I moved my web site to a local server and changed the structure drastically.  Unfortunately I am getting hits for information that was on the old server which I haven't put back yet.  I'd like to set up a custom 404 Error Page to let people know what's up.  In server.app I can set up a 500 error page but not a 404 and when I tried hand coding it into the sites .conf file I really messed things up.  It took me a while to get that all corrected!
    Thanks for any advice,
    Bill W

    Found it!
    Under the web server Advanced Setting set "Allow overrides using .htaccess" then create an .htaccess file in the root directory with the line:
    ErrorDocument 404 notfounderror.html
    Use whatever HTML/PHP/etc. document you have created.

  • Custom 404 Error page in Sharepoint Foundation 2013

    Hi all,
    How to point to the custom 404 error page in Share Point Foundation 2013. I have seen some links but not working for me. Please me let me know if you have any suggestion.
    Thanks.

    Can i create any page and pass the page url in it,like if i have created a page as custom404.aspx under pages library so do i need to do like this?
    $spsite = Get-SPSite "<http://sharepoint:1000/>"
    $spsite.FileNotFoundUrl = "<pages/custom404.aspx>"
    is this the correct way or i am doing incorrectly??
    please suggest

  • Custom 404 error page only works 75% of the time

    I have made custom HTTP error pages for my app and they work for Mozilla, Opera and Firefox but IE seems to have its own personal 404 error page.
    Anyone know how to make IE work and play well with others and display the custom 404 page like the other 3 browsers do? I did clear the IE cache, twice.
    The environment is Tomcat 5.0.19 (stand-alone, no IIS) running on Window Server 2003 Enterprise
    Thanks for your help!
    Will

    You got to love microsoft products huh. Microsoft has turned on its friendly error pages. Unfortunately, to fix this, you have to have your clients modified their browser settings. Inside the IE browser, do the following:
    1. From menu choose tools->internet options
    2. Choose the advanced tab
    3. Uncheck the checkbox that says "Show friendly HTTP error messages"
    That will do it for ya.

  • Custom HTTP error page

    How do I create custom HTTP error pages for WebLogic Server 6.1
              

    Refer to the following document:
              http://e-docs.bea.com/wls/docs61/webapp/components.html#101747
              Eric
              "Sejal" <[email protected]> wrote in message
              news:3bc1e18f$[email protected]..
              > How do I create custom HTTP error pages for WebLogic Server 6.1
              

  • Customizing portal error pages using WPC seems not to work

    Hi,
    I am running a EP 7.01 system and have instaled the KMC-WPC component.
    My goal is to edit custom error pages. I have followed the help.sap.com
    guide, however i don't see any results. When i create a KM-document
    iview to a non-existing document, i stll get the default 404 error
    page. I have restarted the portal, but without effect. Am i missing something or is the error-page editor not meant for this kind of use? I have also tried to edit the web.xml file, but these errorpages are on a very global scale and not usefull for my purpose
    Bas

    Hussain,
    Yes, it is a KM document not found page
    regards,
    Bas

  • Handle exception on server side and display a customized jsp error page

    Hi,
    I am developing a java/j2EE web application using servlet, jsp, ejb3 with JBOSS and ECLIPSE.
    Two cases can occur on the server side :
    1) either I have not an expected result in a method and in this case I want to display an error page (a JSP page I suppose) with a personnalized error message
    2) or I have an exception thrown and I want to display the exception message in the former JSP page
    I don't know how to cope with this problem of personnalized error message (or the message of a thrown exception) with a JSP page.
    Does anybody can help me ? Thank you
    Edited by: xflamant on Jun 20, 2009 10:51 AM

    For the case of an unknown Error, simply use a default error page.
    The redirection to this page can be accomplished by inserting folowing code into your web.xml:
         <error-page>
            <exception-type>java.lang.Throwable</exception-type>
            <location>/WEB-INF/jsp/error.jsp</location>       
        </error-page>Known exception can be caught via a try-catch block.
    Then simply dispatch to the page you want displayed an add an attribute containing the error message to the response object.
    This attribute can then be used in the target page to diplay the error.

  • Unable to show custom jsf error page !

    Hi all,
    I have a major problem displaying my custom errorpages. That is, they do not show at all!
    I also tried this in a simple project where I have only 1 jsf page, but the behaviour is the same.
    However, If I use a plain jsp page as erropage, then the error page is displayed as expected.
    My web.xml:
    <error-page>
    <error-code>404</error-code>
    <location>/jspErrorPage.jsp</location>
    </error-page>
    <!--error-page>
    <error-code>404</error-code>
    <location>/errorPage.jspx</location>
    </error-page-->
    If I remove all jsf and adf components from the adf-faces error page it does work correctly.
    For some reason the adf and jsf components can not be used in an error page.
    If I try this in the FOD demo application the behaviour is exactly the same !
    No errorpage is shown unless I remove all jsf and adf components.
    Luc
    Edited by: lucbors on Mar 6, 2009 11:28 AM

    hi Johan
    It looks like the filter-mapping/dispatcher element in web.xml is relevant here.
    Default the "adfFaces" filter seems to be mapped like this ...
    <filter-mapping>
      <filter-name>adfFaces</filter-name>
      <servlet-name>Faces Servlet</servlet-name>
      <dispatcher>FORWARD</dispatcher>
      <dispatcher>REQUEST</dispatcher>
    </filter-mapping>If I also add a dispatcher element with ERROR value like ...
      <dispatcher>ERROR</dispatcher>... the behaviour of my application starts to change.
    With such a dispatcher element configured, I can get an error-page configuration like this to "work":
         <error-page>
              <error-code>500</error-code>
              <location>/faces/internalServerErrorFaces.jspx</location>
         </error-page>Using JDeveloper 10.1.3.4.0 I created an example application for this,
    see http://verveja.footsteps.be/~verveja/files/oracle/FacesErrorPageApp-v0.01.zip
    The screenshots in FacesErrorPageApp.png show the page with the buttons that cause exceptions and the error page I get.
    The thing is, this seems to work only te first time (for the first session). So, navigating back and clicking another button only shows the same page again and not the error page.
    If I try something similar in a web-module that does not use ADF Faces, things seem to be OK.
    (The example application has a ViewControllerNoADFFaces project with an errorButtonPageNoADFFaces.jspx page with buttons that will cause an exception and show the internalServerErrorNoADFFaces.jspx page. From that error page I can navigate back an click a different button to cause a different exception to end up on the error page again.)
    Given that this at least looks like an ADF Faces issue, I think a reply from someone from Oracle in this forum thread could be useful. (And you could always create a service request on metalink.oracle.com for this.)
    regards
    Jan Vervecken

  • Customizing Portal Error Page?

    Is there a way to customize the look and feel of Portal Error Pages?

    I found the section of Portal Configuration document 4.3.7 that shows how to set a global Error Message Page. However, it utilizes the / Administration Portlets / Portal / Error Message Portlet
    Is there a way to modify this portlet? I'm thinking it's a PLSQL portlet. Does anyone know where (what package/procedure/function) it resides in the PORTAL schema?

  • Display well formatted html error page; how to

    I'm using Django for my backend and mostly getting XML responses to my HttpService requests.  However when I get an error on the backend, The message in the fault event is relatively useless.  To debug I have to copy the request string from the alert window and post it in a separate browser window to see the error traceback.
    I'm using Django on the backend which gives a very nicely formatted error page but I cannot see that from Flex.  I would like to detect the error and open a new browser window/tab and display the "pretty" info.  Below is a snippet of what i'm doing now:
                public  function AssessmentActionServiceFaultHandler(event:FaultEvent):void {
                    Alert.show("FAULT "+event.message);
    and I see something like this:
    getUser failed (mx.messaging.messages::ErrorMessage)#0
      body = ""
      clientId = "DirectHTTPChannel0"
      correlationId = "4451F459-39AD-F687-87A6-FCBD2AD9BC11"
      destination = ""
      extendedData = (null)
      faultCode = "Server.Error.Request"
      faultDetail = "Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: http://localhost:37813/django/mds30/app/getuser/?hostport=localhost:7777&https=N&id=4451F4 59-39AD-F687-87A6-FCBD2AD9BC11"]. URL: http://localhost:7777/django/mds30/app/getuser/"
      faultString = "HTTP request error"
      headers = (Object)#1
        DSStatusCode = 0
      messageId = "F6075BBF-2CAE-0FCC-BDB7-FCBD32C34E2B"
      rootCause = (flash.events::IOErrorEvent)#2
        bubbles = false
        cancelable = false
        currentTarget = (flash.net::URLLoader)#3
          bytesLoaded = 0
          bytesTotal = 0
          data = ""
          dataFormat = "text"
        eventPhase = 2
        target = (flash.net::URLLoader)#3
        text = "Error #2032: Stream Error. URL: http://localhost:37813/django/mds30/app/getuser/?hostport=localhost:7777&https=N&id=4451F4 59-39AD-F687-87A6-FCBD2AD9BC11"
        type = "ioError"
      timestamp = 0
      timeToLive = 0
    ------------------while a normal web page displays something like this----------------------------------------------
    instance at /django/mds30/app/getuser/
    Deprecated String Exception: 'error demo'
    Request Method:
    GET
    Request URL:
    http://localhost:7777/django/mds30/app/getuser/
    Django Version:
    1.2.1
    Exception Type:
    instance
    Exception Value:
    Deprecated String Exception: 'error demo'
    Exception Location:
    C:\all\projects\AccMDS30Server\mds30\app\views.py in getuser,  line 87
    Python Executable:
    c:\alltools\python\python.exe
    Python Version:
    2.4.0
    Python Path:
    ['C:\\all\\projects\\AccMDS30Server\\mds30',  'c:\\alltools\\python\\lib\\site-packages\\mysql_python-1.2.2-py2.4-win32.egg',  'c:\\alltools\\python\\lib\\site-packages\\fdfgen-0.9.1-py2.4.egg',  'C:\\all\\projects\\AccMDS30Server',  'C:\\all\\projects\\AccMDS30Server\\mds30', 'c:\\alltools\\python',  'c:\\alltools\\python\\DLLs', 'c:\\alltools\\python\\lib',  'c:\\alltools\\python\\lib\\lib-tk',  'c:\\alltools\\python\\lib\\plat-win',  'c:\\alltools\\python\\lib\\site-packages',  'C:\\Windows\\system32\\python24.zip', 'C:\\alltools\\eclipse with  PyDev']
    Server time:
    Fri, 10 Sep 2010 13:44:06 -0400
    Traceback Switch to copy-and-paste view
    c:\alltools\python\Lib\site-packages\django\core\handlers\base.py in get_response
    # Apply view middleware
    for  middleware_method in self._view_middleware:
    response = middleware_method(request, callback, callback_args,  callback_kwargs)
    if response:
    return response
    try:
    response = callback(request, *callback_args, **callback_kwargs) ...
    except  Exception, e:
    # If the view raised an exception, run it through  exception
    # middleware, and if the exception middleware returns a
    #  response, use that. Otherwise, reraise the exception.
    for  middleware_method in self._exception_middleware:
    response = middleware_method(request, e)
    ▶ Local vars
    Variable Value
    callback
    <function getuser at  0x033C69F0>
    callback_args
    callback_kwargs
    exc_info
    ('error demo', None,  <traceback object at 0x033C0918>)
    exceptions
    <module  'django.core.exceptions' from  'c:\alltools\python\lib\site-packages\django\core\exceptions.pyc'>
    middleware_method
    <bound method  MessageMiddleware.process_request of  <django.contrib.messages.middleware.MessageMiddleware object at  0x031ED210>>
    receivers
    [(<function  _rollback_on_exception at 0x028EFB70>, None)]
    request
    <WSGIRequest GET:<QueryDict: {}>, POST:<QueryDict: {}>, COOKIES:{'sessionid': '352717811d57a59ad433e3d1e5f4f1d6'}, META:{'ALLUSERSPROFILE': 'C:\\ProgramData',  'APPDATA': 'C:\\Users\\frsells.ADVENTISTCARE\\AppData\\Roaming',  'COMMONPROGRAMFILES': 'C:\\Program Files (x86)\\Common Files',  'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files',  'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files',  'COMPUTERNAME': 'NB-FRSELLS',  'COMSPEC': 'C:\\Windows\\system32\\cmd.exe',  'CONTENT_LENGTH': '',  'CONTENT_TYPE': 'text/plain',  'CVSROOT': ':pserver:[email protected]:/cvs',  'DJANGO_SETTINGS_MODULE': 'mds30.settings',  'FP_NO_HOST_CHECK': 'NO',  'GATEWAY_INTERFACE': 'CGI/1.1',  'HOMEDRIVE': 'C:',  'HOMEPATH': '\\Users\\frsells.ADVENTISTCARE',  'HTTP_ACCEPT':  'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',  'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',  'HTTP_ACCEPT_ENCODING': 'gzip,deflate',  'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5',  'HTTP_CACHE_CONTROL': 'max-age=0',  'HTTP_CONNECTION': 'keep-alive',  'HTTP_COOKIE': 'sessionid=352717811d57a59ad433e3d1e5f4f1d6',  'HTTP_HOST': 'localhost:7777',  'HTTP_KEEP_ALIVE': '115',  'HTTP_USER_AGENT': 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US;  rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6',  'JAVA_HOME': 'c:\\alltools\\jdk5',  'LOCALAPPDATA': 'C:\\Users\\frsells.ADVENTISTCARE\\AppData\\Local',  'LOGONSERVER': '\\\\ACCVDC03',  'NUMBER_OF_PROCESSORS': '4',  'OS': 'Windows_NT',  'PATH':  'c:/alltools/jdk5/bin/../jre/bin/client;c:/alltools/jdk5/bin/../jre/bin;C:\\Program  Files  (x86)\\NetworkSimplicity\\ssh;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wb em;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program  Files\\Intel\\DMIX;C:\\Program Files (x86)\\NTRU Cryptosystems\\NTRU  TCG Software Stack\\bin\\;C:\\Program Files\\NTRU Cryptosystems\\NTRU  TCG Software Stack\\bin\\;C:\\Program Files\\Wave Systems  Corp\\Gemalto\\Access Client\\v5\\;C:\\Program Files (x86)\\Common  Files\\Roxio Shared\\DLLShared\\;C:\\Program Files (x86)\\Common  Files\\Roxio  Shared\\10.0\\DLLShared\\;c:\\alltools\\jdk5\\bin;c:\\alltools\\python;c:\\alltools\\pyth on\\scripts;c:\\alltools\\ant;c:\\alltools\\bin;C:\\Program  Files\\MySQL\\MySQL Server  5.0\\bin;C:\\all\\scripts;C:\\alltools\\ant\\bin',  'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC',  'PATH_INFO': u'/django/mds30/app/getuser/',  'PROCESSOR_ARCHITECTURE': 'x86',  'PROCESSOR_ARCHITEW6432': 'AMD64',  'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 23 Stepping 10,  GenuineIntel',  'PROCESSOR_LEVEL': '6',  'PROCESSOR_REVISION': '170a',  'PROGRAMDATA': 'C:\\ProgramData',  'PROGRAMFILES': 'C:\\Program Files (x86)',  'PROGRAMFILES(X86)': 'C:\\Program Files (x86)',  'PROGRAMW6432': 'C:\\Program Files',  'PROMPT': '$P$G',  'PSMODULEPATH':  'C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules\\',  'PUBLIC': 'C:\\Users\\Public',  'PYDEV_COMPLETER_PYTHONPATH': 'C:\\alltools\\eclipse with  PyDev\\plugins\\org.python.pydev_1.6.1.2010080312\\PySrc',  'PYDEV_CONSOLE_ENCODING': 'Cp1252',  'PYTHONIOENCODING': 'Cp1252',  'PYTHONPATH': 'C:\\alltools\\eclipse with  PyDev\\plugins\\org.python.pydev_1.6.1.2010080312\\PySrc\\pydev_sitecustomize;C:\\all\\pr ojects\\AccMDS30Server;C:\\all\\projects\\AccMDS30Server\\mds30;c:\\alltools\\python;c:\\a lltools\\python\\DLLs;c:\\alltools\\python\\lib;c:\\alltools\\python\\lib\\lib-tk;c:\\allt ools\\python\\lib\\plat-win;c:\\alltools\\python\\lib\\site-packages',   'QUERY_STRING': '',  'REMOTE_ADDR': '127.0.0.1',  'REMOTE_HOST': '',  'REQUEST_METHOD': 'GET',  'ROXIOCENTRAL': 'C:\\Program Files (x86)\\Common Files\\Roxio  Shared\\10.0\\Roxio Central36\\',  'RUN_MAIN': 'true',  'SCRIPT_NAME': u'',  'SERVER_NAME': 'NB-FRSELLS.adventistcare.net',  'SERVER_PORT': '7777',  'SERVER_PROTOCOL': 'HTTP/1.1',  'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.4',  'SESSIONNAME': 'Console',  'SYSTEMDRIVE': 'C:',  'SYSTEMROOT': 'C:\\Windows',  'TEMP': 'C:\\Users\\FRSELL~1.ADV\\AppData\\Local\\Temp',  'TMP': 'C:\\Users\\FRSELL~1.ADV\\AppData\\Local\\Temp',  'USERDNSDOMAIN': 'ADVENTISTCARE.NET',  'USERDOMAIN': 'ADVENTISTCARE',  'USERNAME': 'frsells',  'USERPROFILE': 'C:\\Users\\frsells.ADVENTISTCARE',  'VS100COMNTOOLS': 'C:\\Program Files (x86)\\Microsoft Visual Studio  10.0\\Common7\\Tools\\',  'WINDIR': 'C:\\Windows',  'wsgi.errors': <open file '<stderr>', mode 'w' at  0x0037E0B0>,  'wsgi.file_wrapper': <class  'django.core.servers.basehttp.FileWrapper'>,  'wsgi.input': <socket._fileobject object at 0x02A8ECE0>,  'wsgi.multiprocess': False,  'wsgi.multithread': True,  'wsgi.run_once': False,  'wsgi.url_scheme': 'http',  'wsgi.version': (1, 0)}>
    resolver
    <RegexURLResolver  mds30.urls (None:None) ^/>
    response
    None
    self
    <django.core.handlers.wsgi.WSGIHandler  object at 0x028C7590>
    settings
    <django.conf.LazySettings  object at 0x024F6710>
    urlconf
    'mds30.urls'
    urlresolvers
    <module  'django.core.urlresolvers' from  'c:\alltools\python\lib\site-packages\django\core\urlresolvers.pyc'>
    C:\all\projects\AccMDS30Server\mds30\app\views.py in getuser
    temp += '<p>GET.META["REMOTE_ADDR"]=' +  str(request.META['REMOTE_ADDR'])
    #temp += '<p>GET.META["USERNAME"]=' +  str(request.META['USERNAME'])
    #temp += '<p>GET.META["SESSIONNAME"]=' +  str(request.META['SESSIONNAME'])
    temp += '<p>GET.META=' + str(request.META)
    return  HttpResponse("Hello, You are using the MDS 3.0 web service from %s" %  temp)
    def getuser(request,  *args, **kwargs):
    raise 'error demo' ...
    sessionid =  getACCSessionId(request)
    user = security.getUser(sessionid)
    if user==None:
    values =  {'Error':sessionid, 'user':str(user)}
    else:
    values =  user.__dict__.copy()
    ▶ Local vars
    Variable Value
    args
    kwargs
    request
    <WSGIRequest GET:<QueryDict: {}>, POST:<QueryDict: {}>, COOKIES:{'sessionid': '352717811d57a59ad433e3d1e5f4f1d6'}, META:{'ALLUSERSPROFILE': 'C:\\ProgramData',  'APPDATA': 'C:\\Users\\frsells.ADVENTISTCARE\\AppData\\Roaming',  'COMMONPROGRAMFILES': 'C:\\Program Files (x86)\\Common Files',  'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files',  'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files',  'COMPUTERNAME': 'NB-FRSELLS',  'COMSPEC': 'C:\\Windows\\system32\\cmd.exe',  'CONTENT_LENGTH': '',  'CONTENT_TYPE': 'text/plain',  'CVSROOT': ':pserver:[email protected]:/cvs',  'DJANGO_SETTINGS_MODULE': 'mds30.settings',  'FP_NO_HOST_CHECK': 'NO',  'GATEWAY_INTERFACE': 'CGI/1.1',  'HOMEDRIVE': 'C:',  'HOMEPATH': '\\Users\\frsells.ADVENTISTCARE',  'HTTP_ACCEPT':  'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',  'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',  'HTTP_ACCEPT_ENCODING': 'gzip,deflate',  'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5',  'HTTP_CACHE_CONTROL': 'max-age=0',  'HTTP_CONNECTION': 'keep-alive',  'HTTP_COOKIE': 'sessionid=352717811d57a59ad433e3d1e5f4f1d6',  'HTTP_HOST': 'localhost:7777',  'HTTP_KEEP_ALIVE': '115',  'HTTP_USER_AGENT': 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US;  rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6',  'JAVA_HOME': 'c:\\alltools\\jdk5',  'LOCALAPPDATA': 'C:\\Users\\frsells.ADVENTISTCARE\\AppData\\Local',  'LOGONSERVER': '\\\\ACCVDC03',  'NUMBER_OF_PROCESSORS': '4',  'OS': 'Windows_NT',  'PATH':  'c:/alltools/jdk5/bin/../jre/bin/client;c:/alltools/jdk5/bin/../jre/bin;C:\\Program  Files  (x86)\\NetworkSimplicity\\ssh;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wb em;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program  Files\\Intel\\DMIX;C:\\Program Files (x86)\\NTRU Cryptosystems\\NTRU  TCG Software Stack\\bin\\;C:\\Program Files\\NTRU Cryptosystems\\NTRU  TCG Software Stack\\bin\\;C:\\Program Files\\Wave Systems  Corp\\Gemalto\\Access Client\\v5\\;C:\\Program Files (x86)\\Common  Files\\Roxio Shared\\DLLShared\\;C:\\Program Files (x86)\\Common  Files\\Roxio  Shared\\10.0\\DLLShared\\;c:\\alltools\\jdk5\\bin;c:\\alltools\\python;c:\\alltools\\pyth on\\scripts;c:\\alltools\\ant;c:\\alltools\\bin;C:\\Program  Files\\MySQL\\MySQL Server  5.0\\bin;C:\\all\\scripts;C:\\alltools\\ant\\bin',  'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC',  'PATH_INFO': u'/django/mds30/app/getuser/',  'PROCESSOR_ARCHITECTURE': 'x86',  'PROCESSOR_ARCHITEW6432': 'AMD64',  'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 23 Stepping 10,  GenuineIntel',  'PROCESSOR_LEVEL': '6',  'PROCESSOR_REVISION': '170a',  'PROGRAMDATA': 'C:\\ProgramData',  'PROGRAMFILES': 'C:\\Program Files (x86)',  'PROGRAMFILES(X86)': 'C:\\Program Files (x86)',  'PROGRAMW6432': 'C:\\Program Files',  'PROMPT': '$P$G',  'PSMODULEPATH':  'C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules\\',  'PUBLIC': 'C:\\Users\\Public',  'PYDEV_COMPLETER_PYTHONPATH': 'C:\\alltools\\eclipse with  PyDev\\plugins\\org.python.pydev_1.6.1.2010080312\\PySrc',  'PYDEV_CONSOLE_ENCODING': 'Cp1252',  'PYTHONIOENCODING': 'Cp1252',  'PYTHONPATH': 'C:\\alltools\\eclipse with  PyDev\\plugins\\org.python.pydev_1.6.1.2010080312\\PySrc\\pydev_sitecustomize;C:\\all\\pr ojects\\AccMDS30Server;C:\\all\\projects\\AccMDS30Server\\mds30;c:\\alltools\\python;c:\\a lltools\\python\\DLLs;c:\\alltools\\python\\lib;c:\\alltools\\python\\lib\\lib-tk;c:\\allt ools\\python\\lib\\plat-win;c:\\alltools\\python\\lib\\site-packages',   'QUERY_STRING': '',  'REMOTE_ADDR': '127.0.0.1',  'REMOTE_HOST': '',  'REQUEST_METHOD': 'GET',  'ROXIOCENTRAL': 'C:\\Program Files (x86)\\Common Files\\Roxio  Shared\\10.0\\Roxio Central36\\',  'RUN_MAIN': 'true',  'SCRIPT_NAME': u'',  'SERVER_NAME': 'NB-FRSELLS.adventistcare.net',  'SERVER_PORT': '7777',  'SERVER_PROTOCOL': 'HTTP/1.1',  'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.4',  'SESSIONNAME': 'Console',  'SYSTEMDRIVE': 'C:',  'SYSTEMROOT': 'C:\\Windows',  'TEMP': 'C:\\Users\\FRSELL~1.ADV\\AppData\\Local\\Temp',  'TMP': 'C:\\Users\\FRSELL~1.ADV\\AppData\\Local\\Temp',  'USERDNSDOMAIN': 'ADVENTISTCARE.NET',  'USERDOMAIN': 'ADVENTISTCARE',  'USERNAME': 'frsells',  'USERPROFILE': 'C:\\Users\\frsells.ADVENTISTCARE',  'VS100COMNTOOLS': 'C:\\Program Files (x86)\\Microsoft Visual Studio  10.0\\Common7\\Tools\\',  'WINDIR': 'C:\\Windows',  'wsgi.errors': <open file '<stderr>', mode 'w' at  0x0037E0B0>,  'wsgi.file_wrapper': <class  'django.core.servers.basehttp.FileWrapper'>,  'wsgi.input': <socket._fileobject object at 0x02A8ECE0>,  'wsgi.multiprocess': False,  'wsgi.multithread': True,  'wsgi.run_once': False,  'wsgi.url_scheme': 'http',  'wsgi.version': (1, 0)}>
    Environment:  Request  Method: GET Request URL: http://localhost:7777/django/mds30/app/getuser/ Django Version: 1.2.1 Python Version: 2.4.0 Installed Applications: ['django.contrib.contenttypes',  'django.contrib.sessions',  'django.contrib.sites',  'django.contrib.messages',  'mds30.app'] Installed Middleware: ('django.middleware.common.CommonMiddleware',  'django.contrib.sessions.middleware.SessionMiddleware',  'django.contrib.messages.middleware.MessageMiddleware')   Traceback: File "c:\alltools\python\Lib\site-packages\django\core\handlers\base.py"  in get_response   100.                     response = callback(request, *callback_args,  **callback_kwargs) File "C:\all\projects\AccMDS30Server\mds30\app\views.py" in getuser   87.     raise 'error demo'  Exception Type: instance at /django/mds30/app/getuser/ Exception Value: Deprecated String Exception: 'error demo'  
    Request information
    GET
    No GET data
    POST
    No POST data
    FILES
    No FILES data
    COOKIES
    Variable Value
    sessionid
    '352717811d57a59ad433e3d1e5f4f1d6'
    META

    I came up with an ugly solution.  I save the last url and then resend it if a fault is detected.  probably not a good thing in production, but I'm still developing.  here's the code
        public  function AssessmentActionServiceFaultHandler(event:FaultEvent):void {
                    Globals.log("command FAILED "+event.message);   
                    Globals.hideBusyDialog();
                    //Alert.show("FAULT "+event.message);
                    navigateToURL(new URLRequest( LastURL), "_blank" );

  • How to create customized 404 error page in iplanet 6.1?

    Hi,
    i need to display custmozed 404 page when my applilcation server(weblogic 9.2) is not available or down.
    How i can do this in iplanet??
    Any idea would be helpful.. Thank you,
    ---Praveen Reddy J

    Error fn="send-error" reason="Not Found" path="$docroot/custom404.html
    This is what we have in obj.conf on sun one 6.1 if that helps ..
    Now that u have brought this .. has any body tried putting a .jsp instead of .html .. for me it just shows the code of jsp :(

  • CQ5 Multiple custom 404 error pages for multiple sites

    HI,
    I have multiple sites, and I would like to set up a different 404 page for each of my sites
    Someone already faced this problem? How I can accomplish this?
    Or there is a way to do via the dispatcher and create a static 404 error HTML page each time I publish a site?
    Thank You
    Adolfo

    Currently the most effective way to do what you're asking is to set up your 404.jsp to include the content of a site specific 404.
    There was a conversation about this here;
    http://dev.day.com/discussion-groups/content/lists/cq-google/2010-02/2010-02-11__day_commu nique_Sling_error_pages_zambak.html
    -jason

  • Package Apps Customer Tracking Modal Page how to pass parameter

    On package application "Customer Tracking", there is good example about Modal Page. Quite simple but it work quite nicely.
    The step to create this Modal Page:
    - Create new region, set display poinrt: After Header and use region template: Modal Region and set the Static ID (eg. ActivityModal)
    - Create the page item and put it on the above region (eyample: Name, Company etc.)
    - Create a button, set the action to "Redirect to URL" and enter the URL target to: javascript:openModal('ActivityModal');
    Now when you click on the button, the modal page will be display.
    My question:
    How can I pass a parameter to the modal page, example: I want to pass text 'Johnny' to the Name page item which is on the modal region.
    Any idea ?

    use the $s function right after.   I used this to pass first name to the field.
    javascript:openModal('addContact');$s('P110_CON_FIRST','#FIRST_NAME#');

  • [OAM] Want to use custom System Error page and OOTB logout page simultaneously

    Hi,
    I have developed a custom OAM System Error screen (Error.jsp). To do that, I took oamcustompages.war from the installation directory, create Error.jsp and deploy it on oam_server1 server. After that, I run the updateCustomPages(extension="jsp", context="/oamcustompages") on wlst. This works fine.
    But now, if I invoke xxxx/oam/server/logout I have the following:
    <html><head><title>302 Moved Temporarily</title></head>
    <body bgcolor="#FFFFFF">
    <p>This document you requested has moved temporarily.</p>
    <p>It's now at <a href="http://lablnx246:8888/URLWeb/oamcustompages/pages/Logout.jsp">http://lablnx246:8888/URLWeb/oamcustompages/pages/Logout.jsp</a>.</p>
    </body></html>
    So.. it appears that all pages ootb have been replaced by the custom war. Is there any way to only let Error.jsp active and other pages be called OOTB?
    Thanks!

    The updateCustomPages will change the default OOTB behaviour
    If you do not want this, you can leverage the Success URL/Failure URL configuration in the Authentication policy and point it to the custom error handler

Maybe you are looking for

  • IDVD PROJECT help needed - file size

    I have a new imac g5 and I used imovie to make a project. I uploaded my project in idvd 112 min and it says my project is 4.5gig??? and it won't let me burn this on a 4.7 gig single disks. It says I need a dual layer disk? Please help I don't know wh

  • Filevault doesn't work systemwide. Returns -25300

    Filevault Problem FileVault process interrupted. Doesn't work anymore systemwide. Returns in console in up-to-date OSX 10.4.8 loginwindow[5924]: SecFileVaultCreate returned -25300 Description I can't activate FileVault anymore from any account. I ran

  • IMac losing signal of the network

    Hi, I have a wireless conection as my only way to access the internet, the wireless router is near the iMac and the signal is really clear. Many times a day my Mac stops comunicating with the router and I need to close the internet using app and then

  • New to iPhoto but it doesn't work

    I opened iPhoto for the first time after finding out I could change the desktop that way ... Each time I try to open the thing it just sits there and says "Loading Photos" for a while ... I just created a new library and it shouldn't take that long.

  • Change exit url logging off portal

    Hello everyone, I wonder if it is possible to change the standard log-in portal screen that apeears after logging off the portal (and confirm it in the dialog that pop-ups). Any idea about this??? Thank you so much.