Mapviewer and file directory for apps

Hello,
i have mapviewer 11 EA1 pre-deployed and oracle 10.2 data base. I want to build up a little data mart with an interface to mapviewer to use geographical card material. Every query should be handled inside a browser. So i want to use servlet and jsp.
I've built a jsp which works well within jdeveloper(embedded oc4j client). I can see the card material within the brower. Now my question is where in the file system(windows xp) can i put my jsp and servlet to make queries from inside of a browser and "it runs of its own". If i would use tomcat it's something like localhost:8080/gis but how is it in combination with mapviewer. I don't want to separate the servlets for my data mart and the gis-query. All should be in one directory, naturally with subdirectories.
Hopefully, someone can help me
thanks a lot

Hi,
/Users/YourUsername/Library/Safari/Bookmarks.plist
Copy it to the new machine and you should be fine.

Similar Messages

  • Passing the file name and file type for mime_download

    HI All,
    Can You Please let me know how to pass the parameters file name and file type for mime_download.
    Thanks in Advance.
    Regards,
    Haritha.

    Hello Haritha,
    Please see the SAP help:
    http://help.sap.com/saphelp_nw70/helpdata/en/46/9bd97240b81e5be10000000a1553f6/frameset.htm
    Edgar

  • When submitting app and Reserv Name for App...

    When submitting App to Windows Store and Reserv Name for App... Is this the only chanse you have for a name, or can you change it later.
    It is my first app, I want it in several markets, With local names...If possible...
    But I am not sure what to Call it, so I am hopeing it is not an ONE TIME thing.
    Grettings from Norway -Tonheim-

    Hi Dev,
    It is not a onetime thing and the following article should assist you if you would like to change the name after publishing
    http://msdn.microsoft.com/en-us/library/windows/apps/hh694077.aspx
    The heading you are looking for is “To rename an app that has already been published”
    This article also provides some supplemental information for you on the same subject -
    http://blogs.technet.com/b/adventuresinappdev/archive/2012/11/19/changing-your-published-windows-store-app-name.aspx
    Thanks!

  • Dynamic outbound payment file directory for  in Payment Profile in R12?

    Hi All,
    Is it possible to have the "outbound payment file directory" setup in R12 Payment Process Profile dynamically?
    Ideally we would like to store the value in a profile and refer the lookup in this field, rather than giving it hard coded, like /net/common/CM_UTL_DIR/EBSTST
    Please let us know of workarounds also, if any.
    Thanks!
    Manu

    Manu,
    I do not think it is possible -- You may log a SR and confirm this with Oracle support.
    Where Can Be Found The Output File For The Transfer To The Bank [ID 730548.1]
    How To Change Nacha Payament Output Directory And Name [ID 786007.1]
    Thanks,
    Hussein

  • How get SharePoint Library Folders and Files directory structure in to my custom web site.

    Hi,
    Actually my requirement is, I would like to pass site name and document library name as a parameter and get a folders and files from the document library and form the directory structure by using Treeview control in my web site.
    How should i get? Using Web service / object model?
    Web service would return the dataset as a result so from that how could i form the directory structure using Treeview control.
    I will select specified files and folders then i ll update sharepoint document library columns for corresponding selected files.
    Can anyone help over this, that would be great appreciate.
    Thanks in Advance.
    Poomani Sankaran

    Hello,
    Here is the code to iterate through sites and lists:
    //iterate through sites and lists
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite site = new SPSite(webUrl)) {
    using (SPWeb oWebsite = site.OpenWeb())
    SPListCollection collList = oWebsite.Lists;
    foreach (SPList oList in collList)
    {//your code goes here }
    Then use RecursiveAll to get all files and folders.
    http://www.codeproject.com/Articles/116138/Programatically-Copy-and-Check-In-a-Full-Directory
    http://sharepoint.stackexchange.com/questions/48959/get-all-documents-from-a-sharepoint-document-library
    Here is the full code:
    http://antoniolanaro.blogspot.in/2011/04/show-document-library-hierarchy-in-tree.html
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • CL_GUI_PDFVIEWER and files from the App server

    Hi,
    I would liek to use the class CL_GUI_PDFVIEWER  to read files from the app server (transaction AL11) and then to present them.
    it is easy to use the local machine files.
    how can I use the method open_document with a file from there?
    Thanks,
    Itay

    Thanks for the help.
    I tried what you suggested but I get a dump for some reason.
    Can you help?
    This is the dump:
    Exception condition "SYSTEM_FAILURE" raised.
         Program                                      SAPLOLEA                    
         Include                                      LOLEAU10                    
         Row                                          358                         
         Module type                                  (FUNCTION)                  
         Module Name                                  AC_FLUSH_CALL_INTERNAL      
    This is the program:
    REPORT zpdftest .
    DATA: g_html_viewer     TYPE REF TO cl_gui_html_viewer,
          my_main_container TYPE REF TO cl_gui_custom_container,
          entry1(100) TYPE c,
          entry2(100) TYPE c.
    DATA: okcode TYPE sy-ucomm,
          gt_pdf TYPE STANDARD TABLE OF string,
          wa_pdf TYPE string,
          g_url(2048)  TYPE c
    START-OF-SELECTION.
      SET SCREEN 100.
    *&      Module  pbo_0100  OUTPUT
    MODULE pbo_0100 OUTPUT.
      SET PF-STATUS 'STATUS100'.
      SET TITLEBAR  'TITLE100'.
      IF my_main_container IS INITIAL.
        CREATE OBJECT my_main_container
          EXPORTING
            container_name = 'CUSTOM_CNTL'
          EXCEPTIONS
            cntl_error     = 1
            OTHERS         = 2.
        CHECK sy-subrc IS INITIAL.
        CREATE OBJECT g_html_viewer
          EXPORTING
            parent             = my_main_container
          EXCEPTIONS
            cntl_error         = 1
            cntl_install_error = 2
            dp_install_error   = 3
            dp_error           = 4
            OTHERS             = 5
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        DATA: lv_filename TYPE rlgrap-filename.
        lv_filename = '/PBMGUS/UXA/ABAP/TEST.PDF'.
        OPEN DATASET lv_filename FOR INPUT
                     IN BINARY MODE
        WHILE sy-subrc IS INITIAL.
          READ DATASET  lv_filename  INTO wa_pdf.
          IF NOT sy-subrc IS INITIAL.
            EXIT.
          ENDIF.
          APPEND wa_pdf TO gt_pdf.
        ENDWHILE.
        CLOSE DATASET lv_filename.
        CALL METHOD g_html_viewer->load_data
          EXPORTING
            type                 = 'application'
            subtype              = 'pdf'
          IMPORTING
            assigned_url         = g_url
          CHANGING
            data_table           = gt_pdf
          EXCEPTIONS
            dp_invalid_parameter = 1
            dp_error_general     = 2
            cntl_error           = 3
            OTHERS               = 4
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CALL METHOD g_html_viewer->show_url
          EXPORTING
            url                    = g_url
          EXCEPTIONS
            cntl_error             = 1
            cnht_error_not_allowed = 2
            cnht_error_parameter   = 3
            dp_error_general       = 4
            OTHERS                 = 5
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    ENDMODULE.                 " pbo_0100  OUTPUT
    *&      Module  pai_0100  INPUT
    MODULE pai_0100 INPUT.
      CASE okcode.
        WHEN 'BACK'.
          LEAVE to screen 0.
        WHEN OTHERS.
          CALL METHOD cl_gui_cfw=>dispatch.
      ENDCASE.
      CLEAR okcode.
    ENDMODULE.                 " pai_0100  INPUT

  • How do I specify folder and file options for memory cards in LR4?

    Hello!
    I have read the sections Set import and file-handling preferences and Specify Auto Import settings in the manual. But they don't seem to answer my question. The other stuff that's written about importing files in Lightroom seem to only cover the import of photos to the Lightroom catalog, which is not my primary concern, although I do want them imported to the catalog as well. But before the photos can go to the Lightroom catalog they need to be improted, in other words copied over from the memory card to the local disk drive. Simply put, all I want is for Lightroom to take over the responsibility from Canon EOS Utility and behave the same way when importing/copying files to the local disk drive. How do I set up Lightroom to do just that?
    I just want this type of folder and file structure:
    J:\2010_08_02\IMG_0037.JPG
    J:\2010_08_02\IMG_0039.JPG
    J:\2010_08_22\IMG_0372.CR2
    J:\2010_08_22\IMG_0372.JPG
    J:\2010_11_29\IMG_1405.CR2
    J:\2010_11_29\IMG_1405.JPG
    J:\2011_06_17\IMG_2887.CR2
    J:\2011_06_17\IMG_2887.JPG
    ... etc!
    1. First things first, where the heck do I specify the destination folder for new photos?
    There is an option titled Show import dialog when a memory card is detected under the General tab in Preferences, but there is no folder destination option associated with this.
    2. How do I tell Lightroom to leave original file names as they are (i.e. IMG_2887.CR2) and place them in a new sub-folder (i.e. 2011_06_17) of the destination folder (J:\) named after the capture date of the photo (July 17, 2011)?
    There are a few options under the File Handling tab in the Preferences, but they don't seem to concern the importation of files to the local disk drive.
    3. This maybe should have been the first question really; is Lightroom capable of importing files from the camera or a card reader to the local disk drive at all?
    I sure would expect it to be able to do that, but from the looks of it I am not too confident about that.
    For starters I would like it to just copy my photo files, either directly from camera or from a card reader to a destination folder of my choice, in the same fashion that Canon EOS Utility does it. I don't wat to just import the files to the Lightroom catalog and start working with the files directly from camera or memory card. Hell no! It's not an external disk drive for God's sake!
    Please advise!

    I'm not sure how it is now, but there used to be a dedicated "photo downloader" in Adobe Photoshop Elements at least up to version 6. Is this still part of Photoshop Elements? Or is it just available in Adobe Bridge? I don't remember though if it only imported files to the local disk drive or if it also added them to the library/catalog.
    I've tested Downloader Pro and Lightroom 4 now for importing the photos to local disk drive. I also tested one application called Cam2PC Image Downloader.
    The latter is actually called Cam2PC Image Browser and as its name suggests it's a software for browsing and doing basic changes to the photos, an image organizer. But it has a dedicated downlaoder called Cam2PC Image Downloader that can be very useful for importing photos. It comes either as a payed version or a freeware version.
    I also tested one called Smart Photo Import. This one could be a good alternative to Downloader Pro, but I think it still needs many improvements, and it lacks a lot of the functionality of Downloader Pro. But to be fair, this does cost half as much as Downloader Pro (13 EUR or 17 USD compared to 30 USD).
    I am most impressed by Downloader Pro. It has everything I could ask for really. But I was most impressed by its speed. I've done a simple speed test to see which one is faster and here are the results.
    Downloader Pro
    324 files (162 JPG & 162 CR2)
    Max speed: 21,25 MB/s
    Time: 02:58.6
    Lightroom 4
    Set to render "Standard" previews
    324 files (162 JPG & 162 CR2)
    Max speed: N/A
    Time: 03:41.7
    Compared to Downloader Pro: 78% done at 02:58.6
    Rendering time: 04:35.5
    Total: 08:16.12
    Cam2PC Image Downloader
    324 files (162 JPG & 162 CR2)
    Max speed: N/A
    Time: 03:30.6
    The max speed is the maximum transfer speed that ever occured during the transfer, and this is not something that the application is showing on it's own, it's the highest speed that I have seen with my own eyes. Unfortunately the other applications had no way of showing the speed, only Downloader Pro could show the speed. That's why it says N/A (as in not available).
    As you can see Downloader Pro did the same job in shortest amount of time. Note that I could be transfering 2 or 3 cards worth of photos for the time it takes Lightroom to transfer just one.
    The memory card was full when I started the test. It was a 4 GB Sandisk Ultra 30 MB/s card. The card reader was a Lexar USB 3.0 Professional. Although it was connected to a USB 2.0 port on Intel chipset motherboard (Intel X38, ICH9R). The destination folder was set to Desktop\(name of the application) on a Seagate 500 GB SATA (ST3500320AS) disk. All done on a Windows Vista PC with SP2.
    One way to make Lightroom do this job more quickly is to choose "minimum" as previews rendering option. This way it doesn't spend as much time rendering the photos after being copied to the disk drive. Now, I have not tested this but I believe that Lightroom can start a second import of a second memory card whilst the first one is being copied. I'm not sure how it would affect the speed though, and you would need two card readers for this.
    I wish I could skip rendering previews alltogether. I like to leave adding photos to the catalog and rendering previews for the last step. This is because it takes so long time and I like to use 1:1 previews, so I like leaving Lightroom to do this job in the morning or over the night.
    I have learned to use prests now in the import dialog of Lightroom. So now it should not be a problem if I always want to copy new photos to the same location. If this location is changed I can recall it simply by choosing my preset. This is very handy.
    All in all, Lightroom is very good at importing photos from camera or from a memory card reader to the local disk drive. But it's now my preferred way of importing photos to the computer. Which is why I have decided to purchase Downloader Pro. Thanks all for your help. I appreciate it!

  • DME file creation for APP

    Hi all,
    my client needs to do the payments for vendors in electronic format. for this i know only for electronic payments we use file DME.
    How we create DME file in F110? and how this file fits for bank given specification? after payments made from bank (sending this file to bank and bank will pay) how the bank file we upload and post?
    kindly send me any docs regarding config.of DMEE and upload also.
    Thanks in advance,
    i will assure points.
    Soma

    Dear Soma,
    For DME file generation you need to first make the set up in SPRO and then while running the printout in F110, it will get generated. Then you can doenload the fle from FDTA and can upoad it to bank site.
    The standard documentation on this from SAP is:-
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/cb/4104aadf2b11d3a550444553540000/frameset.htm
    Regards,
    Gaurav

  • Duplicate file and file directory

    Currently using 37.0.2
    Notice in my file directory I have two Mozilla Firefox folders.
    One has April 2015 dates.
    The other has February 2014 dates.
    Can I safely delete the Feb 2014 folder and its sub-directories?
    Thanks

    There are also old Visual Studio 8 folders with a number appended in the screenshot.
    Did you ever do a Windows System Restore?
    Yes, you can remove that folder.
    If you want to know what Firefox version it is then you can check the application.ini file in a text editor via "Open with".

  • Resumable downloads and delta updates for App Store

    Hi all,
    since I didn't find any place where to add product improvement suggestions, I post it here and hopefully someone can point me (and or this post) to the correct location.
    I'd like to vote for resumable downloads (even a shutdown is in between) and delta updates for the Mac App Store. The main reason for this are big apps (i. e. Xcode) which I simply can't update without having the mac running the whole day (and night).
    Thanks and regards,
    Michael

    Hi Michael!
    Apple employees are not going to see feature feedback posted here, but you can use the Apple Feedbck site. There is not currently a category for the App Store but you can use the OSX feedback form here:
    http://www.apple.com/feedback/macosx.html
    The main reason for this are big apps (i. e. Xcode) which I simply can't update without having the mac running the whole day (and night).
    Curious, are you on dial-up or satellite? As I live in a low-population state with lots of miles between towns of even modest size, I hear the slow connection issue a lot when helping users locally. We get 50mbps service in Lewiston, but people in the back country are struggling with some really slow satellite providers.

  • Files directory for a Labview executable in Windows 7

    I'd like to hear some opinions on this and ask what other people do. Most of my programs save data files that need to be accessible to the user, and some of them read text files that have been created by the user, e.g. a file containing a sequence of moves for a robot.
    Where's a good place to put those files? In XP you could just stick them in a sub-directory in the application's directory in Program Files. Deprecated I'm sure, but simple. I think Windows 7 gets stroppy if you try to access files in an application's directory, and Windows 8, who knows? I'm pleased to say I've managed to avoid it so far.
    Is there a "proper" place to put files that should be accessible to both the application and users? It must be accessible to all users, not just the one who's logged on. I've searched online and found remarkably little information about this.
    For the sake of simplicity I'm tempted to just create a directory on the C: drive like C:\My Company\Program Name\. is there anything wrong with that?

    Yeah it is a bit more complicated now, but Microsoft tells us it is for the best.
    It is pretty common to have a Application.INI in the same directory as your Application.EXE and in the past I'd use that file to hold basic config for my application.  You can still do this with LabVIEW but you need to add an extra step in the installer creation which tells Windows that the INI file should be able to be read and written by all users.   Just check the Unblock for that file when making an installer.
    http://zone.ni.com/reference/en-XX/help/371361K-01/lvdialog/file_set_install_page/
    It's non-standard technically, but it is handy to copy the EXE and config together and move them around and have everything still work, instead of now needing to copy config files to various user app data folders.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Creative Cloud - BUG Changing Installation Directory for Apps

    I searched and could only find this similar post here
    http://forums.adobe.com/message/5498967#5498967
    Which stated the issue I am experiencing.  In the preferences of the creative cloud desktop program I changed the installation directory to D drive because I have my main hard drive partitioned and the programs would take up too much space on C.  Regardless of the change in preferences the applications were still installing to my C drive.  I tried restarting and reinstalling and nothing seemed to work. 
    Finally I decided to reallocate my D partition back to C, I have yet to complete this because I am waiting for all the data on D to be transferred to an external drive so I can recombine it to C without losing data ( I don't know if this is necessary, I haven't recombined partitions in the operating system before, but just to be safe)
    ANYWAY
    As I am waiting for the transfer (Over 120gbs takes a while)  I changed the installation directory in the Creative Cloud preferences back to C and went ahead and installed the program I was trying to prior to all this.  Guess What?  It installed to my D drive!!!
    This isn't a serious bug for me, just incredibly annoying and causing a lot of extra work on my part just to install the program I wanted.  However for someone who requires a different directory to install to and cannot rearrange their computer to accommodate this bug I could see it being more serious.  Has anyone else had this issue and did you find a solution?  Thanks.
    P.S. Adobe you rock, I hope your other CC programs don't feel rushed for release like your installer does

    ADOBE WILL TRY TO DELETE YOUR LEGACY APPS!!!!  Do NOT let them! They could put you out of business! Here is a tech support transcript, see for yourselves:
    Vipin: May I have your permission to connect to your computer remotely and try to solve the problem while you watch?
    ADOBE CUSTOMER: I need to know that NONE of my legacy adobe apps will be affected. CS5 suite and CS6 products will NOT be affected is that right??????????????
    info: Your chat transcript will be sent to dixxx.net at the end of your chat.
    Vipin: It will be affected.
    ADOBE CUSTOMER: WHOA! you are saying that my CS% and CS 6 apps will be hurt and not run correctly is that right?
    Vipin: We need to remove all the Adobe apps installed on your computer.
    Vipin: Is that okay.
    Vipin: May I have your permission to connect to your computer remotely and try to solve the problem while you watch?
    ADOBE CUSTOMER: There is no way I give permission to delete CS5 creative suite, CS6 video production suite or hurt them in any way what so ever. I have THOUSANDS of dollars of plugins and other workfow products that depend on them. Sorry but my only recourse is to
    ADOBE CUSTOMER: see if you have ANY loyalty to an OVER 30 years adobe customer (me) when you demand payout for the remaining 5 months of the subscription. I'm betting you will just send the bill to collections for non payment. If so, you WILL be sued for non service and non delivery of product. And yes, I am ready to spend over xxxx on a suit vs adobe because of how you have treated me. The point is I know that I am not alone, and that's sad.
    Then after TECH NO SUPPORT, CSRs try to 'handle' me:
    If you do decide to cancel, we can refund your subscription.
    If you stay with the service, we can provide 2 free months as an apology for the technical difficulties. We cannot provide a free year.
    Please let me know which you would like to do.
    Thanks,
    Britt
    Like · Reply · 35 mins
    ADOBE CUSTOMER:You want me to stay with a service that provides no product? And has not provided me with a usable product since October of 2014? And now the word is out that you are raising subscription prices after the first year? Who do you think you are? You HURT peoples ability to earn a living! You cost us hours and days and months trying trying to fix your problems so we can move forward with your products? Who in the hell do you think you are? Tell you what, dont cancel a thing. A media blitz and maybe a subpoena to San Jose is the right move to protect peoples rights. Your company needs to learn a lesson in how to treat legacy customers. It seems no one has taught you that "if you take care of the customer, they will take care of adobe." Britt, care to guess how many dollars I have given adobe in almost 30 years?
    Adobe Creative Cloud Hi ADOBE CUSTOMER:
    We value all our customers and would love to help resolve your issue. Would you like to arrange a callback with tech support? I can make sure the technician is a senior staff member that can offer more troubleshooting solutions. Let me know if you would like to schedule this, and what a suitable time would be.
    Thanks,
    Britt
    Like · Reply · 19 mins
    Adobe Creative Cloud Regarding Creative Cloud prices, it is noted on the purchasing page that some subscriptions offer "promotional rates for the first year only." Our full subscription terms can be viewed here: https://www.adobe.com/misc/subscription_terms.html
    -Britt
    Like · Reply · 18 mins
    ADOBE CUSTOMER: You see, that is EXACTLY how you should take care of a customer. Tell them they are wrong and have it NOT RELATED to a simple request to FIX a company software PROBLEM. Tell your customers that after FOUR months of unusability of your product, DAYS of the customer trying to fix the company problem, that your solution is give them TWO months FREE then JACK the price up for them! You MUST have thousands of people in LINE to YOU to get this celebrated DEAL!
    Like · Reply · 6 mins
    ADOBE CUSTOMER: I have a hunch some adobe board members are going to have fun with your conversation and offer, Britt. I would hush up now before you have to look for a different job because I know you mean well BUT you have no experience or skills solving a client's issues and in fact, you are hurting adobe's future earnings.
    Like · Reply · 2 mins
    Adobe Creative Cloud I apologize for the frustration regarding Adobe's pricing policy, Kee. Please let me know if you would like additional help troubleshooting the problem. We would love to locate the cause of the download issue and get this resolved for you.
    Thanks,
    Britt
    Like · Reply · 7 mins
    ADOBE CUSTOMER: The Russian cracked version of PS 2014 will have to do on another clients machine until you have a total new WORKING release. I'm tired of being your company's test pig, doing the boiler plate cleaner routines, and having the same failures. It's one thing to have broken software, but NOT acceptable to treat customers the way I have been treated, and then, be greedy on a remediation offer from you.
    You say,"We value all our customers."  Again, clearly NO ONE from the BOD has taught you that if you take care of the customer, then the customer will take care of adobe.
    You guys and gals have essentially asked for a fight, and a fight you shall have. good night.

  • Flex Builder 3 and Employee Directory Sample App

    Ok, please be paitent with me.  Just starting out with Flex Builder 3 and Flash Builder 4.
    I have installed Flex Builder 3 and imported the Employee Directory application sample, but I cannot get it to run, nor debug.
    I'm on a Mac Pro and I have not done any other configuration to the Flex Builder 3 installation, yet.
    In order to get the Employee Directory app to run, can someone give me some assistance as to what I need to do in order to get it running within the development environment.
    Any assistance will be greatly appreciated.
    Regards,
    Jeff

    No errors, it just will not run.
    I loaded the employeedirectory.mxml into the editor and simply tried to run it.  The Eclipse editor / employeedirectory canvas blinks, but doesn't execute.
    In addition, when I set a breakpoint and try to debug, I get the following error:
    Process terminated without establishing connection to debugger.
    Command:
    "/Applications/Adobe Flex Builder 3/sdks/3.2.0/bin/adl" -runtime "/Applications/Adobe Flex Builder 3/sdks/3.2.0/runtimes/air/mac" "/Users/Jeff/Documents/Flex Builder 3/employeedirectory/bin-debug/employeedirectory-app.xml" "/Users/Jeff/Documents/Flex Builder 3/employeedirectory/bin-debug"
    Output from command:
    error while loading initial content
    Thanks for the reply...  hopefully it's a simple configuration issue.
    Update:  I created a blank application with no control, notta and it ran fine, i.e. loaded up into Firefox with a blank canvas.

  • Need advice for setup of AD and file server for small business with 2 locations

    Hi,Let me begin by saying I'm not sure if this was right place to post this. I could have just as easily posted this in 4 other categories but I think we need virtualization to get the DR and HA that I'm looking for. Allow me to provide some background... Our company has two locations. For simplicity sake I'll refer to them as our Main site and Branch site.Main Site Facts:Considered corporate HQ.Has primary and secondary AD controller (two physical servers - Server 2003), as well as our ERP system (green screen), which is on a separate host. Primary AD server is also our network file server.Backups are written to tape and taken off-site. (I'd love to ditch tape if possible.)Has 22 PC's (includes 5 laptops) and about 7 networked printers.Has a 3 Mb T1 and a 50 Mb cable connection.Branch Site Facts:Has 6 PC's (includes 1 laptop) and 2...
    This topic first appeared in the Spiceworks Community

    Hi,Let me begin by saying I'm not sure if this was right place to post this. I could have just as easily posted this in 4 other categories but I think we need virtualization to get the DR and HA that I'm looking for. Allow me to provide some background... Our company has two locations. For simplicity sake I'll refer to them as our Main site and Branch site.Main Site Facts:Considered corporate HQ.Has primary and secondary AD controller (two physical servers - Server 2003), as well as our ERP system (green screen), which is on a separate host. Primary AD server is also our network file server.Backups are written to tape and taken off-site. (I'd love to ditch tape if possible.)Has 22 PC's (includes 5 laptops) and about 7 networked printers.Has a 3 Mb T1 and a 50 Mb cable connection.Branch Site Facts:Has 6 PC's (includes 1 laptop) and 2...
    This topic first appeared in the Spiceworks Community

  • Simple and stupid question for apps dba

    hi
    i have configured RAC 11gR2 on a C2D machine(just two nodes are there only) at home with 10gR2 db.its just a home configuration.
    As i am newbie and freshly starter,i want to install EBS R12 just to practice Some apps DBA stuff with that clusterware + 10g db.
    is there anything wrong?can i do that?
    which EBS R12 package to download for minimal configration for just practice stuff?
    any starter guide for this installation on linux OEL 5.4 x86_64??
    Regards

    Hi;
    which EBS R12 package to download for minimal configration for just practice stuff?
    any starter guide for this installation on linux OEL 5.4 x86_64??Firstly, your Question is not stupied. Secondly you need to download all related package from e-delivery(Now only R12.1.1 donwload avaliable there), you dont need to download NLS media pack.
    For installation please check
    Oracle Applications Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID 761566.1]
    Oracle Applications Documentation Resources, Release 12.1 Doc ID: 790942.1
    Also check installation guide at:
    For r12.1.1:
    http://download.oracle.com/docs/cd/B53825_01/current/html/docset.html
    Regard
    Helios

Maybe you are looking for

  • Unable to find the utl_file_directory option in init.ora

    Hi all these are the contents of init.ora file in nacedell server.i did'nt find any thing as utl_file_directory to update with my directory created through sql*plus using command create directory dir as 'c:\dir'; here are the contents of init.ora fil

  • Video Chat dimmed out

    If I select New Chat, the Video Chat option in the Type drop down menu is dimmed out. Everything else is available. I'm using an AIM account and the "Allow AOL's server to relay video chats" box is checked in Preferences. Any advice on how to get the

  • Error(U9KP7Q94) while drilling down the columns

    I uploaded the data to the OBI development server The data uploads ok and it is displayed in the dashboard, but when I try to drill down by clicking on the headings I am getting an error message -. Path not found (/users/administrator/STORM REPORT) +

  • Setting system properties accessible from BPEL independent of ENV

    I am implementing a BPEL Process in which I am referring to a folder in my local server.Is there any way where I can set some sytem properties such way that the folder path could be dynamically accessed independent of the server/environment. Ex:-in d

  • URL Get HTTP Document Bug (LV2012)

    I know the Internet Toolkit is deprecated, but since it's still available it should still work. Unfortunately the URL Get HTTP Document.vi does not work in Internet TK 2012 for other than text files. It worked fine in LV8.5 with the corresponding Int