White blank or space problem  in URL

Hi,
when i passing the attribute name in the url.
Sometimes url having spaces between the words that time it shows Error
this is the following code for that duplicate button.
In CO Homepage
if("duplicate".equals(pageContext.getParameter(EVENT_PARAM)))
String LookupCode=pageContext.getParameter("LookupCodeColumn");
pageContext.setForwardURL("OA.jsp?page=/eis/oracle/apps/xxeis/central/admin/Lookups/webui/EISRSCLookupsCreatePG&lookupEvent=duplicate&LookupCodeColumn="+LookupCode,
null,
OAWebBeanConstants.KEEP_MENU_CONTEXT,
null,
null,
false,
OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
OAWebBeanConstants.IGNORE_MESSAGES);
Then after the noramlly executed vo throw AM.
Can you please help me
Thanks
Varshini

Hi,
This is the following code in Home page CO
String LookupCode = pageContext.getParameter("LookupCodeColumn");
com.sun.java.util.collections.HashMap formParams = new com.sun.java.util.collections.HashMap(1);
formParams.put("lookupEvent","duplicate");
formParams.put("LookupCodeColumn",LookupCode);
pageContext.setForwardURL("OA.jsp?page=/eis/oracle/apps/xxeis/central/admin/Lookups/webui /EISRSCLookupsCreatePG", //No need provide the params as part of URL
null,
OAWebBeanConstants.KEEP_MENU_CONTEXT,
null,
formParams , //Here pass your HashMap object
false,
OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
OAWebBeanConstants.IGNORE_MESSAGES);
This is the error optaining
oracle.apps.fnd.framework.OAException: Illegal URL string. The URL contains illegal characters. You need to encode these illegal characters: OA.jsp?page=/eis/oracle/apps/xxeis/central/admin/Lookups/webui /EISRSCLookupsCreatePG&lookupEvent=duplicate&LookupCodeColumn=very+small&_ti=2079348071
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1959)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
     at OA.jspService(OA.jsp:40)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)
## Detail 0 ##
oracle.apps.fnd.framework.OAException: Illegal URL string. The URL contains illegal characters. You need to encode these illegal characters: OA.jsp?page=/eis/oracle/apps/xxeis/central/admin/Lookups/webui /EISRSCLookupsCreatePG&lookupEvent=duplicate&LookupCodeColumn=very+small&_ti=2079348071
     at oracle.apps.fnd.framework.webui.OAUrl.validateURL(OAUrl.java:2194)
     at oracle.apps.fnd.framework.webui.OAUrl.createURL(OAUrl.java:1088)
     at oracle.apps.fnd.framework.webui.OAUrl.createURL(OAUrl.java:614)
     at oracle.apps.fnd.framework.webui.OAUrl.createURL(OAUrl.java:407)
     at oracle.apps.fnd.framework.webui.OAPageBean.createURL(OAPageBean.java:2033)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1751)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
     at OA.jspService(OA.jsp:40)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)
oracle.apps.fnd.framework.OAException: Illegal URL string. The URL contains illegal characters. You need to encode these illegal characters: OA.jsp?page=/eis/oracle/apps/xxeis/central/admin/Lookups/webui /EISRSCLookupsCreatePG&lookupEvent=duplicate&LookupCodeColumn=very+small&_ti=2079348071
     at oracle.apps.fnd.framework.webui.OAUrl.validateURL(OAUrl.java:2194)
     at oracle.apps.fnd.framework.webui.OAUrl.createURL(OAUrl.java:1088)
     at oracle.apps.fnd.framework.webui.OAUrl.createURL(OAUrl.java:614)
     at oracle.apps.fnd.framework.webui.OAUrl.createURL(OAUrl.java:407)
     at oracle.apps.fnd.framework.webui.OAPageBean.createURL(OAPageBean.java:2033)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1751)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
     at OA.jspService(OA.jsp:40)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)
Thanks
Varshini

Similar Messages

  • Picture won't show up in my Photo Album; big white blank rectangle space

    There is a picture of Sammy Lee, the Olympic Gold Medalist diver, that refuses to show up in one of my Photo Albums on Safari.
    I have done everything that everyone has taught me. I have cleared the cache many times. I have clicked onto a site ourside my own site (actually Allyson's site about the tips for iWeb). I have published all to .Mac. The photo still shows up as a white rectangular space.
    It is not like other times when a photo doesn't show up, because in those cases, there is a question mark in a blue box. With this case, there is no question mark inside a blue box. There is only a white space where the picture would be/was.
    I even went back to iPhoto and put in another copy of that picture, all to no avail.
    QUESTION:
    What else can I do to make the picture show up on my Photo Album page?
    — Lorna in Southern California

    I think it could be the comma causing the problem, actually. Here is a line from the slideshow.html file
    new SlideImage('http://web.mac.com/lorna6/iWeb/Lorna%20x%203/395844EC-4CEE-4545-8AD 3-7E66F83391ECfiles/W%3ASammy%20Lee,%20swimmer2.jpg', 321, 450, 'With Sammy Lee, Olympic champion diver & Gold Medalist. He went on to coach Greg Louganis. At L.A.U.S.D., Office of Bilingual Instruction (It no longer goes by that name.) Mid-80’s'),
    The colon has transferred ok, but there are a lot of commas used in the code to call up the photos in the slideshow and the comma in the file name (and, possibly, the caption) could be causing some problems.
    I don't know enough about this to know for sure (need to consult a higher source...), but it sure couldn't hurt removing it to see if it helps.

  • How to solve space problem at URL String ?

    Hi,
    When I sent to data , with URL, like this
    (targetURL = new URL("http://localhost:8988/wsVasc/VascServlet"?name=erkan hel");
    spaces are problem, for example "name=erkan hel";
    how to solve this problem?
    browser recover this problem as erkan%20hel, but how can I solve this problem ?
    thanks..

    But , I have a problem to get connection ;
    System.out.println("URL-------**" + URLEncoder.encode(url,"UTF-8"));
    targetURL = new URL(URLEncoder.encode(url,"UTF-8"));
    URL-------**http%3A%2F%2Flocalhost%3A8988%2FwsVasc%2FVascServlet%3FserviceName%3Dtest
    Connection error :java.net.MalformedURLException: no protocol: http%3A%2F%2Flocalhost%3A8988%2FwsVasc%2FVascServlet%3FserviceName%3Dtest
    Process exited with exit code 0.

  • Web.show_document  spaces in the URL problem

    Hi,
    I am using Web.Show_document to call the report from the form. Here some of the parameters having a spaces. It is giving a problem and report is not running. Pl guide me in this issue.
    Thanks & Regards,
    Gangi Reddy

    Try using %20 in place of the space in the URL.

  • My iphone 5 suddenly has a white blank screen,  no liquid contact or history of fall, what can i do with this problem?

    my iphone 5 suddenly has a white blank screen,  no liquid contact or history of fall, what can i do with this problem?

    Hey there Galileo,
    It sounds like your iPhone screen is solid white and you cannot do anything with it. Take a look at these steps from the following article about that kind of issue:
    Get help with the screen on your iPhone, iPad, or iPod touch
    If you see a solid color screen (black, white or blue)
    Plug in your device to a power source. If you see the low-battery screen when you plug in, let your device charge for at least 10 minutes (20 minutes for iPad) before using it.
    Reset your device while it's plugged in.
    If resetting doesn’t fix the issue, restore your device.
    If you still see the issue after you restore, contact Apple Support.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Why has the new ipod nano no connector for a speaker dock?  The white blank at the bottom looks as if one was intended, but then there were design problems?

    Why has the new ipod nano no connector for a speaker dock?  The white blank at the bottom looks as if one was intended, but then there were design problems?

    IKR! But u an order a connector that can plug nto any old speakers and then connect to your charger port and it will play music!

  • TS1367 I was having a problem down loading photos, so I force quite all programs.  Then there was problem launching finder.    Relaunched and turned computer off to reboot.    Now computer starts, but does not boot up  I am stopped at a white blank screen

    I was having a problem down loading photos, so I force quite all programs.  Then there was problem launching finder.    Relaunched and turned computer off to reboot.    Now computer starts, but does not boot up  I am stopped at a white blank screen

    Welcome to Apple Discussions Dathanb
    You have posted in the Feedback About New Discussions forum.
    As you are a first time poster, you seem to have missed the text at the top of this forum that says:
    Please Read This Before Posting Here
    If your question concerns a hardware or software technical issue, please do not post in this forum
    Go to the main Apple Discussions page, select an appropriate product category and follow the links until you reach the correct forum for your post, then click the POST NEW TOPIC link. Because your post doesn't indicate was OS you are using on your iMac, I can't give you a link to the most appropriate forum.
    Basically, though, the version of TechTool on the AppleCare disks is not compatible with newer versions of OS X and/or Macs (I can't remember which). If you don't get a satisfactory response by posting in the appropriate iMac or OS X forum, I suggest you take your iMac to the geniuses at the Apple Store. You can set up an appointment time for the same day online before you leave home.
    Peggy

  • My ipod classic comes on but just a blank white screen whats the problem

    my ipod classic comes on but just a white blank screen what is the problem

    Gloria,
    If none of the 5 R's resolve the issue, it's likely that your iPod's display is damaged and needs replacing of the ribbon cable for the display that connects to the logic board has come loose or is damaged.  Either way your iPod will need to be serviced in order for it to regain full functionality.
    Here are the 5 R's.
    http://www.apple.com/support/ipod/five_rs/classic/
    B-rock

  • Firefox is freezing, then only showing a white blank screen when I try to load it.

    Ok, I have not had any problems with firefox, I was logging on it all the time, everyday, etc... with no problems until today. Today when I went to log onto the net, firefox opened, and it looked like everything I had customized from tabs, bookmarks and etc... had been wipped off. But also, it would not load any page, none of my bookmarks were showing in the side bookmark window that was open. It would only say "connecting..." in the only tab that was there. I could not click on anything, or do anything. When I tried to click on anything within it, I would get the "not responding" error at the top, and then the whole browser would disappear, and be replaced with a white blank page, with only the firefox logo, in the blue bar at the very top. This would also be frozen, and I could not even get it to close. I would have to open my task manager, and close it that way by stopping the process.
    I have not installed anything new on my comp, I have not downloaded unknown things, or anything new I do not think recently either. Like I said I have been using firefox for years, never had this problem. I used it just fine even this morning before I went to bed. Then tonight when I woke, logged on, this was happening.
    I have tried using IE, and IE is working just fine, without any problems. I used IE to download, and then update firefox to the newest version, still no change. By the way I was not running "really old" version or anything, I keep my firefox updated. Soooo can someone help me?

    I have a similar issue -- using an embedded google form rendered as an iframe. It is present in the source, but displays as blank space.
    This problem seems to be confined to Mac OS X (I'm on 10.6.3), and I didn't have this problem with FF 3.6.x (not sure if I ever had 3.6.9, or what version I had prior to 3.6.10). The issue is not present in Chrome or Safari, or on 3.6.10 on Windows 7.0 I believe

  • Why does the website display white blank pages only?

    Hello:
    I use Firefox 13.0.1 on a Mac OS X, and I often go to www.wenxuecity.com for news. But, in the past couple of days, when I type in that address in the URL window, only a white blank page shows up. Nothing else! If I use Google to find direct links to a few news items at that website and click the links, I also get white blank pages. No error message or anything else.
    Could you tell what is going on here?
    Many thanks!

    Is the page completely blank or is there still some content visible?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    You can also try to check the Net log in the Web Console (Web Developer > Web Console;Cmd+Shift+K) to see if that bring up errors about loading files.<br />
    You can double click a net log entry to see more details.
    *https://developer.mozilla.org/en/Tools/Web_Console
    *https://developer.mozilla.org/en/Using_the_Web_Console
    You need to reload web page(s) and bypass the cache to refresh all files with the Web Console panel open.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)

  • When I click on the Firefox icon, I get the TWCCentral page. However, the page is misaligned, i.e. all the pictures switch to the left leaving a white blank sp

    pictures switch to the left leaving a white blank area on the left of the page. I contacted Time Warner and they told me you are the one to correct this problem...I hope you can...please let me know when
    this situation is resolved...Thank you. [email protected]

    I assume this page worked normally in Firefox 22?
    Firefox 23 introduced a new security feature. If this is an HTTPS page, insecure content may be blocked. Look for a shield icon on the address bar to the left of the URL. This article has more details about this feature: [[How does content that isn't secure affect my safety?]]
    If it's not a secure page or there's no shield, here is a more general suggestion.
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • IPOD Help~(cannot view anything except a white blank screen)

    Alright...I never expected to post up something in this discussion thread this soon...since I got my 30gig iPOD just three days ago...and curious as I am to things...I think I broke it, hah~
    Anyways...I need some help.
    Here's the story.
    I was updating my iPOD to a newer version, I'm assuming...and during the updating process...I accidently 'x'ed out of the box...and now my iPOD screen does not show anything except for a white blank screen. If I hold down the menu and center button for six seconds...It shuts down...but when I release/let go of the buttons...it makes a ring sound and goes back to the white blank screen.
    And also...when I go to the start menu and look under the iPOD folder...it has an update your ipod thing...I clicked it...and it pops up with a screen, saying stuff like it's 'initializing'...and tells me to plug in my iPOD with the usb chord...but I get a message saying 'can't mount iPOD' or 'internal error'
    I think I've tried anything there is to solve this problem...like the five R's...etc.
    I do not want to think that I broke my iPOD already. So if anyone knows, please reply back.
    Thanks in Advance

    Hi Sky,
    Hmm - I see the shapes, I'm not sure why they're disappearing when you draw them - too simple of a file to point at some other issue. It seems like something with the installation went wrong or is missing (the player that renders the Stage for AS3 documents). I think the first thing will be to get the update. Can you try downloading from this page instead of through the update manager? http://www.adobe.com/support/flash/downloads.html Then try running the executable that you download.  If this doesn't fix it, Flash may need to be fully removed and reinstalled.
    Jen.

  • Removing spaces in an URL

    Hi,
    I have white spaces in my URL which I want to replace with %20. How do I do that in J2ME as I do not have "replaceall" method of Strings.
    thanks in advance,
    @debug

    This should do the trick:
    public final static String replace( String source, String it, String that ) {
          int           idx;
          StringBuffer  tmp  = new StringBuffer();
          while ( ( idx = source.indexOf( it ) ) > 0 ) {
             tmp.delete( 0, b.length() );
             tmp.append( source.substring( 0, idx ) );
             tmp.append( that );
             tmp.append( source.substring( idx + it.length() ) );
             source = tmp.toString();
          return source;
       }

  • Click on the icon and a white blank page comes on, the bottom says opening but nothing happens!

    when ever i open firefox, nothing happens, just a white blank page comes on, on the bottom left, the default page is trying to open" i.e waiting for xxxxxxx to open,
    I tried re starting my computer "MAC" also quit Firefox and opened it but the problem is still there.

    Last time I updated Firefox, all of my bookmarks and saved pages were gone.
    If you have unsaved open pages you may loose them on a Firefox upgrade but you should not normally loose your bookmarks, unless for instance you do a new install and take one of the options that deletes personal information.
    I suggest as a precaution you back up your Firefox profile. This is something that is easier to do whilst Firefox is able to run; and it is good practice to do this periodically anyway; but it can still be done even when Firefox is not able to be run.
    * for instructions have a look at [[Back up and restore information in Firefox profiles]]
    * put the backup files and folders somewhere safe, where they may be found easily, but outside the Firefox program or profile paths. (Your Windows 7 Desktop is a suitable location).
    Now when I click on the Firefox icon, nothing happens. No page opens...nothing.
    Firefox not starting after an upgrade is often caused by firewalls or security programs either not recognising the new Firefox as being safe, or else blocking or even reversing changes made to your system and browser.
    Have a look at your security software and the security settings.
    *What security related software and firewall do you use ?
    * see also
    ** [[Firefox won't start - find solutions#w_firefox-will-not-start-after-updating]]_firefox-will-not-start-after-updating
    ** [[Configure firewalls so that Firefox can access the Internet]]
    **[[Firefox does not work - Common fixes to get you back up and running]]

  • Weird Space on the URL Bar

    Their is a odd space on the URL bar between the URL itself and the back button
    Here is a Screen Shot: http://prntscr.com/1x5zuz
    Its really annoying.. Please help

    '''Try the Firefox SafeMode''' to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    [https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode#w_safe-mode-window_2 Troubleshoot Firefox issues using Firefox SafeMode]
    * You can open the Firefox 15.0+ SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    '''''If it is good in the Firefox SafeMode''''', your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes <br />
    Or it might be caused by Hardware Acceleration.
    ''When you figure out what is causing that, please let us know. It might help other user's who have that problem.''

Maybe you are looking for