I cann't create dispather.

I have installed Identity Center, Runtime Components and VDS, on Identity Center configured JRE 1.4.2.x, but in moment of the dispatcher test appears the following message.
The system cannot find the path specified.
I already changed the path of JRE to JVM and no run.

Hi Claudio,
Have you created the dispatcher scripts?
Just to pick up on the earlier post. As far as i'm aware it's okay to run earlier versions of Java. I run J2SE 1.4.2 on my runtime servers without any issues.
Gareth

Similar Messages

  • Cann't create db

    Hello.
    after applyingg patch ( 805 on RH6).
    all seems to be ok. but I cann't create DB using installer.
    it just hsow me installetion menu and ask me to choose what
    should I install
    that's all
    help pls.
    ANdrey
    null

    ANDrey (guest) wrote:
    : Hello.
    : after applyingg patch ( 805 on RH6).
    : all seems to be ok. but I cann't create DB using installer.
    : it just hsow me installetion menu and ask me to choose what
    : should I install
    : that's all
    : help pls.
    : ANdrey
    null

  • VS2008 cann't create NI MFC Application.

    I have setup measurement studio 2013 evaluation for VS2008.But I cann't create NI MFC Application project in VS2008, why? It prompts that the NI MFC Application project creating fail.

    sudheshna - Assuming that you mean the kind of users that you can create/manage with the HTML DB Administration application, there are only three combinations of privileges: admin+developer+user, developer+user, and end user. Admins can create accounts having any of the three privilege combinations. To extend this model, you'd have to build your own account repository and manage it with your own application. Then you could include admin and user management links within in your applications, depending on the privileges of the end user.
    Scott

  • BAPI_PO_CREATE1 multiple schedule lines cann't create ECC500

    Dear all:
       I want to use BAPI_PO_CREATE1 to create more than one purchase order schedule item for a purchase order item .However, the system either posts the first purchase order schedule line or the BAPI terminates the posting with an error message. I have found SAP NOTES (828582) try to solve the problem . But it was no use.
       My SAP system component information is SAP_APPL     500     0012     SAPKH50012 .
       I attach test program as follows:
       REPORT  ZPO_CREATE.
    DATA: HEADER LIKE BAPIMEPOHEADER,
          HEADERX LIKE BAPIMEPOHEADERX,
          EXPHEADER LIKE BAPIMEPOHEADER,
          TESTRUN  LIKE BAPIFLAG-BAPIFLAG,
          ITEM LIKE BAPIMEPOITEM OCCURS 0 WITH HEADER LINE,
          ITEMX LIKE BAPIMEPOITEMX OCCURS 0 WITH HEADER LINE,
          POSCHEDULE LIKE BAPIMEPOSCHEDULE OCCURS 0 WITH HEADER LINE,
          POSCHEDULEX LIKE BAPIMEPOSCHEDULX OCCURS 0 WITH HEADER LINE,
          POTEXTHEADER LIKE BAPIMEPOTEXTHEADER OCCURS 0 WITH HEADER LINE,
          POTEXTITEM LIKE BAPIMEPOTEXT OCCURS 0 WITH HEADER LINE,
          RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    START-OF-SELECTION.
    *<<<< HEADER
      HEADER-COMP_CODE = '1000'.
      HEADER-DOC_TYPE = 'NB'.
      HEADER-CREAT_DATE = SY-DATUM.
      HEADER-CREATED_BY = SY-UNAME.
      HEADER-VENDOR = '0000000063'.
      HEADER-LANGU = SY-LANGU.
      HEADER-PURCH_ORG = '1000'.
      HEADER-PUR_GROUP = '100'.
      HEADER-CURRENCY = 'RMB'.
      HEADER-DOC_DATE = SY-DATUM.
      HEADERX-COMP_CODE = 'X'.
      HEADERX-DOC_TYPE = 'X'.
      HEADERX-CREAT_DATE = 'X'.
      HEADERX-CREATED_BY = 'X'.
      HEADERX-VENDOR = 'X'.
      HEADERX-LANGU = 'X'.
      HEADERX-PURCH_ORG = 'X'.
      HEADERX-PUR_GROUP = 'X'.
      HEADERX-CURRENCY = 'X'.
      HEADERX-DOC_DATE = 'X'.
    <<<< ITEM
      CLEAR ITEM.
      ITEM-PO_ITEM = '00010'.
      ITEM-MATERIAL = 'K01060'.
      ITEM-PLANT = '1000'.
      ITEM-QUANTITY = 20.
      ITEM-PO_UNIT = 'LIN'.
      ITEM-NET_PRICE = 310.
      ITEM-TAX_CODE = 'J2'.
      ITEM-PO_PRICE = 1.
      ITEM-FINAL_INV = 'X'.
      ITEM-IR_IND = 'X'.
      APPEND ITEM.
      ITEMX-PO_ITEM = '00010'.
      ITEMX-MATERIAL = 'X'.
      ITEMX-PLANT = 'X'.
      ITEMX-QUANTITY = 'X'.
      ITEMX-PO_UNIT = 'X'.
      ITEMX-NET_PRICE = 'X'.
      ITEMX-TAX_CODE = 'X'.
      ITEMx-PO_PRICE = 'X'.
      ITEMX-FINAL_INV = 'X'.
      ITEMX-IR_IND = 'X'.
      APPEND ITEMX.
    **************schedule lines   doesn't effect or make error when post po
    POSCHEDULE-PO_ITEM = 10 .
    POSCHEDULE-SCHED_LINE = 1.
    POSCHEDULE-DELIVERY_DATE = SY-DATUM .
    POSCHEDULE-QUANTITY = 5 .
    APPEND POSCHEDULE.
    POSCHEDULE-PO_ITEM = 10 .
    POSCHEDULE-SCHED_LINE = 2 .
    POSCHEDULE-DELIVERY_DATE = SY-DATUM .
    POSCHEDULE-QUANTITY = 15 .
    APPEND POSCHEDULE.
    POSCHEDULEX-PO_ITEM = 10 .
    POSCHEDULEX-SCHED_LINE = 1.
    POSCHEDULEX-DELIVERY_DATE = 'X' .
    POSCHEDULEX-QUANTITY = 'X' .
    APPEND POSCHEDULEX.
    POSCHEDULEX-PO_ITEM = 10 .
    POSCHEDULEX-SCHED_LINE = 2.
    POSCHEDULEX-DELIVERY_DATE = 'X' .
    POSCHEDULEX-QUANTITY = 'X' .
    APPEND POSCHEDULEX.
    CALL FUNCTION 'BAPI_PO_CREATE1'
        EXPORTING
          POHEADER                     = HEADER
          POHEADERX                    = HEADERX
          NO_PRICE_FROM_PO             = 'X'
        IMPORTING
         EXPHEADER                    = EXPHEADER
        TABLES
          RETURN                      = RETURN
         POITEM                       = ITEM
         POITEMX                      = ITEMX
         POSCHEDULE                   = POSCHEDULE
         POSCHEDULEX                  = POSCHEDULEX 
      LOOP AT RETURN .
        WRITE : /  RETURN-TYPE,
                   RETURN-ID,
                   RETURN-NUMBER,
                   RETURN-MESSAGE.
        CLEAR RETURN.
      ENDLOOP.
      IF NOT EXPHEADER IS INITIAL.
         CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'  .
      ENDIF.
      I am full of grateful for you can solve my problem . Thanks a lot!
      Best regards.
                                       Daniel fu  2006-08-27

    I guess u need to add
    POSCHEDULEX-PO_ITEMX = X.
    before appending the table Parameter POSCHEDULEX
    One for each append statement on table internal table POSCHEDULEX
    Regards
    Alok Pathak

  • Cann't create compound field

    Dear,
        I used mdm import manager import the Main table,   I do follow mapping step:
         a)Map the field Info Record source field to Price Information [Purchasing Info Record ID]  destination field.
         c) Map the field Purchasing Organization source field to Price Information [Purchasing Organization] destination field.
         d) Map the field Scale Value source field to Price Information [LowerBound] destination field.
      when I  Rightu2013click in the source hierarchy to the left on the source field Scale Value and choose the option Create Compound Field  ,But the "Create Compound Field" is disable,Can you tell me why?
    Edited by: bill yang on Aug 26, 2010 4:17 PM

    Hi Bill,
    First of all make sure that in your Qualified table, you have all these three non-qualifier fields as Display field.
    For creating a compound field, your all source field and values should be mapped with target fields Qualified table non-qualifier fields. Once it is done you need to select all these the source fields not only Scale Value.
    Please select all these source fields Info Record, Purchasing Organization & Scale Value with the help keyboard Ctrl + A and then right click, it will show you enabled creation of Compound field.
    Kindly revert with result.
    Regards,
    Mandeep Saini

  • Cann't create 'Requirements' 'Tests' and 'Issues'

    Hi,
    I login on Test Manger (http://localhost:8088/otm) as default user, (before I have created new project)
    I'm trying to create 'Requirement', ' Test' or 'Issue' but after 'Save' button pressed I got an error:
    Exception Occurred !
    An Unknown Exception Occurred !
    Who can explain what is wrong?
    Thank you.
    Error screen:
    http://ikelk.lt/storage/images/000/039/031/39031/original_img.JPG
    Edited by: mctr on 2010.12.13 06.57

    I have checked log file:
    9:36:14:609 - -- Logging in test
    9:36:14:609 - -- Loading Users WHERE (Deleted=0) And (lower(UserName) LIKE lower('test'))
    9:36:14:656 - -- Loading TO_Project WHERE Name LIKE 'TEST-project' And Deleted=0
    9:36:14:656 - -- Loading vRequirement WHERE RequirementId=38
    9:36:14:703 - Error parsing xsl file: C:\OracleATS\OTM\files\HtmlView.xsl
    9:36:14:703 - *** ERROR: Error parsing xsl file: C:\OracleATS\OTM\files\HtmlView.xsl
    9:36:14:703 - TMJava getNodeHtml(): error writing file
    and navigated in C:\OracleATS\OTM\files
    there is no HtmlView.xsl
    DB and OATS installation passed succesfully, so why HtmlView.xsl file is missing?
    Where I can fing these missing files?
    Thanks in advance!

  • IS IT POSSIBLE TO CREATE A PO WITHOUT PLANT

    HELLO EXPERTS,
    I have following business scenario,,
    for a material X , price for plant A is 20 rupees and for other plant 25 rupees.
    I have created one info record for that .
    PLANT SPECIFIC INFO RECORD (plant A) 20 rupees
    INFO RECORD (WITHOUT ANY PLANT )   25 rupees
    but when i going to make a PO it will ask for plant , and after i giving the plant name it will pick the plant specific value(20 rupees). So I cant able to do the 2nd scenario, i mean ..with 25 rupees.
    As I know that it is not possible to make a purchase order without PLANT.
    SO IS THERE ANY ALTERNATIVE WAY TO SOLVE THIS PROBLEM.
    again in my screen layout setting ( standard purchase order NB / NBF ). IN BASIC item PLANT HAS OPTIONAL ENTRY NOT REQUIRED ENTRY.Than why it is asking that plant is mandatory when i m making a standard PO.
    plz hepl me
    regards

    Hi,
    Without entering the Plant you cann't create the PO. Plant is mandatory.
    If your Materials is maintained in 2 Plant then the Price in both the plants is different (20 & 25)
    So in the same PO you can enter the 2 line items with the same material and enter the 2 plants respectiviely with the net price as 20 & 25 (or will pick from Info record)
    If you want same material is valuated in 2 price in single plant you can use the Split valuation method ( Val category & valuation type )
    Rgds
    Chidanand

  • Why cannot create instance to an abstract class?

    Dear Developers....
    abstract class can create be its own constructor but why they didn't create object

    We cann't create an object for abstract class
    because they have abstract methods which depends on
    its subclass for its implementation. if it is
    possible to create the object for abstract class
    means then you can call a method which has no
    implementation(abstract methods) which is a illegal
    one thats what the ruleWhat about classes with no abstract members?
    public abstract class A {}No danger of accessing anything illegal here.
    The rule is far more simple. By declaring a class as abstract, the creator defines that no instances of this class may exist. Period. If you could create instances, the class wouldn't be abstract anymore, per definition. It's like asking why a green light doesn't shine red. If it would, it wouldn't be green anymore.

  • Can't open period-GLOOAP try to create ccid with Seg1 invalid by Sec Rules

    Hi,
    12 months ago, we done a accounting recoding (by legal changes) in two portuguese company which belong our business group. We only change segment1 (17 value by 10... value 10 was desactived by security rules) and we create new ccid's by changing of accounts (for example,.. 10.590000.000.00.000.00000 changed to 17.561000.000.00.000.00000)... Also, we change all accounting configuration in all modules (PO, GL, AP, AR,..) for adapting to new needs.
    It hasn't had any incident about this change.
    However, now, when we try to open a new period (00-11), process for opening period fail... It only occur in one company which we did this change (in other portuguese company, it wrok fine).
    the log of process indicates that process cann't create a ccid (i think it is trying to create it dinamically) but the question is that segment1 (10) is desactived by security rules (new ccids should be created with segment1 ='17').
    My question is: Where is process extract segment1 for trying to create this new ccid? this process is Spawned and I cann't opened it.
    This problem has only occured when we try to open 00-11 period... in before periods it opened fine.
    Best Regards,
    Ricardo

    Hi Octavio,
    I have activated a trace but it indicate same error:
    SELECT /* $Header: fdfval.lc 115.46 2003/07/10 16:04:31 hgeorgi ship $ */
    U.flex_value_rule_id, R.error_message,
    L.include_exclude_indicator, L.flex_value_low,
    L.flex_value_high
    FROM
    fnd_flex_value_rule_usages U, fnd_flex_value_rule_lines L,
    fnd_flex_value_rules_VL R WHERE U.flex_value_set_id = :vsid AND
    U.application_id = :applid AND U.responsibility_id = :respid AND
    U.flex_value_rule_id = L.flex_value_rule_id AND U.flex_value_rule_id =
    R.flex_value_rule_id ORDER BY U.flex_value_rule_id,
    L.include_exclude_indicator desc
    call count cpu elapsed disk query current rows
    Parse 1 0.01 0.00 0 0 0 0
    Execute 1 0.01 0.01 0 0 0 0
    Fetch 1 0.00 0.00 0 6 0 2
    total 3 0.02 0.01 0 6 0 2
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer goal: CHOOSE
    Parsing user id: 181
    Rows Row Source Operation
    2 SORT ORDER BY
    2 NESTED LOOPS
    2 NESTED LOOPS
    2 NESTED LOOPS
    2 INDEX RANGE SCAN (object id 32506)
    2 INDEX UNIQUE SCAN (object id 32498)
    2 TABLE ACCESS BY INDEX ROWID FND_FLEX_VALUE_RULES_TL
    2 INDEX UNIQUE SCAN (object id 32501)
    2 INDEX RANGE SCAN (object id 32504)
    SELECT code_combination_id
    FROM GL_CODE_COMBINATIONS CC
    WHERE
    SEGMENT1 = '10'
    AND SEGMENT2 = '561000'
    AND SEGMENT3 = '000'
    AND SEGMENT4 = '00'
    AND SEGMENT5 = '000'
    AND SEGMENT6 = '00000'
    AND CHART_OF_ACCOUNTS_ID = 50235
    AND TEMPLATE_ID IS NULL
    call count cpu elapsed disk query current rows
    Parse 1 0.02 0.02 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 1 0.00 0.06 14 18 0 0
    total 3 0.02 0.08 14 18 0 0
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 181
    Rows Row Source Operation
    0 TABLE ACCESS BY INDEX ROWID GL_CODE_COMBINATIONS
    21 INDEX RANGE SCAN (object id 850252)
    begin fnd_file.close; end;
    I have could read that Open Period program looks in the GL_BALANCES and it will attempt to use/Create the retaining account combination for each balancing segment value showing activity but retaining account combination is 17-561000-000-00-000-00000 ...
    Best Regards

  • Can't create consumers CRM006

    Hello,
    I'm working with CRM 7.0. I can create Private Accounts but I can't select Role CRM006.
    It doesn't appear in the Roles List Assigment Block. I review the code of that field through Component Workbench and It has code to delete all CRM006 based Roles.
    So my question is... How cann I create Consumers in SAP CRM 7.0?
    Am I missing any customizing?
    I notice I can add this role to Contact Persons but  I can't add it to Individual Accounts. Can you explain this behavior?
    Best Regards
    JM
    Edited by: urjose on Nov 21, 2009 2:57 AM

    Try the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete the contents of the User/Home/Library/Caches/com.apple.iWeb folder
    3 - launch iWeb and try again.
    NOTE: In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.
    If you're running Mavericks or Yosemite  go to your Home folder and use the View ➙ Show View Options menu to bring the this window:

  • Can not create user "OPS$domainname\SAPSERVICEC11" in oracle

    Hi all,
    I'm installing SAP R3E 4.7 extension set 2 SR1 on Window 2003 , orcle 9.2 (patch 9.2.0.8.0) after finish CI, DB, DI and try to strat SAP with MMC but disp+work.exe didn't run . And the error is "ORA-01017: Invalid username/password; logon denied"
    After that i find out solution from SAP Note400241. I need to create user  "OPS$domainname\SAPSERVICEC11" but my domain name is 17 charecters long. That make the username is too long (more than 30 characters). So I cann't create this user.
    How can i solve this problem?
    BR,
    Prachya

    > Hi Eric,
    >
    > With the note: 400421 I am facing the following
    > problems..... Could you please help me out as where I
    > am going wrong?
    >
    > 1. I could connect through " connect /@sid"
    <b>-> OK, then the "OPS$" exists</b>
    >
    > 2. select granted_role from dba_role_privs where
    > grantee='ops$_user';
    > No Rows found..
    >
    > 3. select owner from dba_tables where
    > table_name=T000
    >
    > gives me SAPDEV
    >
    > That means the owner is SAPDEV and what is SAPUSER
    > ????
    <b>NO, this is telling you that the schema name is SAPDEV, only. We will need it later</b>
    >
    > general checks:
    >
    > select owner from dba_tables where table_name=SAPUSER
    >
    > gives me OPS$DEVADM and OPS$SANDBOX\DEVADM
    <b>The name of your server is SANDBOX, but you mentioned before that you had a domain longer than 17 characters. This does not match.
    Have you performed a DOMAIN or a LOCAL installation?
    For this output it seems that it is local</b>
    >
    > so if t000 has SAPDEV then should I check the above
    > command for SAPDEV instead of SAPUSER???? ..
    <b>NO. The table name is SAPUSER</b>
    >
    > 3. select owner, table_owner, table_name from
    > dba_synonyms wghere synonym_name=SAPUSER
    > give
    > OPS$SANDBOX\SAPSERVICEDEV OPS$SANDBOX\DEVADM SAPUSER
    >
    > why here SAPUSER is present..
    <b>
    Do you know what is a synonym? or what have you queried?
    Select owner, table_owner, table_name from
    dba_synonyms wghere synonym_name=SAPUSER
    It is giving you the
    -> Synonym OWNER  -> OPS$SANDBOX\SAPSERVICEDEV
    -> Table OWNER        -> OPS$SANDBOX\DEVADM
    -> TABLE NAME         -> SAPUSER
    This data is correct.</b>
    >
    > Do I need to change the T000 table( update it to
    > SAPUSER)???
    <b>NOOOOO. Leave teh "normal" tables alone</b>
    >
    > I you know that have copied the data files (OS level)
    > from anpther DEV server to sandbox..( SID same). It
    > had in DBA_USER with its hostname like
    >
    > OPS$HPSERVER\SAPSERVICEDEV
    > OPS$HPSERVER\DEVADM
    >
    > So I thought it must be bcos of this so I run the
    > script oradbusr.sql to create
    > OPS$SANDBOX\DEVADM user and managed to create it.
    > Also managed to get OPS$SANDBOX\SAPSERVICEDEV users.
    > The grant to them is also okay.. But then also not
    > able to connect through SAP.
    >
    > Please suggest where I am going wrong and what to
    > change...
    >
    > Regards
    > Prashant
    <b>So, Looking at the initial error ( ora-1017 ) and the output of the queries I wonder if you have changed the DB password.
    I do think so. and I think you did it at DB level ( alter user identified by ... )
    Then the problem seems to be that you do not have the password in SAPUSER table in sync with the password you changed.
    In SAP ABAP systems you cannot change the password at DB level. You have to use BRCONNECT to do so, it will keep the passwords in SYNC:
    brconnect -u system/<password> -f chpass -o <sapowner> -p 
    <password>                                                
    try it. then execute R3TRANS -x and see if it can connect
    </b>

  • How to create Locations, and ThreadReferences

    Hi there,
    I'm trying to write a personalised debugger but am having many teething problems getting started.
    What is the procedure to create break points. I see the EventRequestManager.createBreakPointRequest(Location l) method, but see no obvious way to create the required Location it needs. And similarly, in creating a step requests, with the EventRequestManager.createBreakPointRequest(ThreadReference t, ...), how do I create ThreadReferences?
    I have looked at the Trace.java demo in the examples jar supplied with the sdk, but this hasn't helped me enough.
    Also, another question. Coming from expeerienced jdi programmers what would be a good way to connect a program to the output of a debugger (a graphical execution animator)? I have thought about having Lists of certains elements particular to the debugged process, that are set by the debugger, which the external program uses. However I do not know of obvious problems that may crop up - please, if you know of any that I'm bound to fall into - could you inform me of them? Thanks mates!!
    Later no doubt!!

    I'd like to note you cann't create neither Location nor ThreadReferences, but you can get these objects from VirtualMachine. I suppose you are able to get a mirror of VirtualMachine.
    To create BreakpointRequest make, for example, the following:
         List classes = vm.classesByName(yourClassName); // vm - instance of VirtualMachine
    //Let's assume there is alone class with such name then
         ReferenceType refType = (ReferenceType )classes.get(0);
         List methodsList = refType.methodsByName(yourMethodName);
    //Let's assume there is alone method with such name then
         Method method = (Method )methodsList.get(0);
         List locsList = method.locationsOfLine(neededLineNumber);
         Location location = (Location )locsList.get(0);
         // You've got the location
         EventRequestManager evm = vm.eventRequestManager();
         BreakpointRequest request = evm.createBreakpointRequest(location);
    And similarly, you may get ThreadReferences:
         List threadsList = vm.allThreads();
         // find thread eg. know by name
         ThreadReference thread = (ThreadReference )threadsList.get(index);
         EventRequestManager evm = vm.eventRequestManager();
         StepRequest request = evm.createStepRequest(thread, StepRequest.STEP_LINE, StepRequest.STEP_OVER);

  • PS CS3 on windows 7 (64bit)

         Hello,
    I want to use a filter and get an eror message.
    Filter -> structure -> korrel -> "u kunt niet meer virtuele tegels toewijzen"
    Effects -> structure -> grain -> "You cann't create any virtual tiles"
    So I cann't use this filter option.
    I hope someone can help me with this problem.
    Thanks
    Desiree

    Hello Chris,
    There is 35,5GB free space on C, total diskspace is 74,4GB.
    That could be enough?
    Desiree
    edit:
    Dry brush, sketch, structure, distort don't work
    but this filters:
    Artistic , Brush strokes , Pixelate  , Render,  Add noise, Stylize, scharpen tool, fade
    do work

  • JDBC for Oracle 8.1.5

    Hello Guys,
    I have oracle 8.1.5 with java 1.2.2. But, the problem is that i cann't connect to oracle through jdbc. Problem is that it cann't create the jdbc. Can any one help me?

    As far as I am aware - and I may be wrong - there is a bug in 8.1.5 with JDBC.
    Apparently there is a patch around somewhere for it...

  • Can't write file on server using Servlet

    Dear programers,
    I have written a little method that creates a simple file. This method works fine when I execute it on my PC but it doesn't work when the servlet execute it.
    For example:
    public void test(){
    FileOutputStream fileHTML = null;
    String html_file_name = "\\\\MyServer\\dir\\filename.html";
    try{
    //create new HTML file
    fileHTML = new FileOutputStream(html_file_name);
    String text = "Hello World";
    fileHTML.write(text.getBytes());
    fileHTML.close();
    }catch(IOException ex){
    System.err.println(e.getMessage()+ " Cann't create new HTML file!");
    I don't get any exception, it seems that the file is written to the server but it doesn't.
    What can be the problem?

    a) You do mean Servlet not Applet don't you? Applets aren't allowed access to the file system. If it's an applet open the "java console" window on the browser. You'll probably see a security exception.
    b) If it's really a servlet any errors are likely to turn up on the server's log files. Check those. You file path doesn't contain a drive letter so maybe the drive letter is wrong in the servlet environment.
    c) Always use Writers to output text, not Streams. That's not the source of your problem but it make for much messier code.

Maybe you are looking for

  • WIN 8 drivers not for my new HP 4635 office jet not on my HP Smarttouch 14 " notebook

    Unable to get my printer to accept wireless print commands from my HP Smarttouch 14" notebook.

  • Clip Notes aspect ratio wrong

    I have AE CS3 on an Intel 8. Would like to use Clip Notes for low-rez approvals, but when I render a Quicktime movie in 3 x 4 aspect ratio (like most video) when I open the pdf in Acrobat Reader 8.1.2, it stretches it to 16 x 9. Checked all the prefe

  • My mac Pro can't boot OS X, if it connected  with iPod video

    Hi All~ I have received the new Mac Pro, but I don't know why..... if my iPod video(60G) had connected with USB ports of Mac Pro, then I can't boot my OS system.... that seems the Mac Pro can't reach my hard disk, because the apple log doesn't appear

  • My PC crashed.

    How can I transfer my music from my I pod Classic to a new PC: My old one crashed last week and I'm afraid to loose all the music when do a trial on myself.

  • RG 23 D register updation

    Hi experts, we have Modvat sales and CST/VAT sales these are update in RG 23 D register. how i can proceed and what development should i start pls help me in this regard Meera