Plz help me in fixing it

1>>From my Servlet xxx.java I want to send the user email and password to anathor servlet .
2>>Both of these servlet are in same application
so please
say me whether this will work or if any other code if u suggest
String name=req.getParameter("Name");
String pass=req.getParameter("Pass");
RequestDispatcher rd1=req.getRequestDispatcher("/loginservlet2?uemail='name'&pass='pass'");
rd1.forward(req,res);
                        

1>>From my Servlet xxx.java I want to send the user
email and password to anathor servlet .
2>>Both of these servlet are in same application
so please
say me whether this will work or if any other code if
u suggest
String name=req.getParameter("Name");
String pass=req.getParameter("Pass");
RequestDispatcher
rd1=req.getRequestDispatcher("/loginservlet2?uemail='n
ame'&pass='pass'");
rd1.forward(req,res);
if i am not wront this line :
RequestDispatcher
rd1=req.getRequestDispatcher("/loginservlet2?uemail='n
ame'&pass='pass'");should be
RequestDispatcher
rd1=req.getRequestDispatcher("WellcomeServlet");now create another servlet by the same name and have a doPost method in there. when you enter a name and password give the url for the first servlet and then the dispatcher will call the second servlet.

Similar Messages

  • When i upgrade my Mac Pro to yosemite safari doesn't good work and doesn't save bookmark plz help me to fix it

    when i upgrade my Mac Pro to yosemite safari doesn't good work and doesn't save bookmark plz help me to fix it

    hi
    when i save a page as boomark shown at the bookmark list when i close safari and restart safari evry bookmark that i saved dosn't show at the bookmark list
    excuse me for whriting i speak a little english
    1 save bookmark and show at the bookmarklist
    2 i close safari
    3 and reopen it
    4any bookmark ,i saved them dosn't show at the bookmark list

  • Hi plZ help me to fix the error to my Blackberry 9300 Uncaught exception: java.lang.​NullPointe​rException

    ;   hi good plzz do help me to fix the error to my bb9300 i just update my bb9300 the the i see 
    error b    Uncaught exception: java.lang.NullPointerException    anyone here can help me to fix i appreciate

    I am guessing that you are not a Java developer, and it is not your application that is causing the Null Pointer Exception. 
    It sounds like you have updated the OS on your Blackberry device and one of the applications that you have installed is not coping with the upgrade.  
    If you press on an application icon and then that causes the error, then you know there is a problem with that application and so you need to report this to the developers of that application and get an updated version. 
    If this is happening when you restart your device, then it appears that one of the installed applications is failing at start up time and so it is not obvious which application.  So you need to see which of your applications doesn't appear to be providing all the functions it used to, and it would be a good guess that it is that application that is causing the problem.  Again you need to go back to the developer to get an update. 
    Let us know if that does not help.
    Also you have posted in the Java developer forum.  If this really is not your program causing the problem, then I suggest a better place to post a question relating to the 9300 is in the appropriate device forum here:
    http://supportforums.blackberry.com/t5/BlackBerry-​Curve/bd-p/Curve

  • Urgent plz help me.error fixing--full marks given

    Hi..this is regarding error fixing for prgm below in ecc 6.0
    *& Report  ZCLEAREM
    REPORT  ZCLEAREM.
    TABLES: LFA1, LFB1, BSIK.
    PARAMETERS: CLRDATE LIKE BSIK-AUGDT.
    SELECT-OPTIONS:  ALLOCATE FOR BSIK-ZUONR,
                     CLIENT   FOR BSIK-MANDT.
    DATA:  BEGIN OF CLEARING OCCURS 3000,
           LIFNR  LIKE BSIK-LIFNR,
           BUKRS  LIKE BSIK-BUKRS,
           BUDAT  LIKE BSIK-BUDAT,
           ZUONR  LIKE BSIK-ZUONR.
    DATA:  END OF CLEARING.
    DATA: SESSION(12) VALUE 'CLEARVENDORS'.
    DATA: BEGIN OF BDC_TAB OCCURS 10.
            INCLUDE STRUCTURE BDCDATA.
    DATA: END OF BDC_TAB.
    DATA: FROM_DATE(10), TO_DATE(10), COMPANY_CODE LIKE KOST1-BUKRS.
    DATA: CTR(4) TYPE N VALUE 0, HOLD_LIFNR LIKE BSIK-LIFNR.
    DATA: HOLD_BUKRS LIKE BSIK-BUKRS.
    CALL FUNCTION 'BDC_OPEN_GROUP'
         EXPORTING
              CLIENT   = SY-MANDT
              GROUP    = SESSION
              HOLDDATE = '07/01/96'
              USER     = SY-UNAME
              KEEP     = 'X'.
    CONCATENATE: CLRDATE4(2) '/' CLRDATE6(2) '/'
      CLRDATE+0(4) INTO FROM_DATE.
    WRITE : / 'CLEARING DATE USED IS ', CLRDATE.
    START-OF-SELECTION.
    GET BSIK LATE.
      CHECK CLIENT.
      CHECK ALLOCATE.
      IF ( BSIK-QSSHB GT 0 ) AND ( BSIK-AUGBL EQ '          ' ).
        MOVE-CORRESPONDING BSIK TO CLEARING.
        APPEND CLEARING.
      ENDIF.
    END-OF-SELECTION.
      WRITE : / 'SELECTED ', CTR, ' RECORDS FOR CLEARING...'.
      SORT CLEARING BY LIFNR BUKRS BUDAT.
      DELETE ADJACENT DUPLICATES FROM CLEARING COMPARING LIFNR BUKRS.
      LOOP AT CLEARING.
        WRITE : / CLEARING-LIFNR, ' ', CLEARING-BUKRS, ' CLEARED. '.
        PERFORM GENERATE_BDC_DATA.
        CTR = CTR + 1.
        CALL FUNCTION 'BDC_INSERT'
             EXPORTING
                  TCODE     = 'F-44'
             TABLES
                  DYNPROTAB = BDC_TAB.
      ENDLOOP.
      CALL FUNCTION 'BDC_CLOSE_GROUP'.
      WRITE: /'end of generation of bdc session - ', SESSION, SY-MANDT,
             SY-UNAME, SY-UZEIT.
      WRITE: / 'WILL CLEAR A TOTAL OF ', CTR, ' RECORDS.'.
          FORM GENERATE_BDC_DATA                                        *
    FORM GENERATE_BDC_DATA.
      REFRESH BDC_TAB.
      PERFORM DYNPRO USING:
           'X' 'SAPMF05A' '0131',
           '' 'RF05A-AGKON' CLEARING-LIFNR,
           '' 'BKPF-BUKRS'  CLEARING-BUKRS,
           '' 'BKPF-BUDAT'  FROM_DATE,
           '' 'RF05A-XPOS1(2)' 'X',
           '' 'BDC_OKCODE' '/16',
           'X' 'SAPMF05A'  '0731',
           '' 'RF05A-SEL01(1)' CLEARING-ZUONR,
           '' 'BDC_OKCODE' '/16',
    LOOP AT
           'X' 'SAPDF05X' '1102',
           ''  'BDC_OKCODE'  'BU'.
    ENDFORM.
          FORM DYNPRO                                                   *
    -->  DYNBEGIN                                                      *
    -->  NAME                                                          *
    -->  VALUE                                                         *
    FORM DYNPRO USING DYNBEGIN NAME VALUE.
      IF DYNBEGIN = 'X'.
        CLEAR BDC_TAB.
        MOVE: NAME TO BDC_TAB-PROGRAM,
        VALUE TO BDC_TAB-DYNPRO,
        'X' TO BDC_TAB-DYNBEGIN.
        APPEND BDC_TAB.
      ELSE.
        CLEAR BDC_TAB.
        MOVE: NAME TO BDC_TAB-FNAM,
            VALUE TO BDC_TAB-FVAL.
        APPEND BDC_TAB.
      ENDIF.
    ENDFORM.

    In abap editor menu path
    Goto-->Attributes
    here in Logical Database name define KDF.
    It will work.
    regards
    shiba dutta

  • My iphone 3g always ended everytime i restore it plz help me

    I restore my iphone in itunes but everytime i go in "restoring iphone firmware" it always ended error...plz help me to fix it

    Kwonkicker wrote:
    I restore my iphone in itunes but everytime ... it always ended error...
    And the Error Message is...?

  • How to fix itunes error 1611 while restoring ios 4.3.2 , and when i restore to 4.2.1 the can be ok.plz help me

    how to fix itunes error 1611 while restoring ios 4.3.2 , and when i restore to 4.2.1 the can be ok.plz help me

    have a look at this support article.

  • Is there any official market or store or anything in Egypt to fix my iphone 4 it jumped from 5th floor and the back hous was crashed and the network sensor was not working good but the phone and the screen and the others things are ok so plz help ???

    Is there any official market or store or anything in Egypt to fix my iphone 4 it jumped from 5th floor and the back hous was crashed and the network sensor was not working good but the phone and the screen and the others things are ok so plz help ???
    my iphone is now just coverd with case and the back house is crased

    Etisalat, Mobinil and Vodafone provide warranty service in your country.  You can also search Google for a 3rd party repair shop near you.

  • My computer iTools not working.how to this fix ?!!.plz help me

    My computer iTools not working.how to this fix ?!!.plz help me

    Hi We don't have a crytral ball more infomation about your problem if you need help . Cheers Brian

  • Hey plz help me out!!  i am using macbook pro 10.5.8..... and was using photobooth...and then after some time i opened it and there was no green light on cam, and it displayed nothing! plz tell me how to fix it! i want to see my face again!!! plz help me

    hey plz help me out!!  i am using macbook pro 10.5.8..... and was using photobooth...and then after some time i opened it and there was no green light on cam, and it displayed nothing! plz tell me how to fix it! i want to see my face again!!! plz help me

    iSight troubleshooting
    http://support.apple.com/kb/HT2090

  • Hey mine avg link scanner is not working from the day i installed firefox 4 ....how to fix it plz help ?

    hey mine avg link scanner(add-on) is not working from the day i installed firefox 4 ....how to fix it plz help ?
    it was working fine with firefox's previous version ? but i like the interface & looks of firefox 4.......so i didnt want to swicth to 3.6 help me ?

    if i reinstall that avg antivirus then is this will fix my problem

  • The last upgrade to iphone5 coused a big problem with my phone signle it always shows' no servise' plz help my phone is new i have recently bought it .plz if u may offer a new update to fix the weak signle of iphone5.i trust u .so plz fix this bug.

    plz help after the last update of the software my iphone 5 shows" no servise" no signle. plz if u offer a new update to fix this bug.

    I would restore the phone as new
    iTunes: Restoring iOS software - Apple
    then get it replaced through apple

  • I was sent pi- you know 3.14159 but a lot more characters, and it froze my ipad messages app, when ever I open it, it's just a blank screen and it eventually crashes!:( how can I fix this? I've tried a lot of stuff plz help

    It's froze my ipad messages app. Plz help tell me what to do.

    You can backup the iPad and then do a restore to factory condition which will completely wipe it: Settings > General > Reset > Erase All Content and Settings.  But, before doing that remember, it completely erases everything.
    You then have to restore from a backup...if you have a backup from before the bad message, you can use that and be fine.  If not, you would be better off setting up the iPad as new and then redownload your apps and music...you can do that by going to the app store and itunes and tap the Purchases button and redownload everything.
    You will loose your photos and email, and such in the process, however.  If you have iCloud, put the photos in PhotoStream and then use that to put them back on the iPad.
    Without a good backup from just before the bad message, erasing is going to cause you a lot of work.

  • I was updating my iphone to ios 8 and it went into recovery mode. i went onto itunes to fix it and it said i needed to update my phone. when i clicked on it it said it would take 500  hrs and kept going on, then it would crash. plz help. :(

    yesterday i tried updating to Ios 8. i new there were going to be some problems but i decided to do it. i started the update and less than a half hour into it my phone completely crashed.it went into recovery mode so i connected it to iTunes. i hit restore and update . it gave me and estimated time that kept going up. finally when it got to 800 hours it stopped and said an error occurred. i tried it again and the same error occurred. i am very disappointed in this because i greatly need my phone for school and other important things. i wasn't gonna wait that time anyway. i would like to know if there is anyway i don't have to update, get out of this screen without waiting forever, speed up the time, or get my computer to not crash when it gets to so many hours. (i have windows) plz help me out asap!!!

    I have experienced a similar error with the iPhone 4S.  The new version of iTunes will not let me restore the phone, it must be updated and nothing appears to be happening.  Suffice it to say I am not amused.  Apple needs to work this out - I had trouble updating to 8.0.2 as well.

  • Had 1418 error.formatted as fat.not fat32.now ipod doesnt work.why?plz help

    The iTunes keeps saying that:
    "The iPod "IPOD" cannot be updated. The disk could not be read or written to"
    "The iPod "IPOD" cannot be updated.
    And when I tried to restore it.
    "The iPod "IPOD" could not be restored. An unknown error occurred (1418)"
    thats a dreaded problem and i researched at many forums on how to solve it.....
    before reading ur reply....there were some other replies that i read.....
    which told me to format my ipod into fat partition...and not fat32 partition....then we had to update it and then restoring it would be possible........
    that was the only article which i came across and which had a solution to 1418 problem......
    so i began my work....
    but as soon as i formatted my ipod shuffle second generation into fat partition.......
    i restarted my comp...and then.the ipod is no longer working.......
    if i push it to on......then there is a constant green light on it which does not go off even if i connect it to comp. using the dock provided.......
    if i put it off,the green light goes off....
    ideally when an ipod shuffle is connected to pc..there is an orange light that starts blinking ,that shows that the ipod is being charged.
    but now when i connect mine.....
    the green light blinks only once......and then nothing happens...
    the device isnt working and so i cant even solve my 1418 problem ,as now i even have the solution.......
    help me plz....
    its really urgent....
    its been just a month my uncle gifted me this ipod ...he stays in north carolina........and i stay in india.....
    i dont even know if there are service centres of apple available in mumbai.and if they are,whether they are trust worthy or the ipod that i send to them might never to me and get stolen or something.....somebody might just keep it and say that its lost.......mumbai is not trustworthy.
    but if there is a recognized apple service centre then i would want to go there and get my ipod repaired....i have one-year warranty with me.......but i dont know if the warranty of a product bought in north carolina works in india......
    i cant throw this ipod....cause its my first ipod and it has hardly been time that i got it...its too early for me to throw it.....
    i dont know why the ****.....cant i connect it to the comp...
    i tried the following: after getting 1418 read and write error...:
    reinstalled the itunes 7.0.2
    reinstalled the drivers......
    reset the ipod shuffle...
    restarted my computer several times.....
    checked the cable....
    plugged the usb cable onto another port...
    scanned the comp for viruses......
    now the only thing left is that i think.....there can be a problem with the jack where the dock is plugged.....
    maybe thats the reason my ipod isnt working...
    even if i formatted into fat partition rather than fat32 partition,it should atleast be connected......
    should atleast charge.....
    should atleast be detected......
    my ipod is not even getting detected by the comp as any unknown device also.....forget as an ipod....
    i just shouldnt have formatted it...
    although i think....that formatting it did not lead to this problem......
    please help me.......
    urgently...........
    plz.....
    plz......send ur reply fast..plz help me.........
    get this ipod to work......
    i will fix the 1418 error myself....
    just get this device to work....so that comp starts detecting that i have connected something thru usb.....

    On top of the two suggestions already given, make sure that the drive letter being assigned to the ipod when you plug it in in windows is not also a drive letter being assigned to another drive. I've heard that this happens occasionally and can cause all kinds of conflicts, from problems you are describing to lockups when trying to sync.
    I would also try it on a different computer to see if that helps. Maybe you've got a friend or a computer at work that you can install itunes on and give it a shot there. This will let you know whether it's a problem with your specific computer or if it's a problem with the ipod.
    The fact that it runs in Windows and you were able to reformat the flash memory stick tells me that the Ipod is working, but that something on your computer is not.
    P.S. Obviously you've had it for 90 days, So I must assume that the USB port is working correctly. Otherwise the Ipod's battery would have drained by now. So I don't believe it is a hardware issue. So move past that for right now and look to your computer's settings for the answer.

  • 500 internal server error..plz help

    hi,
    since i started working on oracle apps...this forum has proved itself alt helpful...
    i have performed a single node installation successfully over my laptop on win xp sp2 os.
    alt of error generated bt in da end i always found a solution here...
    guys like hsawwan are a great asset for this forum.....
    may GOD reward u guys fr da job u r doing by helping others....
    my recent problem has left me in a fix....
    problem:
    after a successful installation my system was working very fine ... i used the application and every thng seemed to work ok...
    bt thren i restarted my pc nd this chaos started ....
    first m receiving
    500 internal server error...
    thn a blank screen
    now again 500 internal server error...
    steps i performed
    1-restarted db listener
    2-Disabled Distributed JVM Cache by changing "LONG_RUNNING_JVM=" from "true" to "false" in the oc4j.properties.
    reference =metalink Doc ID: 761869.1
    plz help me get rid of this error.....
    m nt an xpert .m a newbie.. so if u xplain in plain simple word i'l b grateful....
    thanx thanx thanx in advance ....

    HI
    Sorry for late response ...
    actually i performed the installation of 12R ON MY LAPTOP...
    SORRY for posting it in 11I INSTALLATION issues...
    my problem was solved by this action plan...
    i am writing it here for some future reference ...
    open a new shell and set your apps environment
    then goto following directory -------->>> cd $ADMIN_SCRIPTS_HOME
    stop this service ---->>> adopmnctl.sh stop
    make a check if it is really down--------->>> ps -ef | grep <USER> grep opm (optional)
    delete the following:
    rm -fr $INST_TOP/ora/10.1.3/j2ee/oacore/persistence/* (optional but it would be better if u perform it)
    rm -fr $INST_TOP/ora/10.1.3/j2ee/oafm/persistence/*
    rm -fr $INST_TOP/ora/10.1.3/j2ee/forms/persistence/*
    again start the services ------>>> adopmnctl.sh start
    restart your machine ....
    this solution worked for my pc ...
    note ** solution may differ for different users ....
    thanks a lot helios and hsawwan for ur support .... :)

Maybe you are looking for

  • S video output on windows 7

    Hi All, i have HP Pavilion dv5131eu. i have upgraded to windows 7. i have connected to s video cable to the appropriate s video output. now i try to change display to s video and i cannot define it seems that windows 7 does not recognize this output.

  • I need help with my mapping - CL_MAPPING_XMS_PLSRV3-ENTER_PLSRV

    hi, guys, i need help with my mapping, i dont know this error (i not speak english) <Trace level="1" type="B">CL_MAPPING_XMS_PLSRV3-ENTER_PLSRV</Trace> <Trace level="2" type="T">......attachment XI_Context not found </Trace> <Trace level="3" type="T"

  • Password protecting PDF from copy/paste, not secure in Mac "Preview"?

    I created a book for someone and sent a PDF of it.  I secured it with a password so it can be printed but not edited or copy/paste compatible.  When I open the PDF on Acrobat on my PC, its locks me out as it should.  I sent to friend and of course it

  • ABAp program terminated before Start selection event

    Hi all, I have the issue, for one user with window vista, my program always teminate before program go to start-of-selection event. But if I use my login name in his PC, the program will run perfectly. And If he use his user ID in other PC the progra

  • Where can I file bug reports?

    Hi all, Just got back from Day 3 of the Toronto Code Manuvers (Kick ass show). I've been playing with Creator 2 early access and have found many bugs that I want to check on/report on. Can someone please tell me where I can get/set bugs? Cheers