Changing request url

Hi,
I have a requirement in which i need to change the request url and send it. For example i need to change all "/xxx/yyy/zzzz/..." urls as "/xxx/zzzz/..." ("/yyy" removed
from request url)and send it. How can i do it without response.redirect in servlet ???
Is there any way to achieve this through struts 1?
Thanks in advance.

user10996478 wrote:
Hi ram,
Actually i'm trying to direct old request patterns to the new pattern which is inside the same application. For example earlier i had a page for
"/xxx/yyy/zzz.do?data=aaaaaaaaaa". Now thats been moved to "/xxx/zzz.do?data=aaaaaaaaaa". Likewise i need to change all old url patterns to new pattern which has
pages to load. Hope its clear now.
Thanks.What do you mean by 'moved'?
Are the incoming urls changed from "/xxx/yyy/zzz.do?data=aaaaaaaaaa" to "/xxx/zzz.do?data=aaaaaaaaaa". In other words does your web application receive requests for the modified urls?
If yes, then all you have to is to modify your Servlet (and Action mappings if you use struts) to point to the new urls.
For example in struts-config.xml
<action path="/xxx/yyy/zzz"> should now be
<action path="/xxx/zzz">It's a manual task and there are no short cuts :)
cheers,
ram.

Similar Messages

  • I purchased and downloaded a movie and when I it backed up to my computer it changed something and now when I try to watch the movie I get an error message that says "The request URL was not found on this server.? What do I need to do to correct it?

    I purchased a movie and downloaded it and when I conected my I Pod to my computer, now I get a message "The requested URL was not found on this server".   What do I do to fix it?

    Because the location for each song in your library is on your hard drive.  If the hard drive isn't there, how can iTunes play it?
    You'll have to move/copy the music from your hard drive to your computer's hard drive.
    Basically, EASIEST way to do all this, if you don't care about your play counts, etc...
    -Delete EVERYTHING from iTunes, so that your library is now empty.
    -Go to "Advanced" inside of the "Preferences" window, found in the "Edit" drop-down.  You can also access Preferences by pressing Ctrl+, (Press Ctrl and the comma key)
    -Change your iTunes Media Folder Location to something simple, but on your computer. I use C:/iTunes.  Make sure "Keep iTunes Media Folder Organized" and "Copy files to...." are both checked.  You can close Preferences now.
    -Now, drag and drop your music from your hard drive into your iTunes library.  iTunes will automatically add the music to your library, as you would expect, and also creates a copy of each file to place into that iTunes Media Folder you just created.
    Shouldn't have any more problems...

  • How do I use Sun Web Server 7.0u1 reverse proxy to change public URLs?

    Some of our installations use the Sun Web Server 7.0 (update 1, usually)
    for hosting some of the public resource and reverse-proxying other parts
    of the URI namespace from other backend servers (content, application
    and other types of servers).
    So far every type of backend server served a unique part of the namespace
    and there was no collision of names, and the backend resources were
    published in a one-to-one manner. That is, a backend resource like, say,
    http://appserver:8080/content/page.html would be published in the internet
    as http://www.publicsite.com/content/page.html
    I was recently asked to research whether we can rename some parts of
    the public URI namespace, to publish some or all resources as, say,
    http://www.publicsite.com/data/page.html while using the same backend
    resources.
    Another quest, possibly related in solution, was to make a tidy url for the
    first page the user opens of the site. That is, in the current solution when
    a visitor types the url "www.publicsite.com" in his or her browser, our web
    server returns an HTTP-302 redirect to the actual first page URL, so the
    browser sends a second request (and changes the URL in its location bar).
    One customer said that it is not "tidy". They don't want the URL to change
    right upon first rendering the page. They want the root page to be rendered
    instantly i the first HTTP request.
    So far I found that I can't solve these problems. I believe these problems
    share a solution because it relies on ability to control the actual URI strings
    requested by Sun Web Server from backend servers.
    Some details follow, now:
    It seems that the reverse proxy (Service fn="service-passthrough") takes
    only the $uri value which was originally requested by the browser. I didn't
    yet manage to override this value while processing a request, not even if
    I "restart" a request. Turning the error log up to "finest" I see that even
    when making the "service-passthrough" operation, the Sun Web Server
    still remembers that the request was for "/test" (in my test case below);
    it does indeed ask the backend server for an URI "/test" and that fails.
    [04/Mar/2009:21:45:34] finest (25095) www.publicsite.com: for host xx.xx.xx.83
    trying to GET /content/MainPage.html while trying to GET /test, func_exec reports:
    fn="service-passthrough" rewrite-host="true" rewrite-location="true"
    servers="http://10.16.2.127:8080" Directive="Service" DaemonPool="2b1348"
    returned 0 (REQ_PROCEED)My obj.conf file currently has simple clauses like this:
    # this causes /content/* to be taken from another (backend) server
    NameTrans fn="assign-name" from="/content" name="content-test" nostat="/content"
    # this causes requests to site root to be HTTP-redirected to a certain page URI
    <If $uri =~ '^/$'>
        NameTrans fn="redirect"
            url="http://www.publicsite.com/content/MainPage.html"
    </If>
    <Object name="content-test">
    ### This maps http://public/content/* to http://10.16.2.127:8080/content/*
    ### Somehow the desired solution should instead map http://public/data/* to http://10.16.2.127:8080/content/*
        Service fn="service-passthrough" rewrite-host="true" rewrite-location="true" servers="http://10.16.2.127:8080"
        Service fn="set-variable" set-srvhdrs="host=www.publicsite.com:80"
    </Object>
    I have also tried "restart"ing the request like this:
        NameTrans fn="restart" uri="/data"or desperately trying to set the new request uri like this:
        Service fn="set-variable"  uri="/magnoliaPublic/Main.html"Thanks for any ideas (including a statement whether this can be done at all
    in some version of Sun Web Server 7.0 or its opensourced siblings) ;)
    //Jim

    Some of our installations use the Sun Web Server 7.0 (update 1, usually)please plan on installing the latest service pack - 7.0 Update 4. these updates addresses potentially critical bug fixes.
    I was recently asked to research whether we can rename some parts of
    the public URI namespace, to publish some or all resources as, say,
    http://www.publicsite.com/data/page.html while using the same backend
    resources.> now, if all the resources are under say /data, then how will you know which pages need to be sent to which back end resources. i guess, you probably meant to check for /data/page.html should go to <back-end>/content/page.html
    yes, you could do something like
    - edit your corresponding obj.conf (<hostname>-obj.conf or obj.conf depending on your configuration)
    <Object name=¨default¨>
    <If $uri = ¨/page/¨>
    #move this nametrans SAF (for map directive - which is for reverse proxy within <if> clause)
    NameTrans.. fn=map
    </If
    </Object>
    and you could do https-<hostname>/bin/reconfig (dynamic reconfiguration) to check out if this is what you wanted. also, you might want to move config/server.xml <log-level> to finest and do your configuration . this way, you would get enough information on what is going on within your server logs.
    finally,when you are satisfied, you might have to run the following command to make your manual change into admin config repository.
    <install-root>/bin/wadm pull-config user=admin config=<hostname> <hostname>
    <install-root>/bin/wadm deploy-config --user=admin <hostname>
    you might want to check out this for more info on how you could use <if> else condition to handle your requirement.
    http://docs.sun.com/app/docs/doc/820-6599/gdaer?a=view
    finally, you might want to refer to this doc - which explains on ws7 request processing overview. this should provide you with some pointers as to what these different directives mean
    http://docs.sun.com/app/docs/doc/820-6599/gbysz?a=view
    >
    One customer said that it is not "tidy". They don't want the URL to change
    right upon first rendering the page. They want the root page to be rendered
    instantly i the first HTTP request.
    please check out the rewrite / restart SAF. this should help you.
    http://docs.sun.com/app/docs/doc/820-6599/gdada?a=view
    pl. understand that - like with more web servers - ordering of directives is very important within obj.conf. so, you might want to make sure that you verify the obj.conf directive ordering is what you want it to do..
    It seems that the reverse proxy (Service fn="service-passthrough") takes
    only the $uri value which was originally requested by the browser. I didn't
    yet manage to override this value while processing a request, not even if
    I "restart" a request. Turning the error log up to "finest" I see that even
    when making the "service-passthrough" operation, the Sun Web Server
    still remembers that the request was for "/test" (in my test case below);
    it does indeed ask the backend server for an URI "/test" and that fails.
    now, you are in the totally wrong direction. web server 7 includes a highly integrated reverse proxy solution compared to 6.1. unlike 6.1, you don´t have to download a separate plugin . however, you will need to manually migrate your 6.1 based reverse proxy settings into 7.0. please check out this blog link on how to set up a reverse proxy
    http://blogs.sun.com/amit/entry/setting_up_a_reverse_proxy
    feel free to post to us if you need any futher help
    you are probably better off - starting fresh
    - install ws7u4
    - use gui or CLI to create a reverse proxy and map one on one - say content
    http://docs.sun.com/app/docs/doc/820-6601/create-reverse-proxy-1?a=view
    if you don´t plan on using ws7 integrated web container (ability to process jsp/servlet), then you could disable java support as well. this should reduce your server memory footprint
    <install-root>/bin/wadm disable-java user=admin config=<hostname>
    <install-root>/bin/wadm create-reverse-proxy user=admin uri-prefix=/content server=<http://your back end server/ config=<hostname> --vs=<hostname>
    <install-root>/bin/wadm deploy-config --user=admin <hostname>
    now, you can check out the regular express processing and <if> syntax from our docs and try it out within <https-<hostname>/config/<hostname>-obj.conf> file and restart the server. pl. note that once you disable java, ws7 admin server creates <vs>-obj.conf and you need to edit this file and not default obj.conf for your changes to be read by server.
    >
    I have also tried "restart"ing the request like this:
    NameTrans fn="restart" uri="/data"
    ordering is very important here... you need to do this some thing like
    <Object name=default>
    <If not $restarted>
    NameTrans fn=restart uri from=/¨ uri=/foo.
    </If>

  • The requested URL /Site/Home.html was not found on this server - HELP!

    NOT FOUND: The requested URL /Site/Home.html was not found on this server.
    This comes up when I type in my website address. I am new to this, have created my website on iweb, bought the domain name and purchased web hosting with 123-REG. I ask for their help but have only received the same rote info and nothing that has solved my problem.
    I am using Cyberduck as my FTP client but tried Classic FTP for macs before this and although it says that I am connected, it is saying that it can not change to the directory hosting10.123-reg.co.uk and asks if I have permission to be using it? I am not sure what to do?
    Please could someone advise me?
    Thanks!

    Welcome to the Apple Discussions. Since you're not using MobileMe these pages might be of some help to you:
    http://homepage.mac.com/thgewecke/iwebserver.html
    http://iwebfaq.org/site/iWebFolderFTP.html
    http://docs.info.apple.com/article.html?path=iWeb/2.0/en/6838.html
    OT

  • Using a hyperlink in an email to reference a particular Change Request

    Didn't know if this is possible or not. I am setting up a Change Notification email for Urgent changes so an email goes out to a group of managers that are listed as Approvers. Trying to capture specific information about the Change itself and put it in
    an email template is challenging to say the least.
    Is there a way to just put a URL that points to the Change Request in the email so when the manager gets it, they just click on the link that will bring them to the actually Change Request in Service Manager? From there, they can view all the details and
    even approved it from there. Would be great and save a lot of work....for me....

       It is possible and we did the similar thing and uploaded the solution for the help of all. 
    https://gallery.technet.microsoft.com/Exchange-Connector-8659edef#content
       You will need to put in details in the email but the approving part can be taken care of.
       You can further customize the solution based on your needs. 
       Please do rate the solution there if you find it helpful.
    Shahid Roofi
    While that is a nice feature you developed there, it is not even close to what the OP is asking for.
    Cheers,
    Anders Spælling
    Senior Consultant
    Blog:  
    Twitter:   LinkedIn:
    Please remember to 'Propose as answer' if you find a reply helpful

  • After 4.2.1 upgrade get:  requested URL /pls/apex/wwv_flow.accept not found

    Hi,
    Our hosted site just upgraded to 4.2.1 and I am getting:
    The requested URL /pls/apex/wwv_flow.accept was not found on this server.
    After trying to make a change on a master/detail form. I thought Apex 4.2 increased the # of fields on a master detail form so was surprised to see this error. Even when I reduce the number of columns showing on the detail part of the form which can have many rows as well, I am still getting the above error.
    Has there been any change in 4.2 that would change the behavior of a straightforward save of a multi row master detail form?
    In the past with Apex 4.0 I had to limit the columns being shown, but now I am reducing the # of columns even further and still get the error.
    UPDATE: I just removed from the report region definition several columns (which were deselected from the Report Attributes so not actually showing in the master-detail form) and now I am at least able to add rows and save changes. Again I am totally surprised that this behavior is happening when I thought 4.2 allowed for MORE page items!!
    I still cannot Delete rows from the detail section -- I get the odd message of :
    ORA-02292: integrity constraint (ENTERPRISE_SYSTEMS.RESOURCE_REQUEST_CON) violated - child record found
    But these rows have no child record!! They ARE the child records of the Master form. I had seen this behavior again related to the number of items showing on a page. Seems to me to be a bug in Apex that I had hoped would be removed with the 4.2 upgrade.
    Am I missing something!!
    PM
    Edited by: patfmnd on Dec 28, 2012 10:39 AM

    For the first problem, I'd check the alert log first, location:
    select * from v$parameter where name like '%user_dump_dest%';

  • APEX 3.1.2 install with sso, error "requested url ../plsapex/f.. not found"

    Question: why is sso rewriting the url from .../pls/apex/f?p=.. to .../plsapex/f?p=?
    Can anyone help?
    Thanks.
    Abstract: APEX 3.1.2.00.02 install with sso config, error "requested url ../plsapex/f .. was not found"
    Situation:
    Upgraded from Apex 3.0.0.00.20 to Apex Application Express 3.1.2.00.02
    I get to my apex_admin and apex builder pages with url: [http://machinename:port/pls/apex] or
    [http://machinename:port/pls/apex_admin]
    When I try to access our application using no authentication scheme everything is fine.
    But when I switch to sso authentication, somehow strangely the url [http://machinename:port/pls/apex/f?p=application_number]
    is rewritten to sso [http://machinename:port/plsapex/f?p=application_number].
    [https://test.insitehome.org/pls/apex/f?p=119]
    reappears in browser as
    [https://test.insitehome.org/plsapex/f?p=119:1:2095395898953485]
    entries of select * from flows_030100.WWSEC_ENABLER_CONFIG_INFO$
    "LSNR_TOKEN" "SITE_TOKEN" "SITE_ID" "LS_LOGIN_URL" "URLCOOKIE_VERSION" "ENCRYPTION_KEY" "ENCRYPTION_MASK_PRE" "ENCRYPTION_MASK_POST" "URL_COOKIE_IP_CHECK"
    "HTML_DB:test.insitehome.org:443" "LS$XXXXXXXXXXXXXXXX" "6XXXXXXX" "https://testsso.insitehome.org/pls/orasso/orasso.wwsso_app_admin.ls_login" "v1.2" "0AXXXXXXXXXXXXX" "6FXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" "C2XXXXXXXXXXXXXXXXXXXXXXXXXXXXX" "N"
    entries of select * from flows_030100.WWSEC_SSO_LOG$ showing ../plsapex/.. rewrite,
    after trace turned on with SQL&gt; @secdbg.sql;
    ID MSG LOG_DATE
    1259 entry: urlencode 15-DEC-08
    1260 encoded URL is https%3A%2F%2Ftest.insitehome.org%3A443%2Fplsapex%2Ff%3Fp%3D119%3A1%3A1562268139343648 15-DEC-08
    1261 exit: urlencode 15-DEC-08
    1262 entry: urlencode 15-DEC-08
    1263 encoded URL is https%3A%2F%2Ftest.insitehome.org%3A443%2Fplsapex%2Ff%3Fp%3D119%3A1%3A1562268139343648 15-DEC-08
    1264 exit: urlencode 15-DEC-08
    copy of last entries Apache log file
    [Mon Dec 15 13:30:33 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 120704279613,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/plsapex/f
    [Mon Dec 15 13:32:18 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 124999354851,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/favicon.ico
    [Mon Dec 15 13:32:18 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 120704387543,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/plsapex/f
    [Mon Dec 15 13:32:21 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 124999354854,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/favicon.ico
    [Mon Dec 15 13:32:21 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 120704387663,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/favicon.ico
    [Mon Dec 15 13:32:25 2008|http://forums.oracle.com/forums/] error [http://client 172.17.241.64|http://client%20172.17.241.64/] ecid: 1229365945:172.17.241.64:23211:0:817,0 \nOSSO E09: No Oracle SSO support for POSTing data to protected resource yet.\n
    [Mon Dec 15 13:35:09 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 107819660799,1|http://forums.oracle.com/forums/] mod_plsql: /pls/apex/wwv_flow_custom_auth_sso.process_success HTTP-404 \nwwv_flow_custom_auth_sso.process_success: MANY PROCEDURES MATCH NAME, BUT NONE MATCHES SIGNATURE (parameter names)\n
    [Mon Dec 15 13:37:25 2008|http://forums.oracle.com/forums/] error [http://client 172.17.241.64|http://client%20172.17.241.64/] ecid: 1229366245:172.17.241.64:19598:0:70,0 \nOSSO E09: No Oracle SSO support for POSTing data to protected resource yet.\n
    [Mon Dec 15 13:42:25 2008|http://forums.oracle.com/forums/] error [http://client 172.17.241.64|http://client%20172.17.241.64/] ecid: 1229366545:172.17.241.64:23157:0:832,0 \nOSSO E09: No Oracle SSO support for POSTing data to protected resource yet.\n

    1. I am able to get to the SSO page. I am redirected to the sso page first
    when unter the url [https://test.insitehome.org/pls/apex/f?p=119:1]
    I am able to enter the username and password.
    But once I click the login button I get the following message :
    " Not Found
    The requested URL /plsapex/f was not found on this server.
    Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server Server at test.insitehome.org Port 443"
    2. The mod_osso.conf file was not changed for our Apex upgrade. The contents of the osso.conf file though are not readable.
    I tried commenting out the
    #OssoConfigFile /u02/test_10gr2_hm2/Apache/Apache/conf/osso/osso.conf
    line in the mod_osso.conf file. url rewrite to ../plsapex/.. did not change.
    Thanks.
    Douglas
    1. The contents of OssoConfigFile /u02/test_10gr2_hm2/Apache/Apache/conf/osso/osso.conf
    ^E~H/&ocirc;M&aelig;~D&Ntilde;~I~PG^:~I| u^~T=&Egrave;i^V^O&Uuml;.&brvbar;&Acirc;^PhW^A&ordm;&Ugrave;&middot;G&raquo;?n&Oacute;^MsF~C&reg;&Ucirc;&para;&aring;&Igrave;4&Iacute;r^S)&plusmn;~Y&pound;&micro;&igrave;&oslash;&gt;oA~W~W~&Igrave;&Acirc;~W&sup2;E~^K^Yg~I#\^?^H~U^L&Uuml; &aelig;i&ograve;
    ~&Euml;&icirc;&Aacute;n^S~J@VI&sup3;^Y&ordf;&THORN;~S&Ograve;&uuml;c&iquest;&yuml;|&uuml;w&para;&iuml;.Gl^X^U~N31p^Q&copy;&raquo;$@~N&curren;&Aacute;_q0be&Aacute;:&Ocirc;&&Ugrave;&Ccedil;&Aacute;ts^[&Oacute;&Ocirc;sJ&Igrave;&Ouml;~W&pound;F^W~W^^&egrave;3A&micro;^[&iexcl;&gt;u^D|f^B~S&egrave;D&Auml;&brvbar;&iacute;&thorn;l&yacute;&Auml;^K&Otilde;&aelig;&iacute;Uu^Gxg~--D^--^Gu&Ntilde;-^PA&Ccedil;4^H^@Px&laquo;&Oacute;^--`Gf^PuJx&uuml;tz&thorn;&lt;&cedil;&iexcl;~J&Ucirc;&macr;&yacute;a~^G~G^U^WSk&divide;u$&szlig;&acirc;&acute;&agrave;s~@8^Y&uml;,--^R&Euml;2&ucirc;&ccedil;&Aacute;&euml;&Igrave;&oacute;@&brvbar;&frac12;&shy;Jg&pound;&Oslash;r^RCs&lt;~@~R&Ugrave;&middot;&szlig;&oacute;&yuml;&THORN;N@&oslash;0&pound;~G&otilde;r^S~N^R&plusmn;&frac12;^_~W~\f&Ocirc;|&oacute;&Agrave;^W~F~T^XO~PHv&uacute;|^F(&middot;%"4&Yacute;l&acirc;~J&cedil;~H^N0#d&Agrave;&cedil;O^H^@~S^FZN2&igrave;z&aring;&auml;N^Xn[T~\(&yen;&ocirc;y"z~XY&para;2~TTg^Y&yacute;&atilde;&aelig;~V&cedil;&yuml;^VUs^B~H&euml;^S^Z3~A&gt;nzr~[^Sl&Agrave;;~D~H&atilde;&frac12;Z&ouml;~U^C
    2. Browser headers- using "Live HTTP headers"
    showing the change in the browser url from .../pls/apex/.. to /plsapex/..
    [https://testsso.insitehome.org/pls/orasso/orasso.wwsso_home.process_signon?urlc=v1.2~08090C4ABBC838658AA3832B0404A1AD53FA9354A053CD7A3DE65D3F31E756E01249AA25E5D85CFD37C9046C60C1340DF5FCAB898569B6791252608F196074FCD7309A9DC4C6B3D9B88E9255DDCD10E3820D6BEB11294A7A4CF9AE309DB67FEC05A56D5B7C7EC239E3F9D5E27E1F199C7338C333B11E9A672CF9B6DFFC193ABA7CFBD22BAE8726E566690E47127365BCC0E5D7A7A24769A1727E287E06CC7FF4BD9D3680141B849561EADCB0478EC2F48D741652100F6EB08395B3253439783EC02DC9ECF8C0B41B112A4059B88B5C3F7854D687A25CDC423A567466E7D48F06BEDD238B645FE5CE58427DD9A9E692A0C88E4891CD900F9DEE362CDDF84A8A62E4093C95628878785C9C8DD54DC21A297BEC39C7EA28A2AEDE81EA475248E15F1327636295C484FA1246FC5B921D675CD17E9CA00F1138A89E8A82292963EAACFB369C19C75610779033377F7EF340278EBFF6E213D64AD9531E7E24AACDC78EE5F35A149CC3754B]
    GET /pls/orasso/orasso.wwsso_home.process_signon?urlc=v1.2~08090C4ABBC838658AA3832B0404A1AD53FA9354A053CD7A3DE65D3F31E756E01249AA25E5D85CFD37C9046C60C1340DF5FCAB898569B6791252608F196074FCD7309A9DC4C6B3D9B88E9255DDCD10E3820D6BEB11294A7A4CF9AE309DB67FEC05A56D5B7C7EC239E3F9D5E27E1F199C7338C333B11E9A672CF9B6DFFC193ABA7CFBD22BAE8726E566690E47127365BCC0E5D7A7A24769A1727E287E06CC7FF4BD9D3680141B849561EADCB0478EC2F48D741652100F6EB08395B3253439783EC02DC9ECF8C0B41B112A4059B88B5C3F7854D687A25CDC423A567466E7D48F06BEDD238B645FE5CE58427DD9A9E692A0C88E4891CD900F9DEE362CDDF84A8A62E4093C95628878785C9C8DD54DC21A297BEC39C7EA28A2AEDE81EA475248E15F1327636295C484FA1246FC5B921D675CD17E9CA00F1138A89E8A82292963EAACFB369C19C75610779033377F7EF340278EBFF6E213D64AD9531E7E24AACDC78EE5F35A149CC3754B HTTP/1.1
    Host: testsso.insitehome.org
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: [https://test.insitehome.org/pls/apex/f?p=119:1]
    Cookie: SSO_ID=v1.2~1~B2483914381A0220A727D12C9A8915E0A7D5AC3F5921B83727FF3A769585941BFC92F6ED489A5526E4BA399033EBB1F594C2E5A9651284A756F0266EDADF2788A5646DC849CC31B22EDFF550F9AE8FBAA45D77962089553D126DC23F7C7D2FF5A6DCD07733EC7AE97C49B047498D6007FAE70E0BB737DD71475C47565AC065B460717829838F23206D05E94531F1B214A089889F439700293486A9BA57C9CEBE1D9958AA22C8A11254DE2B99554BEC167ACAEED89A91289AE21D3392F1B4BB8E21F37C087A416488E063FD4E905ACE4532BF5C7AD4BCCC694F46325BFD4B6B61C0530FDFE7E17D5ECABB99B2734D813E8A969B328653110606BD37F85E3E383A2309D69B4792CBD2173695360006B17F; orasso=9.0.3+en-us+us+AMERICA+5E6829A8119E1C0EE04011AC15F572DA+416E61A4441EBFF32F938E43B1C666B24FCDEED0AE4178FB7D0666DF2F8B242E83E304641F7BB27D2447D4235172D9FDAF1AF383E817CC68D3FAC8771CA0D15526CC58AFCA0862435154ABDA250A026D369DCCC3EC1DA333
    HTTP/1.x 302 Found
    Date: Fri, 19 Dec 2008 14:31:46 GMT
    Server: Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    Location: [https://test.insitehome.org:443/plsapex/f?p=119:1:4439918187386025|https://test.insitehome.org/plsapex/f?p=119:1:4439918187386025]
    Set-Cookie: orasso=9.0.3+en-us+us+AMERICA+5E682B3E13BF540BE04011AC15F572DC+D7088454FEBAE9994BE0076646C00462FF614D0247361AC1D38957C467A4BD0B68508FA922065C7512D2DD7BC3BF02EE28F7281585308D54E0BCC5F3E3254F8DB6F3952C0C6D0F5B88B379B6686B1981F7DE4443A83FA03F;path=/;secure
    Keep-Alive: timeout=60, max=1000
    Connection: Keep-Alive
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=UTF-8
    Vary: Accept-Encoding
    [https://test.insitehome.org/plsapex/f?p=119:1:4439918187386025]
    GET /plsapex/f?p=119:1:4439918187386025 HTTP/1.1
    Host: test.insitehome.org:443
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: [https://test.insitehome.org/pls/apex/f?p=119:1]
    Cookie: ORACLE_SMP_CHRONOS_GL=26:1229695773:876325; ORACLE_SMP_CHRONOS_LT=1229697115969
    HTTP/1.x 404 Not Found
    Content-Type: text/html; charset=iso-8859-1
    Connection: Keep-Alive
    Keep-Alive: timeout=5, max=999
    Server: Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.2.0 (N;ecid=112453569346,0)
    Content-Length: 326
    Date: Fri, 19 Dec 2008 14:31:46 GMT
    -----

  • Not found - The requested URL /apex/wwv_flow.show was not found on this ser

    I have a very simple anonymous block (see below) which I am using to test an area of the database I am developing using OE and APEX. Sometimes the block works and other times it fails with the following error message------
    Not found - The requested URL /apex/wwv_flow.show was not found on this server
    Before the error message is displayed a pop-up window appears with a submit button ( the heading on the window contains --- Enter Bind Variables - windows internet explorer), which I do not understand.
    Is the problem I am experiencing due to some memory limitation ? or do I have a corrupt oracle system (everything else appears OK though).
    Any help or advice would be much appreciated.
    Best Regards
    Lawrence Cattell
    Here is the anonymous block (please no comments on the code). If I extend the number of DBMS_OUTPUT.PUT_LINES beyond the current number of 3 it fails everytime, sometimes it works with 3, sometimes it fails. Is it related to the number of variables I am binding to the WSI_QUOTE Type ?
    DECLARE
    v_dir VARCHAR2(20):='WSI_REPORTS';
    V_COUNT NUMBER(2,0);
    V_QTE_REF_NBR WSI_QUOTES.QTE_REF_NBR%TYPE;
    V_CTR_ID WSI_QUOTES.CTR_ID%TYPE;
    v_QTE_REC_NBR WSI_QUOTES.QTE_REC_NBR%TYPE;
    v_QTE_DTE WSI_QUOTES.QTE_DTE%TYPE;
    V_PEB_NBR WSI_QUOTES.PEB_NBR%TYPE;
    V_QTE_COM WSI_QUOTES.QTE_COM%TYPE;
    V_SAI_NBR_01 WSI_QUOTES.SAI_NBR_01%TYPE;
    V_QTY_01 WSI_QUOTES.QTY_01%TYPE;
    V_SAI_NBR_02 WSI_QUOTES.SAI_NBR_02%TYPE;
    V_QTY_02 WSI_QUOTES.QTY_02%TYPE;
    V_SAI_NBR_03 WSI_QUOTES.SAI_NBR_03%TYPE;
    V_QTY_03 WSI_QUOTES.QTY_03%TYPE;
    V_SAI_NBR_04 WSI_QUOTES.SAI_NBR_04%TYPE;
    V_QTY_04 WSI_QUOTES.QTY_04%TYPE;
    V_SAI_NBR_05 WSI_QUOTES.SAI_NBR_05%TYPE;
    V_QTY_05 WSI_QUOTES.QTY_05%TYPE;
    V_SAI_NBR_06 WSI_QUOTES.SAI_NBR_06%TYPE;
    V_QTY_06 WSI_QUOTES.QTY_06%TYPE;
    V_SAI_NBR_07 WSI_QUOTES.SAI_NBR_07%TYPE;
    V_QTY_07 WSI_QUOTES.QTY_07%TYPE;
    V_SAI_NBR_08 WSI_QUOTES.SAI_NBR_08%TYPE;
    V_QTY_08 WSI_QUOTES.QTY_08%TYPE;
    V_SAI_NBR_09 WSI_QUOTES.SAI_NBR_09%TYPE;
    V_QTY_09 WSI_QUOTES.QTY_09%TYPE;
    V_SAI_NBR_10 WSI_QUOTES.SAI_NBR_10%TYPE;
    V_QTY_10 WSI_QUOTES.QTY_10%TYPE;
    V_CTR_NME WSI_CUSTOMERS.CTR_NME%TYPE;
    CURSOR GET_QUOTE_INFO_CUR IS
    SELECT *FROM WSI_QUOTES WHERE QTE_REC_NBR = 2;
    BEGIN
    DELETE WSI_QUOTE_TEMP_HOLD;
    OPEN GET_QUOTE_INFO_CUR;
    LOOP
    FETCH GET_QUOTE_INFO_CUR INTO V_QTE_REC_NBR,V_QTE_REF_NBR,V_CTR_ID,v_QTE_DTE,V_PEB_NBR, V_SAI_NBR_01,V_QTY_01,V_SAI_NBR_02,V_QTY_02,V_SAI_NBR_03, V_QTY_03,
    V_SAI_NBR_04, V_QTY_04, V_SAI_NBR_05, V_QTY_05,V_SAI_NBR_06, V_QTY_06,V_SAI_NBR_07,V_QTY_07,V_SAI_NBR_08, V_QTY_08, V_SAI_NBR_09, V_QTY_09,
    V_SAI_NBR_10,V_QTY_10,V_QTE_COM;
    EXIT WHEN GET_QUOTE_INFO_CUR%NOTFOUND;
    SELECT CTR_NME INTO v_CTR_NME FROM WSI_CUSTOMERS WHERE CTR_ID = V_CTR_ID;
    END LOOP;
    CLOSE GET_QUOTE_INFO_CUR;
    V_COUNT :=1;
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_01|| '***' ||V_QTY_01);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_02|| '***' ||V_QTY_02);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_03|| '***' ||V_QTY_03);
    END;

    The interpreter could be choking on the "*from" (no space before "from") might not be parsing the SQL as intended .
    The "Enter Bind Variables" dialog box is coming from something undefined, I'd suggest putting that block into an .sql file and run it via sqlplus.
    To demonstrate how a bind variable is handled try setting up a file with:
    select * from sometablename where somecolname = &somekeyval;
    -- or '&somekeyval' if its varchar2When you connect with sqlplus and run that file it will prompt for the value to use for "somekeyval".
    Only other thing is to ensure the "select * ..." has the same column names and in the same order as expected by the fetch, perhaps the table layout has changed and you could be getting an added column or maybe missing one at the end of the list.
    If you try running that block in a sqlplus session enable serveroutput to see the dbms_out result (set serveroutput on size 50000)

  • Pesonnel Change Request(PCR) in MSS

    Hi Experts,
    We are facing the following error when trying to access the Pesonnel Change Request in MSS.
    The initial exception that caused the request to fail, was:
    com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized. The requested URL was:"http://SAPEPQ:51100/AdobeDocumentServices/Config?style=document"
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.handleResponseMessage(MimeHttpBinding.java:985)
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1437)
    at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:82)
    at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:99)
    at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:385)
    ... 54 more
    We have configured the ADS and we are working on ECC 6.0 and EP 7.0.
    Thanks & regards
    Ash

    https://forums.sdn.sap.com/click.jspa?searchID=9266969&messageID=4720515

  • Gives error The requested URL "/", is invalid but I gave a valid format

    I gave firefox 3.6.6 what I think is a properly formatted URL, namely http://www.3dfx.com. Firefox changes this to http://www.3dfx.com/ I think the added / indicates it got a response from the URL I gave but then it says The requested URL "/", is invalid.
    Reference #9.eb4a595.1295368725.9366789
    so it seems like it did not understand the format. By comparison, I enter http://www.purdue.edu and it is changed to http://www.purdue.edu/ and the page is displayed.

    Here's a (maybe THE) solution, assuming you have the HTTPS Everywhere add-on installed. If not, then this will probably be of no help at all (sorry).
    I was having this exact issue, only when attempting to reach the Washington Post website, which had always worked for me without problems before. I received this error message:
    The requested URL "/", is invalid.
    To make matters even more confusing, I could reach the desired web site (using the same URL--http://www.washingtonpost.com) on the same PC using Internet Explorer, and on another PC using Firefox.
    After an annoying search, Googling this error message, and trying a variety of suggested remedies, I was finally able to resolve the problem by changing the settings for the Firefox add-on HTTPS Everywhere.
    In Firefox, click on the Tools menu, then select Add-ons, then click on HTTPS Everywhere and click on the Options button. The HTTPS Everywhere Preferences screen will appear asking, "Which HTTPS redirection rules should apply?"
    Uncheck the website you're having the problem with and click OK. That should solve the problem. At least, for me it ended the problem immediately, without restarting Firefox, my PC, my router, or any of the other "remedies" I had tried during my earlier troubleshooting efforts.

  • Exchange 2013 ECP Login fails HTTP 404 Requested URL: /owa/auth/logon.aspx

    Hi,
    One of our Exchange servers stopped allowing access to OWA and ECP. I have now managed to get OWA working but ECP is still failing. When connecting to ECP using https://servername/ecp/ it asks me for my username and password. After hitting enter it shows
    me an error page:
    Server Error in '/owa' Application.
    The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.
    Requested URL: /owa/auth/logon.aspx
    URL in the address bar while on this screen: https://exchangeserver:444/owa/auth/logon.aspx?url=https://exchangeservera:444/ecp/&reason=0
    Question: When the URL points to servername:444/owa/auth/logon.aspx - Is it trying to find the logon.aspx in C:\Program Files\Microsoft\Exchange Server\V15\ClientAccess\Owa\auth? There is no such file in that directory?
    I have removed and recreated the ECP and OWA virtual directories several times.
    I am trying to login using a domain administrator account.
    Thanks,

    Hi,
    Is there any Exchange server 2010 coexistence with your Exchange 2013 server? If it is, please try the URL
    https://CAS15-NA/ecp?ExchClientVer=15 to access ECP.
    Also run the following to check your OWA and ECP virtual directories:
    Get-EcpVirtualDirectory -ShowMailboxVirtualDirectories | FL Identity,*Authentication*
    Get-OwaVirtualDirectory -ShowMailboxVirtualDirectories | FL Identity,*Authentication*
    And make sure the Basic and Forms authentications are enabled in
    Default Web Site and Ntlm, WindowsIntegrated
    authentication methods are enabled in
    Exchange Back End. Then restart IIS service by running
    iisreset /noforce from a command prompt window.
    If the issue persists, please collect any event logs or IIS logs for further analysis.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • [SOLVED] The requested URL returned error: 403 Forbidden

    Hi guys
    (sory for my english
    I have a problem with packer -Syu
    the output:
    Proceed with installation? [Y/n] y
    Edit openbox-menu PKGBUILD with $EDITOR? [Y/n] n
    ==> Making package: openbox-menu 0.3.6.8-1 (Tue Feb 12 15:52:19 UTC 2013)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
      -> Downloading openbox-menu-0.3.6.8.tar.bz2...
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    curl: (22) The requested URL returned error: 403 Forbidden
    ==> ERROR: Failure while downloading openbox-menu-0.3.6.8.tar.bz2
        Aborting...
    The build failed.
    for full detials:
    http://pastebin.com/Acq0uY78
    iam try another mirrors... but i get same problen
    i install tor (for use tsocks or torify) but its dont work in my country
    HELP ME PLZ
    thanks
    Last edited by tareef (2013-02-14 19:39:07)

    It's http://mimarchlinux.googlecode.com/file … .8.tar.bz2, just as the PKGBUILD says.
    Edit:
    If something is broken, you should ask on the AUR page for the maintainer to fix the PKGBUILD https://aur.archlinux.org/packages/openbox-menu/, but the PKGBUILD worked for me.
    tareef wrote:
    for full detials:
    http://pastebin.com/Acq0uY78
    iam try another mirrors... but i get same problen
    i install tor (for use tsocks or torify) but its dont work in my country
    openbox-menu is from the AUR and not from the repos, so changing mirrors won't do anything here. You might want to read on what AUR is and deal with the issues with the signatures first.
    Last edited by karol (2013-02-13 00:10:04)

  • Changing fulfillment URL

    As often happens, our test ACS4 setup gradually morphed into our production ACS4 setup, and this has left us with some baggage.
    The fulfillment URL incorporates a DNS machine name (e.g. zz321123.us.archive.org) that is specific to a cluster architecture that we're moving away from.  We used this URL when signing our operator key with the operatorClient.  If I change it in the fulfillment confirmation files, fulfillments start failing with errors.
    My question -
    Is there any way to change this URL after the fact?  We'd like to change it to a descriptive DNS alias, such as lending.us.archive.org.  Do I need to generate and sign a new key?  If so, do I need to re-encrypt all of our content?  Needless to say, this would be inconvenient!
    Any help appreciated.
    Many thanks,
    Mike McCabe
    Internet Archive

    3 Things come to mind.
    1.) Yes you can change it, and you will absolutely need to request a new certificate (as well as generating and configuring a new keypair (.p12 file) for your fulfillment service.)
    2.) If your media service is not changing there is no problem, however if you were hosting the encrypted content on the same server (with the same URL), then you will want to change the download URLs for all of your existing content ( ie the src in the fulfillmentItem ).  You can do this either through the admin APIs, or directly in the database.  This does not require any re-encrypting that content.
    3.)  Existing licenses will point to the old service.  This will be a problem especially for loans (licenses that are 'returnable').  To return a loan, the operatorURL in the license will be used as the baseURL for the service.   However this will also be a problem for any existing licenses within the database, since the operatorURL in the current signed licenses you have will point to the old service.  So you may end up having to remove all rows from the fulfillment and licenses tables immediately afterwards (and you will get charged for any requests to the Adobe Signing Server to regenerate new licenses).

  • The requested URL /pls/apex/wwv_flow.accept was not found

    So I went in today to add a new form to an application and here is what I get....
    Any new ITEM I make, I can not make any changes to without getting the error. Blank page, blank region, standard form item, nothing else on page, everything set to default.
    Any new pages / regions all work fine.
    Any old pages / regions all work fine.
    If I even just create an item, go back into it and hit apply, I get the "The requested URL /pls/apex/wwv_flow.accept was not found"
    Anyone?

    apex version? listener version?
    web server? version?
    DB version?  are you on RAC?
    (why do people leave these important pieces of information out???)
    personally, if a web site works one minute then fails the next with said error, you have a DNS problem.
    either too many entries in the DNS ... or two computers with the same IP address.
    when the error page displays, double check that the URL is for the correct host and port (eg not localhost)
    MK

  • The requested URL /pls/marvel/wwv_flow.accept was not found on this server.

    The requested URL /pls/marvel/wwv_flow.accept was not found on this server.
    I get this message many times when I submit the page. Haven't changed any code on the page in months, but this started happening yesterday.
    Interesting thing is that when I run in DEBUG mode, this doesn't happen. Things work just fine. What is different when running in DEBUG?
    I have put validation (unconditional) that does insert and commit into debugging table in database. Does not get to that point. Fails before validations occur.
    Any ideas/ suggestions are appreciated.
    --JM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    1. Please tell us your first name and put it into your handle and/or profile to help us.
    2. What is your Application Express version?
    3. Look at the Apache request log and error log for clues.
    4. Is the problem consistently reproducible?
    5. Can you get this app to fail in this way on apex.oracle.com?
    Scott

Maybe you are looking for

  • PS Elements won't open image

    I'm having a strange problem with the PS Elements 9 software on my wife's mini mac computer.  The program launches fine, and when I try to open a picture (any picture - I've tried lots) I get the various dialog boxes ("reading Photshop format", color

  • Link errors when building with librfc.a from RFCSDK 7.00 for z/OS 32 bit

    There is a disparity between the documentation and the contents of the RFCSDK for z/OS 32 bit. The documentation included with the SDK is for older versions of the RFCSDK and discusses the librfc dll and librfc.x sidedeck file. However, the new SDK n

  • NWDS 7.02.11

    Hi All, I have portal version 7.02 SP11 installed, and i want to develop some webdynpro applications for Portal. So i installed NWDS version 7.02.11 which has windows 7(32 bit) as the OS, but the issue iam facing is, i dont see Webdynpro Perspective.

  • How to install the iPhone 5 without a SIM card?

    Wie kann man das iPhone 5 ohne SIM Karte aktivieren?

  • WL.login fails (Failed to load resource: net::ERR_CONTENT_DECODING_FAILED)

    Live connect log-in stopped to work. We have two games online, Permia - Duels and Pet Shows. All platforms, Windows Phone, Windows 8 and web browser are affected. It is easy to test with our web version of the game. http://web.permiaduels.com Step 1: