How to remove faces from url

Hi All,
Following is my web.xml
<?xml version = '1.0' encoding = 'windows-1252'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
    <description>Empty web.xml file for Web Application</description>
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
    </context-param>
    <context-param>
        <param-name>CpxFileName</param-name>
        <param-value>com.gemini.view.DataBindings</param-value>
    </context-param>
    <filter>
        <filter-name>adfBindings</filter-name>
        <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter>
        <filter-name>adfFaces</filter-name>
        <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>adfBindings</filter-name>
        <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
        <filter-name>adfBindings</filter-name>
        <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <filter-mapping>
        <filter-name>adfFaces</filter-name>
        <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
        <filter-name>adfFaces</filter-name>
        <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
        <servlet-name>resources</servlet-name>
        <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet>
        <servlet-name>geminiservlet</servlet-name>
        <servlet-class>com.gemini.view.managed.geminiservlet</servlet-class>
    </servlet>
    <servlet>
        <servlet-name>gemini</servlet-name>
        <servlet-class>com.gemini.view.managed.gemini</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>geminiservlet</servlet-name>
        <url-pattern>/faces/geminiservlet</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>gemini</servlet-name>
        <url-pattern>/gemini</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
        <extension>html</extension>
        <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>txt</extension>
        <mime-type>text/plain</mime-type>
    </mime-mapping>
    <welcome-file-list>
        <welcome-file>/login.jsp</welcome-file>
    </welcome-file-list>
</web-app>I access the site using http://bri-dev2/Gemini/faces/login.jsp
I want to remove faces from the URL. like http://bri-dev2/Gemini/login.jsp
How can I achieve this ?
I used /* in the Faces Servlet URL Pattern. and when I accessed the page using
http://bri-dev2/Gemini/login.jsp it gave me FacesContext Exception. I am using FacesContext object in login.jsp and several other jsp pages. So /* did not work.
Any idea ?
thanks,
pp

Sorry, it took long time. bcoz after that, all the components of server were down. I had to restart the server.
Well, Following is the log:
07/08/09 18:12:35 Start process
07/08/09 18:13:04 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/09 18:13:14 Error initializing site OracleAS Java Web Site: No application named 'BC4J' found in the server
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Short,null)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Short)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Byte,null)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Byte)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Integer,null)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Integer)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ValidatorRule end
WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Number,null)
07/08/09 18:13:25 Tutalii: D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80\webappjdk14ver80\WEB-INF\lib\adf-faces-api.jar archive
07/08/09 18:13:25 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2) initialized
07/08/10 08:21:29 Error initializing site OracleAS Java Web Site: No application named 'BC4J' found in the server
07/08/10 08:22:30 Notification ==> Application Deployer for webappjdk14ver80 STARTS [ 2007-08-10T08:22:30.864PDT ]
07/08/10 08:22:30 Notification ==> Do not undeploy previous deployment
07/08/10 08:22:30 Notification ==> Copy the archive to D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80.ear
07/08/10 08:22:30 Copy file C:\WINDOWS\TEMP\dir53654.tmp\webappjdk14ver80.ear to D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80.ear
07/08/10 08:22:31 Notification ==> Unpack webappjdk14ver80.ear begins...
07/08/10 08:22:31 Auto-unpacking D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80.ear... done.
07/08/10 08:22:31 Notification ==> Unpack webappjdk14ver80.ear ends...
07/08/10 08:22:31 Notification ==> Initialize webappjdk14ver80.ear begins...
07/08/10 08:22:31 Auto-unpacking D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80\webappjdk14ver80.war... done.
07/08/10 08:22:32 Copying default deployment descriptor from archive at D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80/META-INF/orion-application.xml
to deployment directory D:\Apps\OraHome_1\j2ee\home\application-deployments\webappjdk14ver80...
07/08/10 08:22:32 Notification ==> Initialize webappjdk14ver80.ear ends...
07/08/10 08:22:32 Notification ==> Initialize webappjdk14ver80 begins...
07/08/10 08:22:32 Notification ==> Initialize webappjdk14ver80 ends...
07/08/10 08:22:32 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
not found
07/08/10 08:22:32 Notification ==> Application Deployer for webappjdk14ver80 COMPLETES [ 2007-08-10T08:22:32.695PDT ]
07/08/10 08:22:32 Error initializing site OracleAS Java Web Site: No application named 'BC4J' found in the server
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Short,null)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Short)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Byte,null)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Byte)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Integer,null)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Integer)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ValidatorRule end
WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Number,null)
07/08/10 08:22:39 Tutalii: D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80\webappjdk14ver80\WEB-INF\lib\adf-faces-api.jar archive

Similar Messages

  • HOw Can I remove faces from the URL

    I know that it's in the web.xml file but as soon as i remove the faces part from the file nothing works. Someone please tell me how to properly remove "faces" from the url. Example http:.//localhost:8080/croot/Page1.jsp
    Thanks in advance

    I know that it's in the web.xml file but as soon as i remove the faces part from the file nothing works. Someone please tell me how to properly remove "faces" from the url. Example http:.//localhost:8080/croot/Page1.jsp
    Thanks in advance

  • Remove faces from iPhoto

    Hi.
    Does anyone know if it's possible to remove 'Faces" from iPhoto 11 (9.2.1)? If so, how can I do it?
    Thanks in advance
    Steve

    A poster called lopezio claims the following will do the job:
    This is how you can disable (turn off) Face detection, without deleting faces found so far (just in case you want to restart processing at another time):
    1. Quit iPhoto
    2. Open Terminal Application (Applications/Utilities/Terminal.app)
    3. Type the following (exactly as is):
    defaults write com.apple.iPhoto PKFaceDetectionEnabled 0
    (then return)
    4. - Start iPhoto - Faces stops getting on your nerves...
    If you ever need to re-enable faces, just do the same again and replace the 0 with 1.
    I've not tested this so I'd offer a significant warning to back up first and even if it does work then to be wary if you're updating or upgrading as it may have an impact there too.
    What definitely works, and safely, is to upgrade to Aperture as that has an option to disable faces. Pay more get more options.

  • HT1386 The first time I synced my iphone with my mac, I didn't realize that all of my photos from iphoto would transfer over to the phone.   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the

    The first time I synced my iphone 4 with my mac, I didn't realize that all of my photos from the iphoto library would transfer over to the phone (more than 3,000).   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the phone.  I tried to uncheck boxes and sync again, but I get a message that there is no room on the iphone.  I've read as many articles as I can find, but still cannot manage this.  Thanks for any help.

    Open itunes, connect iphone, select what you want, sync

  • How to remove pics from my 3GS...???

    How to remove pics from my 3GS..???

    Photos taken with the phone can be deleted by selecting them and hitting the little wastebasket icon in the right bottom corner.
    Photos you did sync to your phone, can only be removed by deselecting them in the photo pane in iTunes, the following sync will remove them from the phone.

  • Does anyone know how to remove images from google

    i had instagram and i didnt upload images of myself but i only used my own image in the display picture and some how it has gone on to the google image search yesterday i deleted my account but when i checked to see if my images do appear in the google images i had some really bad regrets !! i reallywant to know how i can remove pictures off the google image search  even doe this does not kind of relate thank you .

    Does anyone know how to remove vocals from an import from I tunes...a  polyphonic stereo mix ?
    If you are talking about some "Karaoke" method using Logic I'll try to offer one. Before that I must say that most of the Karaoke methods are based on reversing the Phase of one of the stereo channel and bussing or merging the stereo into Mono. The result is: killing all Pan Centered in the mix - like Main Vocal, Bass, Kick, SN ect.
    The artifacts of the Stereo FX of the main vocal will stay in the Karaoke, cause the FX is stereo etc.
    Here is the Logic Setup I can offer to try some Karaoke trick using Logic.
    1. Import a Stereo mix into a Logic Stereo track.
    2. Create another stereo track and duplicate (copy) the Original Mix region to the duplicated track.
    3. Hard Pan L/R both stereo tracks.
    4. Insert an EQ and Gainer plugins into the duplicated track (R).
    5. Set the Output select of the both tracks to a Bus and assign the new Aux Track Switch mode to "Mono".
    6. Open the Gainer plugin and thick the "Phase Invert" Right button.
    7. To keep the "lowend" instruments like the bass and kick, open the EQ plugin and enable the Low Cut filter and try some Hz settings 80-115, or different Q which will sounds better for your Karaoke.
    P.S Click the image below to show its real resolution!
    Regards,
    A.G
    ======================================
    www.audiogrocery.com
    Author of: Logic GUI Deluxe(Free), Vox De Bulgaria s.a.g.e vocal pack for RMX, Logic Snapshot Console, RMX Power CTRL - Logic Environment Midi editor for Stylus etc.
    ======================================

  • How to remove Unicode from XML file

    I get following error when unmarshal xml:
    [java] org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0x15) was found in the element content of the document.
    Anyone know how to remove Unicode from xml file? Can I remove the unicode by rebuild the file?
    Thanks

    These sort of error usually occur when you're using a different character encoding to read the file than the one you wrote it with. Perhaps if you were to post the problem section of the file and/or the code that created it in the first place.

  • How to remove iPhone from a certain computer

    How to remove iPhone from a certain computer along with it's ID to allow another phone to use the comp soley.

    You do not need to do anything.
    Simply stop syncing the iphone to the computer and begin syncing the new iphone to the computer.

  • How to remove Seperator from check-in and profile check in pages

    How to remove Seperator from check-in and profile check in pages
    The seperator is included on the checkin pages, which is present in the std_page with name "std_namevalue_separator", this is called by td_document_checkin_fields and std_document_file_fields.
    Defination of include:
    <@dynamichtml std_namevalue_separator@>
    <$if not isUploadFieldScript$>
    <tr>
         <td width="<$captionFieldWidth$>"><hr /></td>
         <td width="<$captionEntryWidth$>"><hr /></td>
    </tr>
    <$endif$>
    <@end@>
    I have to remove the following include from some of the profile check in page.
    Please suggest if anyone have some idea, how to proceed.
    Thanks,
    Sumit

    791848 wrote:I have to remove the following include from some of the profile check in page.The key here is that you want to do this in some profiles, not all profiles or globally, if I'm reading this right.
    Without writing a component, you can put this code in the "side effects" box in the desired profile(s). This code removes the horizontal rule, and inserts a non breaking space in its place.
    <$setResourceInclude("std_namevalue_separator","<$if not isUploadFieldScript$>
    <tr>
    <td width=\"<$captionFieldWidth$>\"> </td>
    <td width=\"<$captionEntryWidth$>\"> </td>
    </tr>
    <$endif$>")$>YMMV. The non-breaking space may get stripped out in the forum.

  • How to remove text from .swf animation?

    how to remove text from .swf animation? Can no find this text
    in fla file. Flash 8.

    exactly what 'text' are you referring to? text that you typed
    on the Stage using the 'textTool'? simply select the text with the
    'arrowTool' and hit delete.
    If you are referring to a textField that you want to
    eliminate after a certain amount of time, within your animation
    sequence. first copy the text, create a new layer, paste the text
    in place, then where you want to have the text 'disappear' insert a
    'blank keyframe' at that point in the text layer.
    OR place the textfield within a MC and remove it with code.
    OR if the text is dynamic and you wish to use the position at a
    later time, pass a value of null or and empty string to the field
    at the point you wish. And there are other ways still. :) hope one
    of these works for you.

  • How to remove passcode from ipod touch 3g  if power botton is not working?

    how to remove passcode from ipod touch 3g  if power botton is not working?

    Use this program to place the iPod in recovery mode so that you then can restore the iPod via iTunes.
    RecBoot: Easy Way to Put iPhone into Recovery Mode

  • How to remove myself from/leave a team?

    Hi
    I'm using Visual Studio Online in my software development classes. The problem is that the "Accounts list" on my Visual Studio Online portal is crowded with projects from past years. A clean-up is needed.
    I found this solution (https://social.msdn.microsoft.com/Forums/vstudio/en-US/80057697-38d7-4161-8564-13c630943484/vs-tfs-online-how-to-remove-myself-from-a-team-?forum=TFService), but the problem in order to apply it is that I have no more contact with
    a lot of those students + most of their accounts are expired.
    How can I solve this?
    Thanks in advance!
    Evert
    PS: my apologies for any linguistic mistakes... English isn't my mother tongue.

    Hi Evert,
    Based on your description, seems you're the owner of the Visual Studio Online account. If you want to remove your account from the teams that expired, then you can delete the teams directly in team project administrative page of team web access.
    If you only want to remove your account from the teams, then you can click the team and remove your account in administrative page.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • HT4859 kindle fire how to remove items from icloud

    kindle fire how to remove items from icloud

    Kindle Fire's don't work with iCloud, your question makes no sense.

  • How to retrieve data from URL or querystring in bsp pages

    hi
    how to retrieve data from URL or querystring in bsp pages.
    thanks
    Edited by: Vijay Babu Dudla on Mar 23, 2009 7:35 AM

    Hello Friend,
    Vijay is correct.
    REQUEST is a system object available in runtime of BSP application.
    It is the object of interface IF_HTTP_REQUEST.
    Use methof REQUEST -> GET_FORM_DATA( )
    Regards
    Krishnendu

  • How to remove items from iPad home screen?

    How to remove items from iPad home screen?

    Press and hold any of the apps and after a couple of seconds or so they should start to shake. Then press the 'x' in the left corner to delete the ones that you don't want, and when you've finished deleting press the home button so as to stop the shaking. If you don't get the 'x' on any of the apps that you've downloaded (you can't delete built-in apps) then check that Settings > General > Restrictions > Deleting Apps isn't set 'off'

Maybe you are looking for