JBuilder/package problem

I'm going to 'port' my website to servlet tech, so after developing the thing on paper I wanted to write some test codes.
There was no javax.servlet(.http) package! I found it with tomcat server and tried to put it to JBuilder2005/lib, also edited CLASSPATH (I use windows (--sux), from Control Panel>System>Advanced>Enironment Vars), but it doesn't work. I tried to Configure Libraries (in JBuilder), but found to servlet lib there. So I added manually, but it still doesn't work. By the way this project sees only it's only class MyServlet! servlet package still doesn't appear in javax. By the way I have JavaMail package, for example, in Libs there, but it isn't available to use either. What's going on?

Hi,
That's not how you are supposed to configure new libraries. Create a project, and select properties on it. Then click on the tab required libraries and add it there.
/Kaj

Similar Messages

  • TS3074 im can u please help me out this issue im trying to install iTunes  in windows 7 some error showing " windows installer package problem DLL require to complete this installation" this message showing.

    im can u please help me out this issue im trying to install iTunes  in windows 7 some error showing " windows installer package problem DLL require to complete this installation" this message showing.

    Try the following user tip:
    " ... A DLL required for this installation to complete could not be run ..." error messages when installing iTunes for Windows

  • How to resolve AVCHD package problem in mountain lion

    how to resolve AVCHD package problem in mountain lion

    Thanks, David. I know this workaround. And one more with creating right-click Service. That's why I've used "uncomfortable" instead of "impossible". In my opinion, Apple should leave ability to choose OS's behavior, and I hoped somebody knew where to find it .

  • Apparent SDL package problem

    I installed kdenlive and mlt from community and have a problem with the configuration. A dev on the kdenlive IRC channel said I should ask the mlt devs who in turn said it must be a SDL packaging problem. So I'm here now with this bit:
    #kdenlive
    [19:38] <dust__> need some help getting this program started
    [19:43] <dust__> says it can't find melt or SDL profiles and module
    [19:43] <dust__> but when I run it as root everythings OK
    [19:46] <xzhayon> distro?
    [19:47] <dust__> Arch. I installed both mlt and kdenlive from community repos
    [19:49] <xzhayon> run melt -query consumers 2>&1 | grep sdl
    [19:49] <xzhayon> and show me the results
    [19:49] <dust__> - sdl_image
    [19:51] <dust__> when I run that as su I get this
    [19:51] <dust__> - sdl - sdl_audio - sdl_preview - sdl_still
    [19:53] <xzhayon> as su?
    [19:53] <xzhayon> but that's the output of query consumers
    [19:56] <dust__> just that Im getting different output as su than user
    [19:57] <xzhayon> what's the output of melt -query consumers 2>&1 | grep sdl not run as su?
    [19:57] <dust__> - sdl_image
    [19:58] <xzhayon> that's definitely wrong
    [19:58] <xzhayon> try reinstalling mlt
    [19:58] <dust__> did that at least twice
    [19:59] <dust__> 0.5.10
    [19:59] <dust__> kdenlive 0.7.8
    [20:01] <xzhayon> may i see the pkgbuild for this package?
    [20:03] <dust__> http://repos.archlinux.org/wsvn/community/mlt/repos/community-x86_64/PKGBUILD
    [20:12] <xzhayon> im' sorry but i have no clue on what's happening
    [20:15] <dust__> please tell me what the output above means briefly
    [20:17] <xzhayon> well, that shows the producers and consumers available to melt
    [20:17] <xzhayon> but that's not the expected output
    [20:17] <xzhayon> what you see with "su"
    [20:18] <xzhayon> i what should appear when run as normal user
    [20:18] <xzhayon> while what you see when run as normal user
    [20:18] <xzhayon> is what you should see when querying producers, not consumers
    [20:18] <xzhayon> try asking on [email protected]
    mlt-devel replied as follows:
    Perhaps ask the SDL packager; I doubt the MLT packager will be of much
    help. This appears to be some permission issue with SDL and its access
    to things. Maybe you need to add your account to some groups. Does
    ffplay at the command line work? It too uses SDL. If that does not
    work either, then perhaps 'strace melt -query consumers'. strace is a
    very verbose output, but it might show what it is failing to access.
    any thoughts?

    allan@mugen ~
    > melt -query consumers 2>&1 | grep sdl
    - sdl
    - sdl_audio
    - sdl_preview
    - sdl_still
    Maybe try creating a new user and see if it works for them.

  • Jbuilder compiler problem with xml DOM - please help.

    my problem is that I am using jbuilder 4 professional to compile/run my code.
    However I want to use the XML DOM but jbuilder does not appear to support the necessary packages for use with XML.
    How can I get round this.
    Can I compile instead from the command line - I am using JDK1.4 which supports the java xml packages necessary. Or is there a way of adding the necessary files to my project?
    thanks, B

    Add the required jar files to your project properties->classpath in JBuilder
    The only problem is that. I have been using JBuilder without any problems.

  • The JBuilder package mystery

    Dear all,
    I've come across an interesting JBuilder problem that is slightly different to the other ones I've seen on this forum when i searched
    Background:
    I've been making an address book program for my computer to help me learn java and up to now i've just compiled it at the DOS prompt. To help learn a bit more about java, I created a package (called JLgeneric) to store some of the classes I am using in this project that I might use on another program (for instance one class that does some interesting things with strings). With a little messing around with CLASSPATH in Windows XP, and learning about how to import packages and the like i finally got it working. Please note, I put my JLgeneric packages (i.e. directory) in a completely different place on my hard disk to where I put the source files.
    Now I've decided to start using JBuilder rather than javac as I think it will be more useful in the future. I can already use it to compile simple java programs - it is fine with these. But, using it to compile my addressbook program it comes up with several errors (66!!). The source of these errors is (I think) that it can't find my JLgeneric package, even though the javac (the java compiler at the command prompt) finds it ok.
    The Problem
    So my question is this, if I have my own package "JLgeneric" on a completely different place in my hard disk to the source files, how do I tell JBuilder where to find it. I tried adding its path via PROJECT|PROPERTIES|LIBRARIES but when I tried to compile the project it still didn't manage to find JLgeneric.
    My packages are found using javac so why doesn't it work with JBuilder?!
    Any help is much appreciated
    Thanks
    James

    My packages are found using javac so why doesn't it
    work with JBuilder?!Because the classpath you are using with javac is different than the one JBuilder is using.
    With javac, you are either creating a CLASSPATH environment variable (which by the way isn't a good way to go if you are) or are passing -classpath [your classpath here] command-line arguments to it.
    JBuilder doesn't use the CLASSPATH environment variable, and you don't pass command-line arguments to it, so it uses project settings to determine the classpath to use. It sounds like you're on the right track (mentioning using PROJECT|PROPERTIES|LIBRARIES), but apparently just haven't done it correctly. Keep playing with it - this is not really a Java question, per se.

  • Textpad/Package problem

    Hello,
    I have read a lot of the Textpad/Package stuff in the forum but I still have a problem.
    Im running jsdk1.4, TextPad4.5.0 on a win200.
    In order to make the code easely portable between TextPad and JBuilder I wants to use the packeage name in the code. This works fine in TextPad until I want to extend one of the classes in the current package.
    package MyPackage;
    public class A{
    package MyPacckage;
    public class B extends A{
    D:\java\MyPacckage\B.java:5: cannot resolve symbol
    symbol : class A
    location: class MyPacckage.B
    public class B extends A{
    ^
    This is the error I get from java. The path to jsdk1.4.0/bin is ok, so the code will compile if I remove the package statement. I dont want to set the parameters in TextPad/references to a static classpath.
    Anyone?

    goto Configure|Prefrences and under Compile and Run add classpath to Parameters box that points to you package: such as -cp .;D:\java\MyPacckage $File

  • Help needed with an AIR language packaging problem

    I have a game that includes resources for the Hebrew language, however the <supportedLanguages/> tag supports only ISO 639-1 languages, and Hebrew is not listed; in fact I got a compiler/packaging error when I tried to use "he".  Currently I am getting a notice in Google play that warns me this game might not be packaged correctly: "You translated the store listing into Hebrew but not the APK."   Is there a way around this problem, perhaps some manual editing of some files somewhere?  I'd like to publish the same app to the Apple app store, I imagine they will be even less lenient there.
    We are using Flash Builder 4.7 and AIR 3.7 on Windows 7 x64 SP1.  Any assistance would be appreciated.

    It can be done for iOS. Check here: http://forums.adobe.com/message/5140906
    Don't know about Android.

  • ITunes 7.0.1 does not install--Windows Installer Package Problem

    I am trying to upgrade from iTunes 6 to the newest version. I downloaded setup and ran it, and it got a bit through installing iTunes before it said, "There is a problem with the Windows Installer Package. A program required for this install to complete could not be run. Contact your support personnel or package vendor."
    I have never had problems installing other programs using Windows Installer. I also never had problems upgrading iTunes until now. There is no info on this specific issue anywhere in the Apple website or on the internet, that I have found. Any ideas?

    okay, let's try getting an itunes 7 installer log to the Apple engineers for a look.
    1. Open a command prompt window. (Start menu -> Run. Type in "cmd". Hit return.)
    2. Drag and drop iTunesSetup.exe onto the window so that the full pathname of the file is at the command line prompt.
    3. Type in a space, then the following line:
    /l*v C:\log.txt
    4. Hit return.
    5. The installer will create a log file:
    C:\log.txt
    Find that file and send it as an attachment to this email address.
    in the email to Roy, be sure to include the following information:
    - A link to the thread on Apple Discussions where the issue is being discussed
    - The username you are using in the thread
    - The version of iTunes you are using or trying to use
    - the version of Windows you are using (mention service packs)
    - A concise description of the issue you are seeing
    - The exact text of the error message you are seeing

  • Dbms_xslprocessor package problems in PL/SQL

    Hi all :)
    I was wondering if anyone has any ideas about this problem I'm having:
    When using the dbms_xslprocessor in PL/SQL, I consistently get dropped connections when trying to either transform a document, or search a document via XPath. So, for instance, if I call dbms_xslprocessor.selectSingleNode('XPATH'), the connection will drop out with the following error (I'm calling a stored procedure here):
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Similar problems happen on XMLType.transform(stylesheet).
    I've only managed to have this happen when transforming or searching documents that are not in the default (i.e., xmlns="") namespace, but I can't get rid of the namespace (too much other code is relying on it being there).
    What's even stranger is that the XSLPROCESSOR package works, but DBMS_XSLPROCESSOR package does not. Unfortunately, the XSLPROCESSOR package doesn't seem to handle namespaces well, and inserts seemingly random namespace declarations in the transformation results (for instance, on the root element, it puts in "xmlns:xmlns='http://www.w3.org/2000/xmlns/'") or redeclares namespaces on nodes that already have that namespace defined for them by their parents. Namespace prefixes, too.
    Does anybody have any ideas as to what this might be?
    Thanks in advance,
    Constantine

    I should also mention that I'm ABSOLUTELY sure that the stylesheets I'm using for transformation are correct as of XSLT ver. 1.0 -- multiple external processors (Xalan and MSXML, specifically) give the correct result on the same stylesheet.

  • Support Package Problem

    Hi Experts,
      While applying the support package of BASIS (KB70012) and ABAP (KA70012) in SAP ECC 6.0.we get the following error.
    <i>The import was stopped, since an error occurred during the phase
    DDIC_ACTIVATION, which the Support Package Manager is unable to resolve
    without your input.
    After you have corrected the cause of the error, continue with the
    import by choosing Support Package -> Import queue from the initial
    screen of the Support Package Manager.
    The following details help you to analyze the problem:
        -   Error in phase: DDIC_ACTIVATION
        -   Reason for error: TP_CANNOT_CONNECT_SYSTEM
        -   Return code: 0230
       -   Error message: Cant create any process
    When I go through the command mode and type tp connect <sid> & tp connect <sid> pf=g:\usr\sap\trans\bin\ TP_DOMAIN_S10.PFL
    It’s give the following error.
    G:\usr\sap\trans>tp connect S10
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    This is tp version 372.04.04 (release 700)
    E-TPSETTINGS could not be opened.
    EXIT
    ERROR: System : Parameter SAPEVTPATH not set. Batch jobs cannot be started.
    Error in TPSETTINGS: transdir not set.
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0208
    tp finished with return code: 208
    meaning:
      error in transportprofil (param missing, unknown,...)
    G:\usr\sap\trans>tp connect S10 pf=G:\usr\sap\trans\bin\TP_DOMAIN_S10.PFL
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    This is tp version 372.04.04 (release 700)
    Connection to Database of S10 was successful.
    punesrv02\usr\sap\trans\tmp\C071023.S10 for transport: ALL: No such file or di
    rectory
    punesrv02\usr\sap\trans\tmp\SLOG0743.S10.LOC: No such file or directory
    PANIC --> exiting
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0212
    tp finished with return code: 212
    meaning:
      could not access file as supposed (see dev_tp or SLOG0743.S10 for more details
    Please help me.

    Hi Sateesh,
    It seems like your transport management system is not configured properly, Just check your CTS. is it configured properly.
    Check your transport directory too.
    when you imort a support patch it creates a file in this location. this message are co,img that means you transport directory is not configured properly.
    \punesrv02\usr\sap\trans\tmp\C071023.S10 for transport: ALL: No such file or di
    rectory
    punesrv02\usr\sap\trans\tmp\SLOG0743.S10.LOC: No such file or directory
    Regards
    Subhash

  • [b]1 OC4J JBUILDER Deployment Problem[/b]

    I cant use the admin.jar from oracle to jbuilder for make a deploy in IAS, i was catching a error ...
    I need to remotely deploy some applications with Oracle, but until now i haven't succeed at all. Every time i try to deploy with
    D:\Borland\JBuilder\jdk1.4\bin\javaw -classpath
    "D:\ora10i\j2ee\home\admin.jar" com.evermind.client.orion.Oc4jAdminConsole ormi://mydomain:XXXX ias_admin ***** -deploy -file untitled2
    i get this exception:
    Could not connect to the remote server, server could be down. Error isconnected user/password invalidate (but i can use this same user and to make a deploy directly in the web saite administrator for oc4j in my server)
    Error: Unable to look up server administrator (java:comp/ServerAdministrator): java:comp/ServerAdministrator not found
    I know this mine that java-rmi dont lookup but why?

    Hi, im sure the server is up,
    i think the OC4J plugin for JBuilder only work for the localhost, because only fail when i try to make a deploy in a remote server, i see how jdeveloper run a deploy and the jar is very different and that have many parameters that the plugin for jbuilder, and the problem is the plugin was make for Oracle, Borland dont have any responsability about this

  • Flash Builder 4.7 iOS packaging problem

    I get the following error message when compiling my app with air 3.4 with Standard packaging or release build. Interestingly when using fast packaging I don't get any problems.
    Error occurred while packaging the application:
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
               at adobe.abc.GlobalOptimizer$InputAbc.readCode(GlobalOptimizer.java:1134 )
               at adobe.abc.GlobalOptimizer$InputAbc.readBody(GlobalOptimizer.java:682)
               at adobe.abc.GlobalOptimizer$InputAbc.readBodies(GlobalOptimizer.java:40 3)
               at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:331)
               at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler .java:533)
               at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:80) Compilation failed while executing : ADT
    I don't have a clue on where to start looking... Tried using an app.xml file from another project that does compile, but still get the same message.
    Any help appreciated!
    /David

    Hi David ,
    I am able to reproduce the issue with project you shared.Thanks for reporting. I have looged a bug to track it.
    Bug ID : http://bugs.adobe.com/jira/browse/FB-33461
    Mean while you can try this workaround:
    1. In the Package settings wizard,click on the the Customize launch button as shown in screenshot.
    2.Click on the Edit Parameter Button.
    3.Choose 'FILE_TO_PACKAGE?' as the name attribute. '?' here means the number which corresponds your swf.
    4.Give bin-debug swf location as the value to the attribute.Choose ok and continue.
    Note:
    This workaround only for testing purpose.
    Let me know if you require more information.
    Thanks,
    Sanjay

  • Deployment Package problems DMS 5.2.1

    All just an FYI for anyone else having issues with a deployment package.
    This is on DMS 5.2.1
    If your presentation references a video file from the Media library that has a space in the Title the deployment does not complete.
    No error - just does not complete.
    It does create the LOCAL --  presentation name  GOTO URL.
    But if you check the deployment/content directory you will see that you are missing assets.
    To fix the problem you need to remove the asset from the presentation.
    Delete from the Media Asset library
    Re-add it withOUT a space.
    Add back to the presentation.
    Re-do the deployment package.
    Then all is good.
    Will try to test later on 5.2.3 but thought I would share this with others!

    [somewhat delayed response]
    The ACNS software will not be corrupted by a power outage, except in the usual situation where you were doing a software upgrade and the power outage occurred right in the middle of the flash write. If this happens, the software will tell you about it, and you can fix it by using the flash-based rescue image or recovery CD. Almost certainly this is not what happened in this case, however.
    What may have happened is that the data in the CFS volume(s) got corrupted due to some bug. ACNS 5.2.1 is pretty old. I would suggest upgrading to the latest 5.3.x build.
    gid

  • Compiling packages problem???

    Thanks for checking this out, noticed there hadn't been a similar compiling question for
    at least 40 pages, so figured I should contribute!!
    I am trying to compile a package class with six other classes added as part of the
    same package and instantiated withing tabbed panes within the first class.
    info
    JDK: j2sdk1.4.0-beta3
    path: path=c:\windows;c:\windows;c:\windows\command\j2sdk1.4.0-beta3\bin
    Folder/directory : c:\Divelog
    javac is accessed by: c:\j2sdk1.4.0-beta3\bin\javac
    package: divelog
    file: DiveLog.java
    -public class DiveLog extends JFrame
    six other files are Welcome.java, Diver.java, Dives.java, Statistics.java, Website.java,
    Resources.java
    -all are started with the package divelog; declaration
    - all are called within a populateTabbedPane() in the DiveLog file and class.
    all .java files can be seen when I enter c:\Divelog>dir
    problem:
    entering c:\j2sdk1.4.0-beta3\bin\javac DiveLog.java
    returns six errors of type : cannot resolve symbol
    symbol: class Welcome
    location: class divelog.Divelog
    new Welcome
    I understand that this is not the way to compile a package so tryed lots of different
    things as suggested by the troubleshooting tutorial, the most effective are
    c:\j2sdk1.4.0-beta3\bin\javac -classpath c:\Divelog.divelog.java
    " \javac -classpath c:\Divelog.divelog
    \javac -classpath c:\Divelog
    all of these pause for about 5 seconds then returns to the c:\Divelog> (as if there
    were no errors)
    enter dir to see if they have been compiled, and there is no .class versions of these
    files.
    entering
    c:\j2sdk1.4.0-beta3\bin\javac -classpath c:\Divelog\ DiveLog.java or \ Divelog or \
    Divelog.DiveLog
    (with the space after the \ ) returns the six error messages above.
    I am positive there is something very simple I am missing, could someone please help
    me out, It would be greatly appreciated, I really like this java programming, but when
    you run into a hurdle like this, It gets very frustrating. Thanks alot in advance!!!

    Thanks alot eric, I spent about 15 hours trying to work that out. Tthat helped alot I have a couple of quick follow up questions
    1. in the classpath \divelog/*.java what does the /*.java do is that the call for the entirity of the divelog
    package.
    2. all of the six sub classes (welcome, Resources, etc) all compiled and are now in the directory of the
    c:\Divelog>
    except that the main class/file DiveLog will not itself, and is not listed as a DiveLog.class,
    there is still only a DiveLog.java even thought the others in the package all have become .class.
    Is there any way I can compile this one file on it's own, or how do I get it to compile into a .class file??
    3. to run the application would I then enter
    c:\Divelog>c:\j2sdk1.4.0-beta3\bin\java -classpath \divelog.?
    Once again, I really appreciate your help, that was great!

Maybe you are looking for

  • IBooks Author v. Keynote for digital timeline--URGENT

    I have been working on a digital timeline project that will be viewed on an ipad in a museum that a visitor can scroll through and also see on a large screen above the kiosk. I have gone back and forth on the best application to use for this project

  • Will there be an ios update for ipod touch 4g?

    Is there going to be and ios update for the ipod touch 4g? its honestly bs that the IOS 7 isnt for the ipod touch 4 g. so are they planning on making one compatible for the ipod touch 4g at some point? like people out there still use their ipod touch

  • Update Existing Coll Rooms when Template Changed

    Please refer to this thread. <a href="https://forums.sdn.sap.com/thread.jspa?threadID=70659">https://forums.sdn.sap.com/thread.jspa?threadID=70659</a> How do I get the existing Collaboration rooms to be updated when we change the template they are ba

  • Rmx multiouts! am i'm stupid?

    ok, a hole day is gone with reading, searching and testing without success i'm not sure if i missed somewhere something important!? is theree a solution with working rxm in logic 8 as a "real" multiinstrument and NOT in 8 separates instances? when i

  • I do not view NPD BU under Category Tab in Activity search page

    Hi there, I'm using Agile PLM 6.1.1.0_Release_12 I'm not able to view NPD BU under Category Tab in Activity search page. 1) I created 2 NPD BU - Italy - International 2) I created some Activity template with Italy and International as BU. The issue i