Regarding Google Web Toolkit

Hi ,plse check this code
i am getting following error.
When we execute the following piece of code
public void onModuleLoad() {
log.debug("In class Treestructure");
// Create a tree with a few items in it.
//HttpServletRequest request = getThreadLocalRequest();
try{
String projectmanager=(String)tssession.getAttribute("projectmanagerid");
String projectname=(String)tssession.getAttribute("projectname");
projectlist=(HashMap)tssession.getAttribute("projectmemberslist");
log.info("executed till here");
-------> TreeItem root = new TreeItem(projectmanager);
// String parent=projectmanager;
TreeItem newroot=addchild(root,projectmanager);
Tree t = new Tree();
t.addItem(newroot);
// Add it to the root panel.
RootPanel.get().add(t);
}catch(Exception e)
log.debug("IN TreeStructrue Exception"+e);
We are getting the following exception.
At the line indicated by arrow.
The statements above that line are getting executed.
javax.servlet.ServletException: Servlet execution threw an exception
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:260)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:157)
at
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDisp
atcher.java:704)
at
org.apache.catalina.core.ApplicationDispatcher.processRequest(Applica
tionDispatcher.java:474)
at
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationD
ispatcher.java:409)
at
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDis
patcher.java:312)
at
org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.
java:1062)
at
org.apache.struts.action.RequestProcessor.processForwardConfig(Reques
tProcessor.java:386)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.ja
va:229)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:119
6)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:237)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:157)
at com.vl.hr.login.action.HrFilter.doFilter(HrFilter.java:52)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:186)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:157)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
alve.java:214)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv
eContext.java:104)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
a:520)
at
org.apache.catalina.core.StandardContextValve.invokeInternal(Standard
ContextValve.java:198)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
alve.java:152)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv
eContext.java:104)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
a:520)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
ava:137)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv
eContext.java:104)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
ava:118)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv
eContext.java:102)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
a:520)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
ve.java:109)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValv
eContext.java:104)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
a:520)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
at
org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:16
0)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
:799)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
ssConnection(Http11Protocol.java:705)
at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java
:577)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadP
ool.java:683)
at java.lang.Thread.run(Thread.java:536)
if any one knows GWT plse respond to this,
Thanking You

when will we get
javax.servlet.ServletException: Servlet execution threw an exception

Similar Messages

  • Client-side caching of Javascript (for Google Web Toolkit *.cache.* files

    Hi all,
    I'm trying out the use of Google Web Toolkit (GWT) for AJAX code development, leveraging RPC calling back-end Web Services for a document browser prototype.  When the JavaScript code is generated by GWT, it has the ability to automatically distinguish between cacheable and non-cacheable content via file extensions (.cache. and .nocache.).
    Now when running in a Tomcat environment with appropriate caching settings; the application runs extremely fast even on really poor latency sites (>500ms round trip); however on a NetWeaver stack, I can't find any information on how to set an attribute on .cache. files to set an expiry of 1 year.
    Anyone know how to do this on a NetWeaver J2EE stack?
    Thanks,
    Matt
    PS. For reference, GWT is a very cool open source project worth watching in the Enterprise space for targeted high-usability, high performance apps.  Just the image bundles concept themselves are an awesome approach to minimizing impact of small images on performance.

    Hi again,
    I thought I should post the solution I came up with in case people search on GWT in the future.  In terms of caching, the Portal does a good job of making nearly everything that GWT produces to be cached at the client; and for the life of me, I couldn't get nocache files not cached at the client side. 
    So thanks to my friendly local SAP experts in the portal space; I discovered there's not much you can do to get this working except try use standard browser tags like the following to prevent caching on the browser:
    Note - Can't seem to save this post in SDN with Meta tags that I'm trying to display so check out http://www.willmaster.com/library/tutorials/preventing_content_cache.php for more info...
    Unfortunately, the way that GWT creates the nocache files, it is not possible to modify the .js files to do this so I needed an alternative approach.
    Then I thought, well, the html file that includes the JS file is cached, but it's not very big, so how about I just write a script to modify the html file when I deploy to production to point to the nocache file with a date suffix.
    Let me explain in more detail:
    1. The original html file that includes the nocache.js file gets modified to point to nocache.<date>.js.
    2. The original nocache.js file gets changed to nocache.<date>.js
    3. Now produce an external bat file to do this automatically for you before deployment which DevStudio can call as part of an Ant script or similar.
    That's it.  So when you are developing, you can manually delete your cache, but just before you go to production, you do this conversion, and you will never have an issue with clients having the wrong version of javascript files. 
    Note - GWT takes care of caching of most of the files by using a GUID equivalenet each time you compile, so it's just a couple of files that really need to not be cached.
    Anyway, I'm not explaining this solution very well, but drop us a line if you need to understand this approach further.
    And lastly, my feedback about GWT - It Rocks!  Everyone loves the result, it's easy to build and maintain, it offers a great user experience, and it's fast.  Not a replacement for transactional apps; but for the occasional user - go for it.
    Matt
    Edited by: Matt Harding on May 22, 2008 7:48 AM

  • Where is "Google Web Toolkit Developer Plugin for Firefox?"

    I can not find this plug in for the version of Firefox I have 3.6.8, even though it already runs with it?
    I can not find Google Web Toolkit Developer Plugin for Firefox for Firefox 3.6.8 even though I already have Google Web Toolkit Developer Plugin for Firefox running on a version of Firefox 3.6.8 on other computers.
    # There is no regular information that tells you how to get this plugin as there is with other plugins.
    # When GWT Devmode loads the Firefox brower, it says "missing plugin." you click to install, and it can't find it.
    # I know that I have previously been able to install Google Web Toolkit Developer Plugin for Firefox version 1.0.7511 installed on Firefox 3.6.8 on another machine. But I'm migrating to this one.
    (Edited to correct the formatting to stop the post scrolling to the right - TonyE)

    Hi richkatz,
    I'm on FF3.6.2 and today, I encounter the same problem.
    I got the solution by opening the download page in another tab. Then the firefox message switched from "Look for Plugin" to "Autorise FF to install the plugin".
    Here is the URL of my new tab, hoping that it works for FF3.6.8 : https://dl-ssl.google.com/gwt/plugins/firefox/gwt-dev-plugin.xpi
    Seeya! ;)

  • Firefox 6 doesn't support Google Web Toolkit add-on so has become useless to me.

    Thanks for forcing an upgrade. You need to understand that you will turn people OFF if you force them to upgrade to a platform that is not ready for their full requirements! I can no longer be a Firefox user. Can I go back to my previous version? How?

    Looks like the problem is with Google having not released an update yet. See the following link and links within: https://groups.google.com/group/google-web-toolkit/browse_thread/thread/48d34a9fb54af7e6/ddb748430950f08a
    Here is a link within that article re: a patch for Firefox 6: https://gwt-code-reviews.appspot.com/1523805/
    As Firefox 5.0 and 5.0.1 have unpatched vulnerabilities, I will not provide a link here. Click Inbox at the top right of this forum when you are signed-in to the forum for a message to you.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Google Web Toolkit (GWT)

    I am trying to understand the benefits GWT. Seems like coding Java Script and DHTML by hand or using the JSP/JSF model (any update triggers page reload) is no longer considered good UI design. I see a lot of buzz around the new Google Toolkit Release 1.5 and see more and more books and sites coming out discussing advantages of GWT.
    Here is one of many artciles:
    http://alan.blog-city.com/gwt_power.htm
    I wonder if anyone used GWT and can comment on this technology. Surprisingly, I see very few jobs on Dice.com that mention GWT. But is it something that is going to become very important in the next few months/years as this framework gets better?
    To me, the idea of building sophisticated JavaScript interfaces with Java seems very exciting.

    which technologies you choose will depend on your requirements
    in general, i'd expect that using GWT is better than rolling your own solution
    for example, i'd much rather use a toolkit (such as Echo3) than code html, javascript, ajax, xml, etc. when i could be using only 1 API
    I will say I hear good things about JSF

  • CFC's for GWT (Google Web Toolkit)

    Hi All,
    Is there any built in CFC's (or) library available to utilse
    the GWT Framework?
    Regards,
    Dav R

    GWT's own documentation has a nice tutorial which starts from how to install and goes from there. There are also some FAQs and the API documentation which you may want to come back to. The link itself is a good example of GWT's use.
    [roughian.com|http://examples.roughian.com/#Home] offer some on-line code snippets and a free tutorial you can sign up for. I haven't looked at this tutorial - but I have seen useful stuff posted in various places by its author.
    The GWT stuff from the recent Google IO conference are at youtube, and there are links to them at [gwtsite.com|http://www.gwtsite.com/]. They include a description of deferred binding, monolithic compilation and how DOM programming and the use of Java types which "overlay" JavaScript objects. I watched these recently and was intrigued.
    There's a Google Groups group (not surprisingly). And that would be the best place for GWT information, I imagine.
    Edited by: pbrockway2 on Jul 11, 2008 10:31 PM

  • Options for supporting web toolkit applications

    The various changes which have occurred between 10 and 11g are very detrimental to any users developing or supporting applications built with the original web toolkit (not APEX).
    In 10g, you could download the database and companion CD and end up with a database and http server with mod_plsql running in no time flat.
    In 11g, the database install is just as easy, but the http server install requires "Oracle Fusion Middleware Web Tier" which weighs in at a scary 1Gb+ (for a webserver) and assumes you are wanting to run lots of instances across an "enterprise grid". Even finding the error logs for when it doesn't work is hard. I spent a happy 4 hours trying to install it (following the instructions) without success.
    So, you think, what are the alternatives.....
    1. You could use the EPG, but the majority of advice is that this isn't suitable for production deployments
    2. You could use the APEX listener, but that doesn't support some of the features: flexible parameters, basic auth, etc
    There are a number of things Oracle could do to rectify this
    1. Open source mod_plsql. If they are not going to develop it further then let someone else do it for them
    2. Maintain backwards compatibility with mod_plsql in the APEX listener - not every application is APEX
    Hopefully someone from the APEX listener team can say "yes, we'll be making the apex listener compatible with all mod_plsql features in the next release". Fingers crossed...
    This was expressed more eloquently by John Flack here
    http://it.toolbox.com/blogs/jjflash-oracle-journal/application-express-listener-an-open-letter-35464
    Edited by: user486189 on 07-Aug-2010 04:52

    Thanks for the favorable mention of my blog - I updated that entry with a later one based on the Release Candidate version of the Apex Listener. I haven't given the production version a really good try yet, but what I've seen is pretty close to what I saw in the early adopter versions, except that the documentation is much better - bravo.
    You've named two alternatives to mod_plsql. Here are a few more:
    mod_owa: This is similar to mod_plsql, but it works under the generic version of Apache web server, rather than Oracle's customized version, Oracle HTTP Server. It is configured a little differently from mod_plsql and has some variations in the way it supports some of the more advanced features of the PL/SQL Web Toolkit, like flexible parameters. Joe Lennon wrote a blog entry about mod_owa here: http://www.joelennon.ie/2008/12/09/install-apache-mod-owa/.
    The base website for mod_owa is: http://oss.oracle.com/projects/mod_owa/dist/documentation/modowa.htm
    Thoth Gateway: If you have a Microsoft IIS web server, you might try the Thoth Gateway. Find it here: http://code.google.com/p/thoth-gateway/
    DBPrism: This is another JEE based application that I know that some are using. DBPrism was not primarily intended as a mod_plsql replacement, but does do that too. Find it at: http://www.dbprism.com.ar/en/index.html
    Please be aware, I haven't tried these (except a brief trial of an earlier version of mod_owa) so I can't vouch for them.

  • Consuming google web services

    hi all,
    i have done all initial steps of consuming google web services thru portal services...
    but i dont know how to get the search results and display it...
    even the no. of search results i can dispaly....
    when i print the result of GoogleSearchResult it displays:
    [Lcom.company.global.enterprise.portal.wsdl.webservices.service.packagename.ResultElement;@1e15201
    regards,
    purushothaman.

    Hi Purushothaman,
    perhaps my <a href="http://www.computerservice-wolf.com/schulung/sap-ep-google-search-en.html">SAP Enterprise Portal - Google Search</a> helps you. It was developed for EP 5.0 but perhaps it gives you some hints.
    Regards
    Gregor

  • PL/SQL Web Toolkit version 10.1.2.0.6, where to download?

    Hi:
    It's written in the documentation that we should have PL/SQL Web Toolkit version 10.1.2.0.6 or later... but I didn't find from where I can download.
    I'm sorry if it's not the appropriate forum.
    Saad

    Hello Saad,
    >> So can I download this alone from version 3.1 ?
    I’m not sure what you mean by “download this alone”. If you downloaded the 3.1 full installation file, you don’t need to download anything else. Just unzip the file, and under ‘apex\owa’ directory, you’ll find the proper files to install PL/SQL Web Toolkit version 10.1.2.0.6. Just read the readme file in the directory.
    Regards,
    Arie.

  • Oracle Multimedia PL/SQL Web Toolkit Sample Application

    Hi,
    I am trying Oracle Multimedia PL/SQL Web Toolkit Sample Application for Oracle database 11g Release 2, on the client components of the readme file, it says that oracle http server must be installed, and http server is available on the companion CD of Oracle Database 10g Release 2 (10.2), actually I'm using Oracle database 11g, is it because of database version that I cannot find http server component to add using universal installer or because during installation I chose install on my laptop and not a server?
    regards,
    Hassane Cabir

    In apex folder (the downloaded one), there is README.txt under owa which contains information about PL/SQL Web Toolkit and how to upgrade.
    This is the content of this file:
    PL/SQL Web Toolkit 10.1.2.0.6
    Application Express 3.0 requires PL/SQL Web Toolkit version 10.1.2.0.6 or greater.
    As a convenience, the PL/SQL Web Toolkit 10.1.2.0.6 is included with Application Express 3.0
    in the apex/owa directory. This version of the PL/SQL Web Toolkit is not a replacement for
    subsequent versions of the PL/SQL Web Toolkit, as delivered with database patch sets or
    Critical Patch Updates.
    If the PL/SQL Web Toolkit version is lower than version 10.1.2.0.6, the included PL/SQL Web
    Toolkit bundled with Application Express 3.0 should be installed prior to the installation of
    Application Express 3.0.
    To determine the PL/SQL Web Toolkit version, connect to the database as the SYS user and
    run the query:
    select owa_util.get_version from dual;
    Installing the PL/SQL Web Toolkit 10.1.2.0.6
    1) Stop all applications using the database
    2) Navigate to the directory apex/owa
    3) Connect via SQL*Plus as the database user SYS
    4) Run the PL/SQL Web Toolkit installation script by issuing: @owainst.sql
    5) Review the output displayed from owainst.sql and ensure no errors were encountered.
    6) Confirm the PL/SQL Web Toolkit version is 10.1.2.0.6 or greater by connecting to the database
    as the SYS user and running the query:
    select owa_util.get_version from dual;
    7) Run the utlrp.sql script from the Oracle Database home to recompile all invalid PL/SQL
    packages now instead of when the packages are accessed for the first time. This step is
    optional but recommended. To run utlrp.sql, issue: @?/rdbms/admin/utlrp.sql
    Saad

  • Again google web services

    hi all,
    i am able to display the first 10 urls while consuming the google web services...
    how to display the urls in the succeeding pages...
    i.e. i am able to display only 10 results of 300,000 results.
    regards,
    purushothaman.

    hi martin,
    i dont find the method you mentioned in my api's..
    can u suggest a code snippet for doing that...
    regards,
    purushothaman.

  • Pl/Sql Web Toolkit vs. Apex

    What are the main differences between Apex and Pl/Sql web pages?
    Is Pl/Sql Web Toolkit better for bigger and more complex applications since you do everything from scratch? ?. Since Apex is build in Pl/sql i think it's just a shorcut(a faster way) to build web applications.
    Please corect me if i'm wrong.
    All my regards,
    Popovich Jhyr

    You are serious asking this in the APEX support forum?? APEX allows you to develop the application in a RAD fashion, where as doing stuff with the pl/sql toolkit is all done by hand.. Plus APEX handles the session handling for you...
    'nuff said.. If you want to do things by hand, glad I am NOT paying your salary...
    Thank you,
    Tony Miller
    Webster, TX
    I cried because I did not have an office with a door until I met a man who had no cubicle.
    -Dilbert

  • Keyboard not working in Google Web Designer

    I just installed google web designer from AUR. ( https://aur.archlinux.org/packages/google-webdesigner/ )
    And I have the weirdest problem, the keyboard seems to stop working in the program somehow the keyboard does work after launch, but it seems to stop working after I use the mouse or something similar.
    As an example, after launch I can press Ctrl+N for "new file" and then press tab until I get to the name field, and type all I want.
    I can repeat this, press Ctrl+N and then click the name field, and the keyboard stops working. I can then close the window and press Ctrl+N again, but this time the window won't open (i.e. keyboard input is completely dead to the program). Below is all the terminal output I get when I launch the program, by the looks of it nothing seems suspicious in relation to this issue.
    $ google-webdesigner
    [0331/215852:ERROR:browser_main_loop.cc(161)] Running without the SUID sandbox! See https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
    which: no google-chrome in (/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl)
    which: no firefox in (/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl)
    which: no opera in (/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl)
    [0331/215853:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Does this happen to anybody else? Anyone got a clue what might be up?
    My Desktop environment is a pretty basic LXDE setup, and my keyboard is Razer Blackwidow, Mouse is a basic 5 button logitech mouse, I've never had any problems whatsoever with it.I am running on the evdev input driver (latest version of libinput crashes xorg if this keyboard is present and I try to use it) I have confirmed however that this issue is not specific to my keyboard (I tried another generic keyboard, it gave the same results)
    Last edited by rabcor (2015-03-31 22:24:46)

    Hello, I am maintaner of the AUR package, I tried right now, and I dont have any described problems you have. And honestly I have no idea how to help you.
    I have tested GWD under Xfce4.12 and Openbox, and no issues, like this.
    You may try here https://groups.google.com/forum/#!forum/gwdbeta to get to the bottom of it, if no luck here.
    Last edited by jvb (2015-04-01 06:50:26)

  • How to print a page written in pl/sql web toolkit

    Dear members,
    I have a time sheet page created using pl/sql web toolkit. I want to submit this page to the printer.
    Please let me know, if there are any examples or documents on this one.
    Thanks
    Murugan

    I try to show/hide a div depending on the occurence of errors. I resolved this problem by doing this in javascript.
    function showEdu(){
    $("#edu").animate({ height: 'show', opacity: 'show' }, 'slow');
    $s('P6_EDU_SHOWN','Y');
    function hideEdu(){
    $("#edu").animate({ height: 'hide', opacity: 'hide' }, 'slow');
    $s('P6_EDU_SHOWN','N');
    function checkEduError(){
    if($("span").hasClass("errTxt") == true)
    {showEdu();}
    else
    if($v('P6_EDU_SHOWN') == 'Y')
    {showEdu();}
    else
    {hideEdu();}
    }

  • Questions regarding Outlook Web App, Remote Desktop, Remote Web Access and VPN Access

    Hi there,
    I want to ask a series of questions regarding Outlook Web App, Remote Desktop, Remote Web Access and VPN access and was hoping whether you could help me. Below are my questions to ask you.
    Outlook Web App - What do I need to configure in order to get my Exchange account to work with the OWA app on my iPhone? Is Office 360 required on the server that hosts Outlook Web App in our organisation? When I configure the settings and
    connect I get the following message "couldn't connect -  We couldn't connect to the server. Check your information and make sure it's correct." I can connect with other devices using Outlook Web App.
    Remote Desktop - What do I need to configure in order to connect to my computer at work using Remote Desktop on my Windows Phone? When I configure the settings and connect I get the following message "Connection error - We couldn't connect
    to the remote PC. Make sure the PC is turned on and connected to the network, and that remote access is enabled. Inquiring minds may find this error code helpful: 0x204" I can connect with other devices using Remote Desktop. There are currently no
    RD Server settings in the Remote Desktop app on the Windows Phone and the only way I'm to connect to my PC at work is via Remote Desktop and not to be confused with the one by Microsoft, however the app is on a trial basis and times out every 5 minutes and
    can only be used once every hour unless I purchased the app for £2.99 off the App Store but would ideally like to use the Microsoft Remote Desktop app though.
    Remote Web Access - What do I need to configure in order to get Remote Web Access on my Windows Phone using a URL? When I log in using a URL I get the following message "There is a problem with this Web page. Please contact the person who manages
    the server" I can connect with other devices using Remote Web Access. Also how do you enable the background option for Remote Web Access? I know how to do this in Remote Desktop but not in Remote Web Access. Remote Web Access works on PCs regardless
    being onsite and offsite and on my iPhone, the same issue also occurs with my Nokia 5230s regardless of whether I'm using Opera Mobile or Mini or the latest Nokia Browser.
    VPN access - How do you configure VPN access on a Windows Phone using VPN? I cannot find the protocols PPTP, L2TP, SSTP and IPsec in order to configure VPN access on the Windows Phone apart from IKEv2.
    Many thanks,
    RocknRollTim

    Any help would be much appreciated.
    Kind regards,
    RocknRollTim

Maybe you are looking for

  • Pdf file extension with Interenet explorer

    Hello everybody i am new to this group, I have a button on my screen written in jsp. on clicking it i should generate pdf file on the fly and send it to the front end.I am abe to create the pdf file and send to the front end by setting the response m

  • Key board will not work?

    My keyboard on my I Pad is frozen and I cannot get my secure code to log on? . Iam using my Lap top to ask this question presently

  • Storage shows 200 GB of backup but where is that folder?

    I am new to MAC so probably a silly question: I have a Mac Book Pro with OS X 10.7.3. I connected a external HD with 2TB and but about 500gb of stugg frommy PCs on there. Then I hooked up the Mac and time machine asked me if I wanted to use the Exter

  • Problem in Login to Enterprise Manager Cosole

    I have installed ORACLE 9i Rel:9.0.1.0.1, after configuring the Mangement Server when I am trying to load Enterprise Manager Console program and when I enter username and password, I got an error says "Incorrect Login Credentials". If anybody can hel

  • LZW won't stick in export preset

    When I set up a TIFF Export preset, I cannot get LZW compression to stick. It's always Compression = None. Building a new preset or updating an existing one -- doesn't matter. Is this a Lightroom bug or just me? MacPro, latest Leopard, LR 2.4, tons o