Do not use Java for any ITS/portal/webgui operations

Ladies and getlemen,
I wonder if anybody have eved tried to use ITS/portal/webgui - for some ABAP ALV reports + some custom WD apps - and didn´t want to use any Java (security reasons or too many users, so a problem of logistics etc.) . I don´t know if that is possible and if yes, how.
My colleagues have suggested a little crazy solution - they´re going to repair the class cl__guifrontendservices (or something like that) - they´re going to add a form so the ITS brach will open a custom WD screenfor file upload/ download instead of starting a Java to do that.
Has anybody any experience which could help here or any feelings if the suggested "solution"/workaround can work?
Thank you, regards Otto

Unfortunately no answer.

Similar Messages

  • DO NOT USE IPHOTO FOR ANY IMPORTANT OR PROFESSIONAL WORK

    I am a freelance photographer in NYC and was using iphoto to organize and view my photos. After my last import, Iphoto not only created new folders for my work but also went in and replace 2 of my existing folders of work. I tried everything from backing up and the rebuilding the library to search with spotlight for my pictures. the thumbnails are still in the cache but all of the orginals are gone and i have many unhappy clients. So i am left to using my unfriendly camera import software, but at least i would lose my information.
    ANOTHER ROTTEN APPLE EXPERIENCE
    ( I still love my mac... but i am just ****** off and need to vent)

    DAKNYC
    Welcome to the Apple Discussions.
    Sorry to hear of your difficulties. Perhaps if you gave us details of your set up and what you did we might be able to help you understand what's gone wrong, or perhaps help you solve the problem. That's what this is, a User-To-User technical help forum. Not a place to vent.
    Have you tried
    http://www.apple.com/feedback/iphoto.html
    Regards
    TD

  • I can not get any updates and therefor not use Java as it only run updates for Mac 10.7. and later? How do i get the updates to install and use Java?

    I can not get ny updates and therefore not use Java, as it only run updates for MAC 10.7. and later. How do i get the updates to install and use JAVA ?

    In Snow Leopard you update Java from Software Update (in the Apple menu). You can check your version by opening Terminal and typing
    java -version
    (don't get creative and type anything else)
    The latest version is 1.6.0_65.

  • When would you not use java

    This is a discussion I would really like to hear some other opinions about. I know some people who keep thinking Java sucks and when they try to use it, they use it for completely the wrong tasks. Now I was thinking, in what situations should you avoid it altogether? This could become a nice reference thread to point those idiots to :)
    I would avoid Java for:
    - performance critical solutions (perfect timing, per frame graphics analyzers, etc.)
    - general public applications. You have to install java first to run your software, which a lot of users will screw up or simply won't do. Java also eats up a lot of memory.
    - platform dependend problems. Generally if your problem description includes the word "Microsoft", you should NOT use Java to try and fix it. You should be using Visual Basic or C#.
    These are really common examples that I see on this forum almost every day. Are there any other examples that are worth mentioning?

    Q>>Now I was thinking, in what situations should you avoid it altogether?
    A>>When they use it for completely the wrong tasks.
    You answered your own question.
    I would avoid Java for:The stuff you say you would avoid java for, pretty much , well to me, says you won't use java.
    - performance critical solutions (perfect timing, per frame graphics analyzers, etc.)Why not, all depends on your algorithms.
    - general public applications. You have to install java first to run your software, which a lot of users will screw up or simply won't do. Latest Linux Distros, like JDS, come already packaged with JRE, so this isn't 100% true.
    Java also eats up a lot of memory. So does windoz OS. I guess I'll avoid it.
    - platform dependend problems. How so??? again see your original Question (Q above).
    Java was created for platform independance.
    When you create a program that considers Solaris, Linux, and cough windoz, Oh , don't forget MAC, you program each case, no big deal.

  • I went on iTUnes after not using it for awhile and all my playlists are gone. How can I find them?

    Hi Apple community ---
    I went on iTunes after not using it for awhile and my old playlists are all gone.  My library seems intact, but I don't have a record of  my playlists, except for what's in my iPod.  I'm afraid to sync them to get the playlists back into my computer, becuase the last time I synced my iphone it erased all my contacts from both my iphone and my computer, and I don't want the sync operation to remove the playlists from the iPod as well. 
    I don't have any music on my iPhone, so the two devices in question are just the iTunes program on the computer (it's a Dell with Windows Vista) and my 160 GB iPod classic. 
    Thanks for your help!!!
    Doc E

    This post may be a clearer place to start...
    tt2

  • Why not use Jsp for  control in MVC2 ?

    hi
    i am rajendra , i am preparing interview FAQ, so please give me my Que. Ans.
    1) we are using servlet for control in MVC2 Module,then why we can not use
    Jsp for control in mvc2
    2) if we used jsp for control in mvc2 then what is disadvantage compare to if using servlet for control in mvc2
    Please give me ans. as soon as..
    Thanks.

    Are you preparing a FAQ for others or are you just cramming before an upcoming interview and someone gave you a set of questions? It looks more like the latter to me.
    If you haven't actually written any MVC based code, you won't be able to snow the interviewer. It's better to just relax, get a good night's sleep and impress them with your willingness to learn, your fit with the team and whatever real accomplishments you have to show.
    If you really want an answer to this I suggest that you try writing an MVC2 system using JSP for the controller, which is possible, and then try doing the same in a servlet, or better yet using a framework like Spring MVC or Struts to provide the servlet for you and let you concentrate on your application.

  • How to check whether a Document in KM is classified or not using JAVA API

    Hello Everyone,
      Can anyone tell me, How to check whether a Document in KM is classified or not, using JAVA API's??
    Thanks & Regards,
    Adren D'Souza

    Hi,
    The code is as follows:
    IIndexService indexService = null;
    try {
       indexService = (IIndexService) ResourceFactory.getInstance().getServiceFactory().getService(IServiceTypesConst.INDEX_SERVICE);
    } catch (ResourceException e) {
       if (indexService == null) {
         log.errorT("Error on instanciating the index service");
         return this.renderMessage(this.getBundleString(RES_NO_INDEX_SERVICE), StatusType.ERROR);
    // get index
    IIndex index = null;
    try {
       index = indexService.getIndex("YourIndexID");
    } catch (WcmException e1) {
       log.errorT("Error when trying to get the index");
       return this.renderMessage(this.getBundleString(RES_NO_INDEX), StatusType.ERROR);
    // check if the index is a instance of AbstractClassificationIndex
    AbstractClassificationIndex classiIndex = null;
    if (index instanceof AbstractClassificationIndex) {
       classiIndex = (AbstractClassificationIndex) index;
    } else {
       log.errorT("The index " + index.getIndexName() + " is no classification index");
       return this.renderMessage(this.getBundleString(RES_NO_CLASSIFICATION_INDEX), StatusType.WARNING);
    //give your KM Resource here for which you want to know if it is classified or not
    boolean classified = classiIndex.isDocClassifiedInAnyTax(resource);
    Regards,
    Praveen Gudapati

  • My iPhone 4S keeps taking my credit, im not using Safari or any internet apps, my 3G is turned off but it is still taking my credit. What's it doing?

    My iPhone 4S keeps taking my credit, im not using Safari or any internet apps, my 3G is turned off but it is still taking my credit, i topped up by ten pounds yesterday and it has already 6 pounds?! Im on Orange (EE)! Someone help please? Thanks

    Try restarting the phone
    Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for phone to restart (no data will be lost).

  • Whenever I use something which uses Java (for example, an online game) and then click the address bar, it seems that the address bar is disabled.

    Whenever I use something which uses Java (for example, an online game) and then click the address bar, it seems that the address bar is disabled. I cannot highlight or type in the address bar unless I interact with another program and then switch back to Firefox. When I interact with Java again, the same problem persists! Help!
    Sorry, I didn't know what category this should be under, but it's urgent.

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Troubleshooting extensions and themes]]
    Check and tell if its working.
    Some of your Firefox Plugins are out-dated
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    * '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''

  • Can't get super drive to play disc in dvd player it states disc not supported that for any disc inserted into the player

    can't get super drive to play disc in dvd player it states disc not supported that for any disc inserted into the player

    Hi, not sure it works in 10.9, but...
    DVD Player doesn't like external players, use VLC Player...
    http://www.videolan.org/vlc/
    http://hints.macworld.com/article.php?story=20100208120847220
    http://hints.macworld.com/article.php?story=20111107064435227

  • HT1096 I have a analog to DV converter that I have had for years, but I have not used it for awhile am using a newer MAC. How do I get it to import from my converter. It is only showing the built in camera.

    I have a analog to DV converter that I have had for years, but I have not used it for awhile, and I am using a newer MAC. How do I get it to import from my converter. When I go to import in iMovie it is only showing the built in camera. Help...

    Does the iOS device connect to other networks? If yes that tend to indicate a problem with your network.
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network      
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem and it does not connect to any networks make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • We are not getting email for any of the two new profiles in Production environment

    We are not getting email for any of the two new profiles.
    The new rules for sending e-mail work when using the initial profile.
    Only works for F9 and choose manually the profile is being sent.
    But siebel writes the log of both the \ BIN \ sent as if it had sent.
    operation:
    Standards (Policies) were created in the Activities (S_EVT_ACT) and Contacts table (S_CONTACT). When Standards (Policies) are reached trigger actions (Actions). These actions are linked to sending emails.

    The SMTP Adapter don't just "through away" messages. If your Tracked Service Instances shows that a message was sent through the Port, I am pretty sure that a mail was indeed sent. 
    -Are you using Static- or Dynamic Port?
    Can you try to set the Send Port in "Stopped" state, and then send a message to it. Examine the message suspended in BizTalk, and if everything looks ok, then start the Port again and check that the message has disappeared from both suspended and running
    instances in the Group Hub.
    If so, quickly check the mail box, make sure that no spam-filters etc. are messing up your test.
    Morten la Cour

  • I do not have an apple computer,  I have had Itunes  Previously but had not used it for some time.  when I try to use it now the following message keeps coming up no matter how many times  install Itunes.  "The Itunes library is locked on a locked disc ?

    I do not have an Apple computer,  I have had Itunes previously but had not used it for some time,  I have Itunes gift cards but can not get ,on to use them.  I have tried to download Itunes again but the following keeps poping up, "The Itunes library is locked on a locked disc, oryou do not have write permission for this file."  How can I overcome this?

    To solve this issue all I did was check to ensure that the file permissions were set as described by the earlier posts, followed by simply deleting the iTunes Library Genius.itdb file.  Once the file was deleted I was able to open iTunes without difficulty.  Note that I am running Windows 8.  Hope this helps!

  • I have a 10.2.8 os. I had opened up the AOL logo on the bottom bar. Two aol boxes came up. I can get them to go away for a short time and then they come back. I have not used AOL for 6 years. How can I get the boxes to go away?

    I have a 10.2.8 os on a G4 desktop. A week ago I clicked on the AOL icon in the bottom bar. I have not used AOL for six years. Two aol boxes came up. I can not get the boxes to go away for long. They may go away for 15 minutes and they come back  while I am working. How can I get these  aol boxes to go away?
    I will be upgading to Tiger; 10.4.

    Right click on the AOL icon and select move to trash.

  • I have an apple id but ı can not use it for sign in to itunes connect account while publishing my ibook document. Why ı can not login? What can ı do to figure out this problem?

    I have an apple id but ı can not use it for sign in to itunes connect account while publishing my ibook document. Why ı can not login? What can ı do to figure out this problem?

    As note already on the iBA forum [ AppleID for ibooks publishing ], you need two IDs. You can't use your developer ID.
    If you already signed up for books with that ID, you need to talk to Apple to straighten things out.

Maybe you are looking for

  • [solved] no sound with multimedia apps using Pulseaudio Dummy drive

    It seems audio issues are kindof frequent atm, but I couldn't solve the strange issue using the informations provided in the threads nor the wiki Issue: One app plays audio just fine: Deadbeef Audio player, but no activity shows up in Pavucontrol whi

  • Who will assign the prices for refurbished & faulty & on which basis

    Dear Friends while implementing this refurbishment process the pricing for c2 repaired & faulty c3 who will decide & on which basis since every time we cannot have same fault for c3 (sometimes winding burn ,sometimes bearing faulty then for all how i

  • How to develop custom add-in for sharepoint designer 2010

    Hi , Can anybody suggest me how to create a custom add-in for sharepoint designer 2010? Are there any templates through which i can create a managed add-in using C#? or developing COM add-in (VB6) is the only solution? Please suggest. Regards Sujasre

  • I can't edit in iphoto 11

    I have just loaded iLife '11 adn every time I try ot eidt a photo, I jsut get stuck ina blacnk edit screen - and have to QUIT to get back into iPhoto. I tired reloading the software.

  • Index Tuning Wizard - Oracle 9i 9.2.0.1 (Linux)

    Hello, I recently installed Oracle 9i Release 2 on a Linux box (RH 8.0). I have been able to get everything working without any problems. I was interested in trying out the Index Tuning Wizard but I can seem to track down where it is on my installati