Frustration in Forte

I'm attempting to compile and run my first couple "MIDlets" in Forte. Since MIDlets are much like "Applets", it's easy to guess that they don't use a main( ) method. Although my code compiles just fine using Forte, when I try to run the MIDlet, I get a NoSuchMethodException runtime error. Forte is appearantly trying to run my MIDlet like a regular "stand alone application". Now here's the kicker, it "HAS" worked just fine (once)! I turned the program off without making any adjustments, then turned it back on and could not rerun the same program which just worked for me a few hours earlier. Forte seems to have plenty of quirks in it.
I am learning to write code for wireless devices. Learning the correct syntax for the code is one thing, yet learning "Forte" is a whole other bear in itself. If there is anyone out there familiar with the Forte program who can tell me which option to click on and which drop down menus etc. to click through to correct this problem, please help me out here. Your help is greatly appreciated. Thank you in advance for your help.

Yes, learning forte in itself is a bear... i am learning it myself (using a weeping-towel as i go!)
there is a site dedicated to forte questions....
(its not as good as this java site though IMHO).
however, you can do searches etc & get more help...
you might want to try there...

Similar Messages

  • Private vs. protected, naming conventions etc.

    I've been grappling with a couple of frustrations with Forte, and I'm
    interested in feedback from others on this list regarding approaches
    they may have adopted to address these.
    One is that in the Forte workshops there is no way to view only the
    public methods and attributes of a class (we're still using V2 here; I'm
    assuming that V3 has not changed this). While referring to appropriate
    technical documentation for a class is obviously important, I still find
    myself opening up classes in the workshops to inspect the methods and
    attributes available. (What I really want to see is an integrated class
    browser. I sure hope Forte is working on something like this, or will
    open up their development environment to support third-party extensions.
    But that's an aside.)
    A convention I just recently adopted in my work is to name private
    methods and attributes with a beginning underscore ("_"). That way the
    private elements are sorted to the top of the list and can be easily
    differentiated from public elements. I'm curious, though, whether others
    have adopted similar or different approaches.
    I've also felt a bit frustrated over the lack of support for protected
    attributes/methods for TOOL classes. This strikes me as a rather
    bothersome shortcoming. The only approach I can think of is to make such
    elements public, but adopt the same or similar naming conventions as a
    strong hint to developers to avoid using these in clients of these
    classes. Again, I'd be very interested in hearing how others have dealt
    with this issue.
    Thanks.
    Michael Brennan
    Programmer/Analyst
    Amgen Inc.

    I sent this once before, but the list seemed to be having trouble late last
    week. If you get two copies of it... my apologies.
    OK, I couldn't resist joining the fray...
    At 10:56 AM 11/6/97 -0800, Michael Brennan wrote:
    >
    A convention I just recently adopted in my work is to name private
    methods and attributes with a beginning underscore ("_"). That way the
    private elements are sorted to the top of the list and can be easily
    differentiated from public elements. I'm curious, though, whether others
    have adopted similar or different approaches.You might even designate a single character before the underscore to denote
    that, just in case some environment (CORBA) doesn't like the "_". You could
    make it something like "Q" or "Z" or something that wouldn't normally be
    used alone at the start of a name.
    >
    I've also felt a bit frustrated over the lack of support for protected
    attributes/methods for TOOL classes. This strikes me as a rather
    bothersome shortcoming. The only approach I can think of is to make such
    elements public, but adopt the same or similar naming conventions as a
    strong hint to developers to avoid using these in clients of these
    classes. I share your desire for protected methods, but I have to disagree about
    protected attributes. Philosophically speaking, protected and public
    attributes are EVIL!! (I say "philosophically speaking" because, in the
    Forte environment, there are some valid reasons for using them based upon
    the visibility constraints of the language. In other languages, C++ and
    Java, for example, it's not even philosophically speaking - they're just
    evil!!)
    One of the principal reasons for adopting the object paradigm is to
    tightly control the impact of change - to provide good boundaries of
    encapsulation that change does not ripple beyond. If you think about it,
    one of the measures of the success of a superclass is the number of
    subclasses that it has (especially for a good dabstract interface). This
    says you have very nicely captured the semantics of the application domain
    in the interface of the superclass. So, let's imagine a superclass with
    protected attributes that are used by each of its 100 subclasses (probably
    more than you would have, but I'm illustrating my point - incidentally, I'm
    not talking about a hierarchy 100 deep; I'm talking about 100 subclasses
    that are all direct decendants of the superclass). Now you go and change
    one of the attributes. You must go look at all 100 subclasses to determine
    the impact of change. This is exactly the kind of thing the object paradigm
    was designed to eliminate.
    Protected methods, on the other hand, would be nice.
    And At 12:06 PM 11/6/97 -0800, Mark S. Potts wrote:
    >
    Forte inherits in a strange way when attributes are private. A
    superclass attribute that is made private is not accessible from any of
    its subclasses - this means that many of what you would consider private
    attributes in fact have to be public. Well, the definition of private means "not visible outside of the class
    where it is defined". I find it useful to think of the level of visibility
    the same as secrets. There are things that are not really secrets at all -
    it's ok if anyone knows them ("My name is Stephen"). These are public.
    Then, there are things that it's ok if my family knows, but I don't want
    the world to know - familial secrets, if you will ("I belch at the dinner
    table when I'm at home"). These are visible to descendant classes and we
    call them protected. Finally, there are things we don't want anyone else
    to know, no matter who they are ("I poisoned my mother-in-law"). These are
    private. We don't want anyone outside of ourselves to know these things.
    These are the classic definitions of public, protected and private (perhaps
    classic only because C++ defined them that way and everyone else just
    copied what it meant).
    Private attributes are not meant to be inherited by their subclasses.
    That's why they're private. And, yes, I would argue that that is completely
    correct. What you want, if you want them to be visible to subclasses, is
    "protected". Now, Forte doesn't support protected, but that's a different
    arguement - perhaps even an enhancement request.
    We also should not confuse what we need to do in a language/environment
    with what good OO principles are. For example, good OO design principles
    state that you do not have public or protected attributes. Period! You
    access them via accessors and mutators defined on the appropriate class.
    Now, in some environments, this will not give you the performance you need,
    so you open things up a bit. But, you shouldn't convince yourself that
    doing this is the ideal design, just that it was necessary for performance.
    The real problem here is that the performance of accessor and mutator
    functions is not fast enough. That's why we open it up. Not because it is
    good design. The proper way to fix the problem is to make accessors and
    mutators fast enough so that they can be used (C++, for example, does this
    with "inline" - not that C++ is my favorite language, it's not. But they
    have fixed this one area nicely.)
    Some would argue that this is correct and that inheritance does break thepure rules
    of encapsulation I don't think inheritance, properly handled (and Forte does properly
    handle it) breaks any rules of encapsulation. I would argure that the way
    they treat private attributes is quite correct.
    - but these people dont build applications!Hmmm... let's see... started building OO applications in 1985 (and building
    them ever since) in complex application domains like CAD/CAM/CAE, Air
    Traffic Control, Graphics/Imaging, Telecommunications, e-commerce,
    entertainment,... ...wrote (and teach) the Forte OO Analysis and Design
    course.
    I guess you're right. I don't build applications. I build robust,
    maintainable, extendable applications. ( ;-) ...nudge, nudge!)
    Stephen

  • Here's my fix for Forte installer hang on WinMe.

    Hi all (all those with problems anyway :) ,
    (I tried to post this in the Sun ONE Studio forum
    but always got an error)
    I had a problem installing Sun One Studio 4 Update 1.
    It would keep freezing when it started searching for
    the J2SDK, with the message: "Searching for suitable
    J2SDK, please wait..".
    Well, here's what worked for me on WinMe. Not all of
    these steps may be necessary.
    Install J2SDK to "C:\j2sdk1.4.1_01". First I uninstalled
    it because it was in a folder with a space in the name. I
    heard that was an issue with some OS's.
    Create a text file containing the text "jh=C:\j2sdk1.4.1_01".
    Close it and rename it as "ffj_ce_win32_en.sp". It's appar-
    ently important that its name is the same as the installer,
    except for the "sp" extension of course.
    Put it into the same directory with ffj_ce_win32_en.exe
    ( the Forte installer ).
    Leave the name of the Forte installer as original (instead
    of renaming it to something more descriptive for example ).
    Mine was named "ffj_ce_win32_en.exe".
    In C:\Windows\
    Rename java.exe to java-.exe
    Rename javaw.exe to javaw-.exe
    The important thing here is to make sure their new names are
    unlikely to conflict with the names of any other files that
    might be placed there later.
    Now run the installer again and make it (finally !),
    After I did all the above, it immediately found the correct
    folder (instead of the usual freeze-up).
    Hope this helps someone else too.

    Thanx!!! A frustrating hour and a half later I found your post and it worked beautifully!

  • 7 Hours left :(! I hate Java Forte SO MUCH. Please help! Not much time

    7 Hours left :(! I hate Java Forte SO MUCH. Please help! Not much time
    Ok I first Installed Java Forte cause I had to a Course and the teacher gave us an Exe which was 62 MB on a Disc and i ran it and put Java Forte On My Computer. I also put a JDK program on my computer through a Java book(Got a CD with it).I could do my Java at home but there was a massive problem. I am using Windows XP and if i used java, My Computer would never shut down cause java would always be running. So this got frustrating and i decided to uninstall it.(Also the Java Plug in decided to stop my java Yahoo chat on IE).When i uninstalled it, I am not sure if i deleted the folder, Did it through control panel(Add/Remove), Or use the uninstaller, I didnt think there was an uninstaller.
    Anyway there was still some jc.java and java Web Start folders and J2SDK folder on my HDD.
    A while later I get a big Java Assignment to do, I decide to install the Java again on my Computer, I go ahead and click the exe, It takes me to an intall place, I wait, Wait impatiently for 1 hour, It just froze on the install screen. I also tryed it on my old PC which had java, It froze But before it frose it said i already had it installed (Which it wasnt anymore). So i though maybe its the CD or something. So my friend gives me his CD and i try, Yet again it stayed like that for 2 hours. I was so frustrated. I ended up Going to control panel and removed the java Web Start and deleted the J2sdk FOlder and deleted the java Plug in from where it locates it.
    I then decide to install Java again but this time it takes me to the uninstaller? Why did it try to install from this exe but after i deleted stuff both CD's Mine and my Friends take to to the uninstaller? Well anyway i decided to Uninstall it like it said"Java Forte 3 and Some other little thing" Then i waited and it said Uninstall Complete. I double click the exe on the CD again and it takes me to the uninstaller again? I was like WTF? How do i install Java? Its just the biggest pain? Why is it taking me there instead of the actuall installer?
    Also I dislike other java programs as 1, You cant Execute the code cause its only HTML compatible and or you need the JDK files accosiated with the JCreator which i cant Understand.
    Also i got Jreal and it actually worked, But there is no uninstaller for it and it has no Removeal in the Control panel? Whats up with that? Also its good how it works. But for some reason it doesnt accept the code properly as the buttons and labels just appear everywhere and stay there even if i change forms and are messed up compared to when i run it on Java Forte at School.
    Also i have a Major Problem with Jreal as it states everytime i run an Applet "Start Applet is not Initialized?" And it shows a Blank applet? Whats up with this? I got no Errors and i think it said Exit Statement:1. But It worked before then i tryed it and it does this all the time for all my Java Program Applets. So I have no idea. It really frustrates me as it was working and i did no changes to the code and it wont let me test any more :(! Why is this happenning to me?
    Please help me in the best way you can, I dont have much time, 7 Hours to be Precise to do it in!
    Please if you can help me with any problems about installing or evening trying to be able to run Jcreator(Dont understand How to link it with JDK) or any good Java Programs to download that are easy to use(I dont have enough time to read). I couldnt understand CoffeeCup as it was HTML only? and only could run as a Web Page! But any help on Any of these problems that i suffer including Jreal How to Uninstall? Plus Mainly trying to get Java Forte Runnign as that was the only one that was properly showed the correct format of my Coding Applet.

    Awww :(

  • Cannot activate browse in Forte

    Hi, Please Help, this is killing me! :)
    When Control-7 or executing a web project, Forte 4 keeps saying this:
    "Could not access the URL through the external browser. Check the configuration. In the Options window, expand IDE Configuration. Then expand Server and External Tool Settings and select Web Browsers"
    I verified the setting and appear to be ok. Also if I execute the project, open manually the browser and write the url it works.
    Lorenzo Jimenez
    Costa Rica

    Hi... yep... this took me a couple of trys...
    1. go to Tools/Options/Server and External Tool Setting
    2. select Web Browsers/External Browser (Windows)
    3. set your path to Netscape.exe (mine was C:\Program Files\Netscape\Netscape\Netscp.exe)
    4 Now make sure you select NETSCAPE6 for the DDE Server property from the drop-down menu for that property...
    Hope this helps...It took several frustrating moments to figure that one out...
    Marko

  • Re: (forte-users) Oggetto: Re: (forte-users) mouseCursors

    Luca,
    Forte makes use of mouse settings on the machine on which
    the app is being run.
    You can ad custom cursors by making the default
    cursor schemes use your bitmaps( Windows/Control Panel/ Mouse ).
    But when you deploy your app, if the client machine(s)
    has a different setting, you will not see your
    custom cursors.
    I don't know if there is a way in Forte to tweak
    Mouse settings on client machines. Even if there was a
    way, how would you add the the custom cursor(s) to
    app distribution??
    Ajith Kallambella M.
    Forte Consultant.
    From: Luca Gioppo <[email protected]>
    To: [email protected]
    CC: [email protected]
    Subject: (forte-users) Oggetto: Re: (forte-users) mouse Cursors
    Date: Tue, 19 Oct 1999 17:20:00 +0200
    Aready tryed, but with 'sad' result.
    My application run under win '95 and cursors look really .. lets say
    umpleasant.
    I'd like to have a bitmap of mine or something like that.
    Hoped that things like that were not so difficult, even with some
    costraint.
    Luca
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]

    I went through the same process some time back. I
    submitted a call to Forte and was informed that there
    are hooks but they were intentionally undocumented
    because Forte had plans to provide a interface to
    Source Control Managers in future releases. If you
    submit a call, they will send you a ZIP file
    containing instructions on how to use the hooks. The
    hooks have proven very useful.
    --- Luca Gioppo <Luca.Gioppocsi.it> wrote:
    >
    >
    I think that the topic is still open and alive.
    In my case I have the need to integrate with PVCS
    dimension.
    The problem for me is that we develop both with java
    and tool, and is
    frustrating seeing java people smiling as tha
    various tools give the chance to
    integrate to various extends with source control
    products.
    I'm interested too in the problem, looking for a
    solution since a bit, but no
    satifactory solutions.
    So count 2 on the problem.
    Luca
    "David Potts" <david.pottss1.com> il 23/11/2000
    17.12.47
    Per: forte-userslists.xpedior.com
    cc: (ccr: Luca Gioppo/CSI/IT)
    Oggetto: (forte-users) Source Control
    Hello,
    I'm looking how to do version control for forte
    development, and have
    done a search on the list archive. There are lots
    of messages asking
    how to do source control, but the answers all seem
    to be "roll your
    own". My questions are:
    (1) Most of the postings seem to come from some
    years ago. What is the
    current state of play with source control for forte
    4GL?
    (2) There was some mention of "hooks". What are
    these hooks?
    (3) With Sun appearing on the scene, anyone got any
    idea where source
    control is going in future versions?
    I'm very new to Forte, so sorry if this topic has
    been closed.
    Cheers,
    Dave.
    ATTACHMENT part 2 application/octet-streamname=david.potts.vcf
    http://shopping.yahoo.com/

  • Re: (forte-users) Oggetto: (forte-users) FYI: Forte 3.5Document

    I'm very interested too in know when will be available this release 3.5.
    Regards,
    Danielk
    ----- Original Message -----
    From: "Luca Gioppo" <Luca.Gioppocsi.it>
    To: <Forte-userslists.xpedior.com>
    Sent: Saturday, October 14, 2000 8:37 AM
    Subject: (forte-users) Oggetto: (forte-users) FYI: Forte 3.5 Document
    >
    >
    Does anyone know when will be available 3.5?
    Things in the docs are quite promising.
    Luca
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    I went through the same process some time back. I
    submitted a call to Forte and was informed that there
    are hooks but they were intentionally undocumented
    because Forte had plans to provide a interface to
    Source Control Managers in future releases. If you
    submit a call, they will send you a ZIP file
    containing instructions on how to use the hooks. The
    hooks have proven very useful.
    --- Luca Gioppo <Luca.Gioppocsi.it> wrote:
    >
    >
    I think that the topic is still open and alive.
    In my case I have the need to integrate with PVCS
    dimension.
    The problem for me is that we develop both with java
    and tool, and is
    frustrating seeing java people smiling as tha
    various tools give the chance to
    integrate to various extends with source control
    products.
    I'm interested too in the problem, looking for a
    solution since a bit, but no
    satifactory solutions.
    So count 2 on the problem.
    Luca
    "David Potts" <david.pottss1.com> il 23/11/2000
    17.12.47
    Per: forte-userslists.xpedior.com
    cc: (ccr: Luca Gioppo/CSI/IT)
    Oggetto: (forte-users) Source Control
    Hello,
    I'm looking how to do version control for forte
    development, and have
    done a search on the list archive. There are lots
    of messages asking
    how to do source control, but the answers all seem
    to be "roll your
    own". My questions are:
    (1) Most of the postings seem to come from some
    years ago. What is the
    current state of play with source control for forte
    4GL?
    (2) There was some mention of "hooks". What are
    these hooks?
    (3) With Sun appearing on the scene, anyone got any
    idea where source
    control is going in future versions?
    I'm very new to Forte, so sorry if this topic has
    been closed.
    Cheers,
    Dave.
    ATTACHMENT part 2 application/octet-streamname=david.potts.vcf
    http://shopping.yahoo.com/

  • Forte(for java) CE question

    Hello people!
    (I found no forum on Forte for java, so I ask my question here)
    Here is it. How can I make Forte know my packages, and support dot notation? ie, say I have a mypack.myotherpack.SomeClass class. When I type
    import mypack.
    at this point it should show what subpackages are available in mypack.
    And if
    SomeClass instance = new ...;
    instance.
    here it should show methods, fields.... But Forte shows all these only in packages and classes that "it already knows" somehow. Does anybody how this is done? It is very frustrating that it does not happen. Thx!

    What class is not found?

  • Oggetto: Re: (forte-users) XML - ExportDocumentproblem

    Ok, I'll detail the question.
    The application I'm talking about is a Fort&egrave; server and a Java client (or other
    client platform).
    I have to send via HTTP a XML message to and from the two.
    I'm developing the Forte side (but think will have the same problems in Java).
    Since there could be lots of client sides developed by others teams (or given
    out to external suppliers) my concern is to send the message containing the DTD
    information to enforce the validation on the various application.
    Maybe you are right and I'm overcautious, but the messages are to be built
    following the various DTDs (and this is impossible aside starting from a xml
    template, since I cannot create a DTD runtime or insert a declaration <!DOCUMENT
    ...> ... I'll example:)
    doc : document = new();
    xml : processistruction = doc.createprocessistruction('xml version="1.0"');
    root : element = doc.createelement('root');
    dtd : ????? = doc.create??????(???);
    doc.addchild(xml);
    doc.appendchild(dtd);
    doc.addchild(root);
    All would be nice if I only know how to fill the ???
    This is needed because I want to use the parser to make the work for me and
    check the doc while I build it.
    Also since the DTD should be put on a url it could change and I need to send
    this info along with the message to inform the client (since I'm the server
    [suffering of multiple personality problem] I think is my duty).
    If I recall well DTD are meant to force the parser to create defaults and things
    like that.
    As I said I'm new of the problem and probabli I may use DTD in a wrong way, but
    Luca
    Matthew Middleton <mathew.middletonlawpoint.com.au> il 09/08/2000 01.03.16
    Per: forte-userslists.xpedior.com
    cc: (ccr: Luca Gioppo/CSI/IT)
    Oggetto: Re: (forte-users) XML - ExportDocument problem

    I went through the same process some time back. I
    submitted a call to Forte and was informed that there
    are hooks but they were intentionally undocumented
    because Forte had plans to provide a interface to
    Source Control Managers in future releases. If you
    submit a call, they will send you a ZIP file
    containing instructions on how to use the hooks. The
    hooks have proven very useful.
    --- Luca Gioppo <Luca.Gioppocsi.it> wrote:
    >
    >
    I think that the topic is still open and alive.
    In my case I have the need to integrate with PVCS
    dimension.
    The problem for me is that we develop both with java
    and tool, and is
    frustrating seeing java people smiling as tha
    various tools give the chance to
    integrate to various extends with source control
    products.
    I'm interested too in the problem, looking for a
    solution since a bit, but no
    satifactory solutions.
    So count 2 on the problem.
    Luca
    "David Potts" <david.pottss1.com> il 23/11/2000
    17.12.47
    Per: forte-userslists.xpedior.com
    cc: (ccr: Luca Gioppo/CSI/IT)
    Oggetto: (forte-users) Source Control
    Hello,
    I'm looking how to do version control for forte
    development, and have
    done a search on the list archive. There are lots
    of messages asking
    how to do source control, but the answers all seem
    to be "roll your
    own". My questions are:
    (1) Most of the postings seem to come from some
    years ago. What is the
    current state of play with source control for forte
    4GL?
    (2) There was some mention of "hooks". What are
    these hooks?
    (3) With Sun appearing on the scene, anyone got any
    idea where source
    control is going in future versions?
    I'm very new to Forte, so sorry if this topic has
    been closed.
    Cheers,
    Dave.
    ATTACHMENT part 2 application/octet-streamname=david.potts.vcf
    http://shopping.yahoo.com/

  • (forte-users) Oggetto: Re: (forte-users) WebSessionManagement

    Luca,
    This problem has been fixed in WebEnterprise 1.0.E and you can now trap the SessionTimingOut event (see Forte Tech Note 12260). We've just started using it and it seems to work OK.
    Regards,
    Mark Carruthers
    20th Century Fox
    Luca Gioppo <Luca.GioppoCSI.IT> 07/25/00 08:04AM >>>We have used the session management of WE, but found that there is a huge
    limitation, you are not notified of the timeout of the session.
    Let's suppose that I start a session from my browser, on his side WE create the
    session and write a few files (to say something) that depend on my session (on a
    dir of the web server dynamically created based on my session).
    I close the browser and the session will eventually timeout, but the process on
    the server need to be notified to be abled to clear the files.
    Unfortunately no events whatsoever are fired so we have to poll and mopnitor the
    session by ourselves.
    A pity.
    Anyway if you do not have to do such strange things you are quite safe and
    confortable in using them.
    Bye
    Luca Gioppo
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    I went through the same process some time back. I
    submitted a call to Forte and was informed that there
    are hooks but they were intentionally undocumented
    because Forte had plans to provide a interface to
    Source Control Managers in future releases. If you
    submit a call, they will send you a ZIP file
    containing instructions on how to use the hooks. The
    hooks have proven very useful.
    --- Luca Gioppo <Luca.Gioppocsi.it> wrote:
    >
    >
    I think that the topic is still open and alive.
    In my case I have the need to integrate with PVCS
    dimension.
    The problem for me is that we develop both with java
    and tool, and is
    frustrating seeing java people smiling as tha
    various tools give the chance to
    integrate to various extends with source control
    products.
    I'm interested too in the problem, looking for a
    solution since a bit, but no
    satifactory solutions.
    So count 2 on the problem.
    Luca
    "David Potts" <david.pottss1.com> il 23/11/2000
    17.12.47
    Per: forte-userslists.xpedior.com
    cc: (ccr: Luca Gioppo/CSI/IT)
    Oggetto: (forte-users) Source Control
    Hello,
    I'm looking how to do version control for forte
    development, and have
    done a search on the list archive. There are lots
    of messages asking
    how to do source control, but the answers all seem
    to be "roll your
    own". My questions are:
    (1) Most of the postings seem to come from some
    years ago. What is the
    current state of play with source control for forte
    4GL?
    (2) There was some mention of "hooks". What are
    these hooks?
    (3) With Sun appearing on the scene, anyone got any
    idea where source
    control is going in future versions?
    I'm very new to Forte, so sorry if this topic has
    been closed.
    Cheers,
    Dave.
    ATTACHMENT part 2 application/octet-streamname=david.potts.vcf
    http://shopping.yahoo.com/

  • Debugging Forte Pain

    Hi,
    Do anyone know how to use the Forte 3.0 CE to debug JSP/Servlet running under Tomcat?
    I hv refer to http://forum.java.sun.com/thread.jsp?forum=33&thread=65389 but it does not work out...it only prompt the error below.
    Well,i am running JBoss-2.4.10_Tomcat-4.0.6.
    Anyone Java Expertise wanna offer help? Really appreciate help right now cause this really really frustrating!
    =========================
    error message
    =========================
    C:\Documents and Settings\Xuser\Desktop>java -Dtomcat.home="%catalina_home" -Xdebug -Xnoagent -Xrunjdwp:transport=dt_so
    ket,address=8000,server=y,suspend=n org.apache.tomcat.startup.Tomcat
    ERROR reading %catalina_home%\conf\server.xml
    At null
    FATAL: configuration error
    java.lang.IllegalArgumentException
    at sun.net.www.ParseUtil.decode(Unknown Source)
    at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromDocument(DefaultEntityHandler.java:491)
    at org.apache.xerces.framework.XMLParser.parseSomeSetup(XMLParser.java:312)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1080)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:290)
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:187)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    C:\Documents and Settings\cpoon\Desktop>java -Dtomcat.home="%catalina_home%" -Xdebug -Xnoagent -Xrunjdwp:transport=dt_s
    cket,address=8080,server=y,suspend=n org.apache.tomcat.startup.Tomcat
    Starting tomcat. Check logs/tomcat.log for error messages
    ContextManager: Engine init
    Ctx( /examples ): Add context
    ContextManager: Adding context Ctx( /examples )
    Ctx( /manager ): Add context
    ContextManager: Adding context Ctx( /manager )
    Ctx( /pm ): Add context
    ContextManager: Adding context Ctx( /pm )
    Ctx( ): Add context
    ContextManager: Adding context Ctx( )
    Ctx( /tomcat-docs ): Add context
    ContextManager: Adding context Ctx( /tomcat-docs )
    Ctx( /webdav ): Add context
    ContextManager: Adding context Ctx( /webdav )
    Ctx( /examples ): Context Init
    XmlMapper: Can't find resource for entity: -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN --> http://java.sun.c
    m/dtd/web-app_2_3.dtd "null"
    java.net.ConnectException: Operation timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalEntity(DefaultEntityHandler.java:767)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalSubset(DefaultEntityHandler.java:566)
    at org.apache.xerces.framework.XMLDTDScanner.scanDoctypeDecl(XMLDTDScanner.java:1139)
    at org.apache.xerces.framework.XMLDocumentScanner.scanDoctypeDecl(XMLDocumentScanner.java:2145)
    at org.apache.xerces.framework.XMLDocumentScanner.access$0(XMLDocumentScanner.java:2100)
    at org.apache.xerces.framework.XMLDocumentScanner$PrologDispatcher.dispatch(XMLDocumentScanner.java:831)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1081)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:290)
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    ERROR reading C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\examples\WEB-INF\web.xml
    java.lang.Exception: Can't open config file: C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\examples\WEB-INF\web.xml due
    to: java.net.ConnectException: Operation timed out: connect
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:223)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    cannot load servlet name: jsp: org.apache.jasper.servlet.JspServlet
    Ctx( /manager ): Context Init
    XmlMapper: Can't find resource for entity: -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN --> http://java.sun.c
    m/dtd/web-app_2_3.dtd "null"
    java.net.ConnectException: Operation timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalEntity(DefaultEntityHandler.java:767)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalSubset(DefaultEntityHandler.java:566)
    at org.apache.xerces.framework.XMLDTDScanner.scanDoctypeDecl(XMLDTDScanner.java:1139)
    at org.apache.xerces.framework.XMLDocumentScanner.scanDoctypeDecl(XMLDocumentScanner.java:2145)
    at org.apache.xerces.framework.XMLDocumentScanner.access$0(XMLDocumentScanner.java:2100)
    at org.apache.xerces.framework.XMLDocumentScanner$PrologDispatcher.dispatch(XMLDocumentScanner.java:831)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1081)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:290)
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    ERROR reading C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\manager\WEB-INF\web.xml
    java.lang.Exception: Can't open config file: C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\manager\WEB-INF\web.xml due
    o: java.net.ConnectException: Operation timed out: connect
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:223)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    cannot load servlet name: jsp: org.apache.jasper.servlet.JspServlet
    Ctx( /pm ): Context Init
    XmlMapper: Can't find resource for entity: -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN --> http://java.sun.c
    m/dtd/web-app_2_3.dtd "null"
    java.net.ConnectException: Operation timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalEntity(DefaultEntityHandler.java:767)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalSubset(DefaultEntityHandler.java:566)
    at org.apache.xerces.framework.XMLDTDScanner.scanDoctypeDecl(XMLDTDScanner.java:1139)
    at org.apache.xerces.framework.XMLDocumentScanner.scanDoctypeDecl(XMLDocumentScanner.java:2145)
    at org.apache.xerces.framework.XMLDocumentScanner.access$0(XMLDocumentScanner.java:2100)
    at org.apache.xerces.framework.XMLDocumentScanner$PrologDispatcher.dispatch(XMLDocumentScanner.java:831)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1081)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:290)
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    ERROR reading C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\pm\WEB-INF\web.xml
    java.lang.Exception: Can't open config file: C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\pm\WEB-INF\web.xml due to: j
    va.net.ConnectException: Operation timed out: connect
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:223)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    cannot load servlet name: jsp: org.apache.jasper.servlet.JspServlet
    Ctx( ): Context Init
    XmlMapper: Can't find resource for entity: -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN --> http://java.sun.c
    m/dtd/web-app_2_3.dtd "null"
    java.net.ConnectException: Operation timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalEntity(DefaultEntityHandler.java:767)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalSubset(DefaultEntityHandler.java:566)
    at org.apache.xerces.framework.XMLDTDScanner.scanDoctypeDecl(XMLDTDScanner.java:1139)
    at org.apache.xerces.framework.XMLDocumentScanner.scanDoctypeDecl(XMLDocumentScanner.java:2145)
    at org.apache.xerces.framework.XMLDocumentScanner.access$0(XMLDocumentScanner.java:2100)
    at org.apache.xerces.framework.XMLDocumentScanner$PrologDispatcher.dispatch(XMLDocumentScanner.java:831)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1081)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:290)
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    ERROR reading C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\ROOT\WEB-INF\web.xml
    java.lang.Exception: Can't open config file: C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\ROOT\WEB-INF\web.xml due to:
    java.net.ConnectException: Operation timed out: connect
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:223)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    cannot load servlet name: jsp: org.apache.jasper.servlet.JspServlet
    Ctx( /tomcat-docs ): Context Init
    XmlMapper: Can't find resource for entity: -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN --> http://java.sun.c
    m/dtd/web-app_2_3.dtd "null"
    java.net.ConnectException: Operation timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalEntity(DefaultEntityHandler.java:767)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalSubset(DefaultEntityHandler.java:566)
    at org.apache.xerces.framework.XMLDTDScanner.scanDoctypeDecl(XMLDTDScanner.java:1139)
    at org.apache.xerces.framework.XMLDocumentScanner.scanDoctypeDecl(XMLDocumentScanner.java:2145)
    at org.apache.xerces.framework.XMLDocumentScanner.access$0(XMLDocumentScanner.java:2100)
    at org.apache.xerces.framework.XMLDocumentScanner$PrologDispatcher.dispatch(XMLDocumentScanner.java:831)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1081)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:290)
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    ERROR reading C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\tomcat-docs\WEB-INF\web.xml
    java.lang.Exception: Can't open config file: C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\tomcat-docs\WEB-INF\web.xml
    ue to: java.net.ConnectException: Operation timed out: connect
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:223)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    cannot load servlet name: jsp: org.apache.jasper.servlet.JspServlet
    Ctx( /webdav ): Context Init
    XmlMapper: Can't find resource for entity: -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN --> http://java.sun.c
    m/dtd/web-app_2_3.dtd "null"
    java.net.ConnectException: Operation timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalEntity(DefaultEntityHandler.java:767)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalSubset(DefaultEntityHandler.java:566)
    at org.apache.xerces.framework.XMLDTDScanner.scanDoctypeDecl(XMLDTDScanner.java:1139)
    at org.apache.xerces.framework.XMLDocumentScanner.scanDoctypeDecl(XMLDocumentScanner.java:2145)
    at org.apache.xerces.framework.XMLDocumentScanner.access$0(XMLDocumentScanner.java:2100)
    at org.apache.xerces.framework.XMLDocumentScanner$PrologDispatcher.dispatch(XMLDocumentScanner.java:831)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1081)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:290)
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    ERROR reading C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\webdav\WEB-INF\web.xml
    java.lang.Exception: Can't open config file: C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\webdav\WEB-INF\web.xml due t
    : java.net.ConnectException: Operation timed out: connect
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:223)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    cannot load servlet name: jsp: org.apache.jasper.servlet.JspServlet
    PoolTcpConnector: Starting HttpConnectionHandler on 0
    C:\Documents and Settings\cpoon\Desktop>java -Dtomcat.home="%catalina_home%" -Xdebug -Xnoagent -Xrunjdwp:transport=dt_s
    cket,address=8080,server=y,suspend=n org.apache.tomcat.startup.Tomcat
    Starting tomcat. Check logs/tomcat.log for error messages
    ContextManager: Engine init
    Ctx( /examples ): Add context
    ContextManager: Adding context Ctx( /examples )
    Ctx( /manager ): Add context
    ContextManager: Adding context Ctx( /manager )
    Ctx( /pm ): Add context
    ContextManager: Adding context Ctx( /pm )
    Ctx( ): Add context
    ContextManager: Adding context Ctx( )
    Ctx( /tomcat-docs ): Add context
    ContextManager: Adding context Ctx( /tomcat-docs )
    Ctx( /webdav ): Add context
    ContextManager: Adding context Ctx( /webdav )
    Ctx( /examples ): Context Init
    XmlMapper: Can't find resource for entity: -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN --> http://java.sun.c
    m/dtd/web-app_2_3.dtd "null"
    java.net.ConnectException: Operation timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalEntity(DefaultEntityHandler.java:767)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalSubset(DefaultEntityHandler.java:566)
    at org.apache.xerces.framework.XMLDTDScanner.scanDoctypeDecl(XMLDTDScanner.java:1139)
    at org.apache.xerces.framework.XMLDocumentScanner.scanDoctypeDecl(XMLDocumentScanner.java:2145)
    at org.apache.xerces.framework.XMLDocumentScanner.access$0(XMLDocumentScanner.java:2100)
    at org.apache.xerces.framework.XMLDocumentScanner$PrologDispatcher.dispatch(XMLDocumentScanner.java:831)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1081)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:290)
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    ERROR reading C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\examples\WEB-INF\web.xml
    java.lang.Exception: Can't open config file: C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\examples\WEB-INF\web.xml due
    to: java.net.ConnectException: Operation timed out: connect
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:223)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    Ctx( /examples ): Pre servlet init jsp(org.apache.jasper.servlet.JspServlet/null)
    path="/examples" :jsp: init
    Ctx( /examples ): Post servlet init jsp(org.apache.jasper.servlet.JspServlet/null)
    Ctx( /manager ): Context Init
    XmlMapper: Can't find resource for entity: -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN --> http://java.sun.c
    m/dtd/web-app_2_3.dtd "null"
    java.net.ConnectException: Operation timed out: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    at java.net.URL.openStream(Unknown Source)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalEntity(DefaultEntityHandler.java:767)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromExternalSubset(DefaultEntityHandler.java:566)
    at org.apache.xerces.framework.XMLDTDScanner.scanDoctypeDecl(XMLDTDScanner.java:1139)
    at org.apache.xerces.framework.XMLDocumentScanner.scanDoctypeDecl(XMLDocumentScanner.java:2145)
    at org.apache.xerces.framework.XMLDocumentScanner.access$0(XMLDocumentScanner.java:2100)
    at org.apache.xerces.framework.XMLDocumentScanner$PrologDispatcher.dispatch(XMLDocumentScanner.java:831)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1081)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:290)
    at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
    at org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:202)
    at org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
    at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
    at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453)
    at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195)
    at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235)
    ERROR reading C:\JBoss-2.4.10_Tomcat-4.0.6\catalina\webapps\manager\WEB-INF\web.xml
    java.lang.Exception: Can't open config file: C:\JBoss-2.4.10_Tomca

    Hello guyz, some reply pls...
    i personally feel that my problem should be improper replacement/version of library/class files which made the XML connection failed.
    Anyone can provide me web links or tutorial with the info of correct installation of (1)tomcat version, (2)necessary additional class file, (3)classpath setting, and (4)correct procedure to debug the JSP version 1.1 and Servlet version 2.3 running under WIN2K.
    I gonna try out this on a fresh machine coz Apache/SUN setting really very sensitive and this really giving me tough time to settle short timing project.
    Thanx first!

  • RE: Forte Start up Delay

    Sean,
    It may be because of the fact that your launch server is pulling down the
    latest version of your installed partitions. I think we have the same
    problem, and there are 2 ways of dealing with this. 1. Run the development
    workshop using ftexec and not use launch server. 2. Put all the developers
    into a model node that does not have any applicaitons installed into this.
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: [email protected] [SMTP:[email protected]]
    Sent: Monday, June 29, 1998 11:41 PM
    To: Venkat Kodumudi
    Subject: Forte Start up Delay
    To: [email protected] @ Internet
    cc:
    From: [email protected] @ Internet
    Date: 06/29/98 08:27:27 PM PDT
    Subject: Forte Start up Delay
    Hi all:
    We've been experiencing something interesting
    lately.
    On a HP K9000 system and a DEC AlphaServer 800
    system, the Forte Workshop window startup takes
    estimated 75 seconds of delay.
    It means, after forte printed out the usual
    "Attemping to connect to Launch Server.....
    Running release cl0 of applet Forte....... "
    messages, it will wait about 75 seconds for
    the Workshop window to show up.
    If one workshop window is up and running, any subsequence
    Forte Workshop window will show up immediately.
    After closed all the Forte Windows, the delay will happen
    again.
    We figured it might have something to do with the network
    setup, but we couldn't solve this problem.
    Anybody have experienced the same problem?
    Thanks in advance for any clues.
    Sean
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Greg,
    Thanks for the suggestion. It's really cool. I hope that I have your
    suggestion earlier because we have all our client using the launcher to
    start our application now. In fact, we divided up our application functions
    into applets and have our own customized "launcher distributed" as a sort-of
    menu ( which provides the access control ). Changing back to use ftexec -fi
    .. would be a major modification. I just hope that Forte has some way to
    cheat the "b-tree" so that we can download the applet ourselves ( using some
    other media such as FTP, compression, floppy etc ) and update the "b-tree"
    later.
    Regards,
    Peter Sham.
    Hutchison Telecom. (Hong Kong).
    -----Original Message-----
    From: Greg Nyberg [SMTP:[email protected]]
    Sent: 1998 07 02 13:12
    To: 'Peter Sham (HTHK - Assistant Manager - Software
    Development, IITB)'
    Subject: RE: Forte Start up Delay
    We dont use the launcher to upgrade applications.. We use a c
    program
    which is actually the program run when they doubleclick on the icon.
    This program checks on an FTP server (sortof) to see if there is a
    more
    recent version, downloads the new version (which is really a
    self-extracting self-installing InstallShield program) and installs
    it.
    The c program then starts Forte using ftexec -fi ... technique.
    We have users all over the world, including a number of hotels in
    the
    Far East using a dial-up TCP/IP connection. With compression, etc,
    we
    get the size of the file down to about 2MB which takes like 30
    minutes
    for them to download when we need to upgrade.
    Write me if you want more info.
    -Greg
    > -----Original Message-----
    > From: Peter Sham (HTHK - Assistant Manager - Software Development,
    > IITB) [SMTP:[email protected]]
    > Sent: Wednesday, July 01, 1998 11:16 PM
    > To: Venkat Kodumudi
    > Cc: '[email protected]'; '[email protected]'
    > Subject: RE: Forte Start up Delay
    >
    > Hi Guys,
    >
    > Isn't it frustrating! We have the same problem on this "pulling
    down
    > the
    > latest version" feature on our production environment. We have
    now
    > about
    > 100M of applets and some PC is connected back to our computer
    center
    > through
    > some license line. Downloading all the applets means
    out-of-business
    > for
    > the whole morning. Up-grading the license line means increasing
    > operating
    > cost due to IT department inefficiency. So we can just prey that
    no
    > PC
    > crash on her hard disk, no btree will be corrupted or our user
    > wouldn't do
    > any funny things on his/her files, otherwise, reloading the whole
    > application means nightmare. Worst of all, we can't put our
    > application on
    > the file server. Is there any way out? Does anyone has a
    solution?
    >
    > Regards,
    > Peter Sham.
    > Hutchison Telecom. (Hong Kong)
    >
    > -----Original Message-----
    > From: Venkat Kodumudi [SMTP:[email protected]]
    > Sent: 1998 06 30 21:09
    > To: '[email protected]'
    > Cc: '[email protected]'
    > Subject: RE: Forte Start up Delay
    >
    > Sean,
    >
    > It may be because of the fact that your launch server is
    pulling
    > down the
    > latest version of your installed partitions. I think we have
    the
    > same
    > problem, and there are 2 ways of dealing with this. 1. Run
    the
    > development
    > workshop using ftexec and not use launch server. 2. Put all
    the
    > developers
    > into a model node that does not have any applicaitons
    installed
    > into
    > this.
    >
    > Venkat Kodumudi
    > Price Waterhouse LLP
    > Internet: [email protected]
    > Internet2: [email protected]
    >
    > > -----Original Message-----
    > > From: [email protected]
    > [SMTP:[email protected].
    > com]
    > > Sent: Monday, June 29, 1998 11:41 PM
    > > To: Venkat Kodumudi
    > > Subject: Forte Start up Delay
    > >
    > > To: [email protected] @ Internet
    > > cc:
    > > From: [email protected] @ Internet
    > > Date: 06/29/98 08:27:27 PM PDT
    > > Subject: Forte Start up Delay
    > >
    > > Hi all:
    > >
    > > We've been experiencing something interesting
    > > lately.
    > >
    > > On a HP K9000 system and a DEC AlphaServer 800
    > > system, the Forte Workshop window startup takes
    > > estimated 75 seconds of delay.
    > >
    > > It means, after forte printed out the usual
    > >
    > > "Attemping to connect to Launch Server.....
    > > Running release cl0 of applet Forte....... "
    > >
    > > messages, it will wait about 75 seconds for
    > > the Workshop window to show up.
    > >
    > > If one workshop window is up and running, any subsequence
    > > Forte Workshop window will show up immediately.
    > >
    > > After closed all the Forte Windows, the delay will happen
    > > again.
    > >
    > > We figured it might have something to do with the network
    > > setup, but we couldn't solve this problem.
    > >
    > > Anybody have experienced the same problem?
    > >
    > > Thanks in advance for any clues.
    > >
    > > Sean
    > >
    > >
    > >
    > >
    > > -
    > > To unsubscribe, email '[email protected]' with
    > > 'unsubscribe forte-users' as the body of the message.
    > > Searchable thread archive
    > <URL:http://pinehurst.sageit.com/listarchive/>
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    > <URL:http://pinehurst.sageit.com/listarchive/>
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    > <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Frustrating, Unneccessary Internet Bill Charge

    I am an airman that has just moved from Misawa Air Base, Japan to Fort Meade, Maryland.  When I moved, I returned my modem and cancelled my service with Verizon because I was no longer obligated to use Verizon internet services.  However, the Verizon in Misawa is very disorganized and does not communicate very well and I now have a $190.00 charge for supposedly not returning my modem.  Aside from that, I have not received a hard copy of the actual bill.  This happened last month around this time - I called Verizon and after many frustrating hours of "customer service" they said they couldn't even find my account information.  However, a few days later, the charge disappeared from my bank statement.  I thought it was resolved and I could move on, but then this charge appeared today. 
    I don't know how to best resolve this issue, as contacting the main customer service has been largely unsuccessful.  I could use any advice offered, but this has vastlly changed my opinion on this company towards the worst.
    Thank you
    Steven

    Thanks for posting kkknapp!
    I can see the need to have a clear understanding of bill charges.  I am here to assist.
    I checked your state and local Verizon Wireless bill charges, taxes & surcharges, and found none with the title "Contact SOL Monthly fee".  I searched using the state (Md-Maryland) you have on your profile as your location.  As the previous Community member suggested, you may want to contact Verizon Communications (Landline, DSL & FIOS) support for assistance with these charges.
    I trust I have answered your question, and addressed your concern.

  • Fort Wayne, In. HTC Thunderbolt no 4G connection all day

    Hey when I first bought my Thunderbolt I was in 4G connection at all times nearly, but today for some odd reason it has only been in 3G connection.  I have tried hard resetting/ pulling the battery and also I have checked the settings to make sure they were correct.  I have even put it in lte mode only and all I got was 1x bars.  I guess I'm really curious as to why this has happened today. 
    Any answers are greatly appreciated,
    Jimmy

    Hi Jimmyfb55,
    I would also be curious as to why you could not pick up the 4G signal on the 14th when you posted.I competely understand your frustration. I want you to know that I have checked my references and I do not show any reported outages for the Fort Wayne, IN area on that day. I am, however, glad that you were able to connect to a 3G signal, so you could still use data on the Thunderbolt. 
    Since posting, has the issue been resolved? Are you now able to pick up a 4G signal?
    Please post back and let us know, thanks!

  • Fortis and Citrix

    I use my MacBook for work by logging in remotely through Citrix into a Windows environment. My screens come up from my remote server as if I am using Windows. My Outlook and desktop screens work fine as well as a program called eTime. However, I have one application called Fortis, that is used to convert faxes into screens that can be seen on the computer, that I always have trouble with. It seems that when I logout of my remote system, that program always gets "hung up". I have to call my tech support at work to cancel my hung session of fortis every morning in order to be able to get into the program. My coworkers that use PCs don't seem to have this issue. The operating system on my Mac is Mac OS X 10.5.6. When I called Mac support prior to buying a computer, they assured me that all the programs I use for work would be fine for use with a Mac. I'm so frustrated. Anyone have any solutions? I appreciate the help!

    This isn't a Mac issue...this is either an issue w/Fortis or with Citrix. I suggest you download the latest Citrix client, and if it still doesn't work, contact Citrix support.

Maybe you are looking for

  • Making the "incoterms" field non-mandatory

    For the time being, "incoterms" field in XD01 (Create customer) for the domestic customers is mandatory. On the other hand, I want to make it non-mandatory. How can I do it? Thanx in advance.

  • Secondary internal HD fails after only 1 week

    I just bought and installed a Western Digital Caviar SE16 500GB SATA for the second bay of my G5 ... it worked fine for three or four days, then it discontinued making backups of my main hard drive (error -50), and now Drive Genius is telling me the

  • TTB1 Post Flows Business Area Update

    Dear All, while Posting post flows in T.Code TBB1 i am getting an error Balancing field "Business Area" in line item 001 not filled.  I had assigned the business area in step Allocate Additional Account Assignments to Account Assignmen Use. what else

  • Attaching Files to Forms

    Is there a way to attach a file to a form in FormsCentral if you import a form of your own? I can only find information on how to allow file attachments on a form you create in FormsCentral.

  • Subjects' faces look red from export out of Motion 4

    Hello, I am using Motion 4 and FCP 7 for a video project. When I export out of M4 into FCP 7, the subjects' face look reddish. I originally exported from FCP 7 into Motion 4 and added text and other graphics. When loading the video exported from Moti