Where should i place the akarta-regexp-1.3.jar

I'm coding on linux for jakarta-tomcat server..
I'download jakarta-regexp-1.3.jar file from jakarta-apach site for validate a email adress..
But i did not find any doc to telle me where put this file..
I put it in the jre subdirectory of my sdk directory but the javac compiler
do not recognize this part of my code import org.apache.regexp.* ..I try the lib directory of the tomcat and it was same..
Where should i put this jar file ..
Could some body help me ?

DON'T CROSS POST, EEJIT:
http://forum.java.sun.com/thread.jsp?thread=461653&forum=33&message=2116135
http://forum.java.sun.com/thread.jsp?thread=461654&forum=45&message=2115945
http://forum.java.sun.com/thread.jsp?thread=461653&forum=33&message=2115943
http://forum.java.sun.com/thread.jsp?thread=461652&forum=1&message=2115941

Similar Messages

  • Where should I place the web service client implementation?

    Hi,
    I created a web service client, and some java classes are automatically generated like stub, servicelocator, proxy...
    I wrote the client code to access and invoke a web service.Where should I place this code.
    Thanks.

    pls see Left outer join in Infoset

  • Where Should I Set the Layer Break Marker?

    I am burning to a Memorex DVD+R DL media------
    I received this error message when burning:
    "Formatting was not successful. Layer 0 exceeds the
    maximum layer size allowed. Please choose a suitable
    marker location that will support this condition."
    I placed one approx halfway through my main sequence, which
    is a total of 4.6 GB, but I am still receiving this message.
    Where should I place the marker so I can successfully output?
    My total project is about 6.2 GB.

    So you are telling me that I could delete the DNS from each machine and set it in either the new modem or Time Capsule router.
    That is correct!
    I guess what I'm confused at is what device is doing what.
    Let's look at a few examples, hopefully to help understand where all these protocols/services (PPPoE, DNS, & DHCP) come into play:
    Scenario 1: Modem > Computer
    In this scenario, your ISP provides the DNS server IP address information to your computer via DHCP. DHCP also provides the other important IP address information: IPv4 address, subnet mask, & router IP to your computer in order to communicate on the Internet.
    Since your DSL ISP requires that you are authorized to access their Internet service, they utilize PPPoE to pass your account credentials (username & password) from your computer to their authorization server. Once verified, you are granted access.
    Scenario 2: Modem > Router (Actiontec) > Computer
    In this scenario, your Actiontec router provides your account credential (via PPPoE) to the ISP and also acts as a DHCP server. As a DHCP server, it provides your computer with the required IP addresses and passes on the ISP's DNS IP addresses as well. You do have an option with this router to enter a different set of DNS IP addresses ... like those for Google DNS or OpenDNS if you do NOT want to use the ISP's DNS servers. In this case, the Actiontec, uses its DHCP server to provide those addresses to your computer.
    Scenario 3: Modem > Upstream Router (Actiontec) > Downstream Router (TC) > Computer
    Since you have the TC configured as a bridge, it is basically a "pass-through" device. That is, the Actiontec will continue to provide the IP addresses just like in Scenario 2 "through" the TC so that wired or wireless clients connected to the TC get the addresses. Also, like in Scenario 2, you can assign DNS IP addresses on the TC ... and these would be provided to clients connected to it.

  • Where should I place my preloaders?

    Hi all,
    Would like to seek advice on where should I place the
    preloaders.
    I have a banner swf, menu swf, main content swf, and intro
    swf. where should i load the preloader? on the main MC that will be
    calling these swf? or each swf have their own preloader? that would
    look rather weird.
    Of should I just merged banner, menu, main content and intro
    altogether? How do i do that? I am lost as to should I separate
    them out or put all eggs in 1 nest. My main content will have
    transitions between each sections.
    since my menu is separate from the main content, how do I
    point them to get the main content to change section whenever user
    click on 1 sections?
    I am so lost. Please advise. Thanks

    Hey X, sorry I haven't responded of late, working elsewhere.
    Let me address some of the questions you've had above.
    1) I'm very sorry, I see that I missed that assignment when I
    typed this out, within the loadFile function the correct call
    should be: mcl.loadClip(src, clip);
    2)the code is AS2, and yes it is legal coding. first, we're
    setting up parameters for our function here, and then we pass them
    this information when we call the method that we've set up, so that
    we can 'feed' information to the function that then uses it to
    perform it's job. the variable declarations in this case here are
    called 'strict typing' (ie. src:String, file:String, ...) and it's
    just a way to define variables of a particular 'type', it isn't
    necessary to follow the variable names with the type declaration,
    but I thought that I would include it here so that it made sense to
    you and so that you could see what type of variables need to be
    passed to the function. the varaibles MUST be passed to the
    function in the order that they are listed.
    3) yes you've got this all right :) The onLoadInit handler
    fires when the loaded clip becomes instantiated on the timeline
    (eg. available), previous to this point you could NOT say something
    like 'clip.gotoAndPlay(10);' because the loading clip was not yet
    available for the call, and it would fail. So you can use this
    handler to tell the loaded clip to 'do something' if you need this
    type of functionality, like say for instance that you need the
    loaded swf to go to a certain 'page' depending on what button the
    user pressed, this handler would be a way for you to pass that
    informtion along, and tell the loaded clip to goto the correct
    position, handy ;)
    As to the last question in 3, I touched on that above, my bad
    4) I was just talking about the name of the swf file being
    called 'dummy'.
    5) No, put everything in frame one, but on a different
    layers. Place your preloader on the top layer, and the 'blank' MCs
    (to load into) on layers below.
    OK, on to your last post.
    Yes, the way it's set up here the preload bar would run to
    100% for each load and then start again for the next one, it also
    has a text instance that tells the use what is being loaded each
    time. This could all be changed, and you can certainly use you own
    preloader instance, however you will need to reconstruct the method
    that is handling the progress. See if you wanted ALL of the
    instance your loading to equal 100% of your loader bars progress
    (for the first load anyway) you can't calculate the total bytes of
    all files previous to initiating the load, so you have a problem
    here. One method might be to 'break up' the load and apportion the
    progress indicator evenly for each item needed in the intital site
    loading. what I mean by that is, if you have 4 items that are
    needed to load, then each item would 'move' the progress bar by
    25%, so that when 100% of the first item is loaded, the progress
    bar is revealed by 25%, then the second load reveals 50%, and so
    on. It will just take a little math to change the code to handle
    the progressions. Now I would suggest that you NOT animate the
    masking rectangle by frames, I would do this with code adjusting
    the _x position of the mask by an amount that has been calculated
    with the loading code. also this method will have to accomidate,
    both multi-loads and singlular loads so you'll need to use another
    parameter to define how the preload indicator progress is 'broken'
    and into how many parts. This would end up in the math that defines
    the system that controls the indicator.
    OK this should be enough for you to think about for now
    :)

  • Where should i place ASA?

    Hi
    Where should i place an ASA firewall in my network? Should i connect ASA outside interface directly to the ISP?
    Can ASA 5585 perform BGP?

    "Where should i place an ASA firewall in my network? Should i connect ASA outside interface directly to the ISP?"
    Yes outside interface, assume that is where your primary internet circuit is terminated.
    You don't necessarily need to peer over BGP just for sake of getting internet connection from your ISP.
    Yes, ASA can perfrom BGP.
    Hope this answers your question.
    Thanks

  • Where should i call the rfc function module? in xi or in r/3

    where should i call the rfc function module?
    for the synch scenario: file < -- >  xi <---> rfc
    i know the type of rfc is tcp/ip; but i'm not sure with the followings,
    and with some trials i can not even see any message via rwb even all the setting
    can be activated without errors.
    where should i create the rfc destination? in r/3 or xi
    where should i call the rfc via abap program? in r/3 or xi
    i guess the calling program should belong to the different server with the rfc itself....
    so confused....
    Thanks for your reply!!
    Jun

    if i create the destination in xi point to r/3, then i call the rfc use the destination in r/3 right ?
    The call doesnt use the destination in R3. XI has the RFC destination which is just used to connect to the R3 system
    but where i need to create the fm via se37? in xi or r/3 ?
    In R3
    Regards,
    Prateek

  • Where should i put the DEFAULT&SMARTBAR

    Hello,
    where should i put the DEFAULT&SMARTBAR ? and the main Menu ?
    in order to be shown in each form..
    in using Forms 6i.
    Regards,
    Abdetu..

    Hello Gerd,
    Thanks for reply..
    put such things into *a reference form* what is meant by a reference form do u mean the main form?
    Create a property class (PC) for your FORM-MODULE-properties,
    put this PC into the reference form.
    Create there an object group (OG), put the PC into the OG and the inherit the OG to your local form.
    Automatically you have then the PC inherited too.i did all what u mentioned..
    Bbut the problem is that the DEFAULT&SMARTBAR
    can't be seen in allllllllllll my forms in the main menu inspite of i put it into the form module property ->in the intial menu property.
    Regards,
    Abdetu..

  • Where should I change the adapter? It doesn't work from the start.

    where should I change the adapter? It doesn't work from the start. But there is no apple store in our city.

    The phone does not charge when linking with adaptor. But it is OK when linking PC using USB instead. I do not know why, but I am just sure there is something wrong with the adaptor.

  • Where should I place music files?

    1) If I download an MP3 where should I save the file? I'm looking to play these with iTunes.
    2) I currently see a file that is called "automatically add to iTunes" among others drilled down into the music folder. Is this the quickest way?
    3) I also have some music files witin the finder showing up under "all my files". What should I do with these?
    Sorry, PC guy coming over to the dark side recently and not to familiar with my MBA yet. Thanks!

    flag8r77 wrote:
    1) If I download an MP3 where should I save the file? I'm looking to play these with iTunes.
    2) I currently see a file that is called "automatically add to iTunes" among others drilled down into the music folder. Is this the quickest way?
    Yes. You can make a shortcut to that folder and put it on the desktop.
    3) I also have some music files witin the finder showing up under "all my files". What should I do with these?
    Don't do anything with them.
    If you are using the Search at top right of a Finder window, that simply finds files anywhere.

  • Where should I have the create table

    I am making an application which it has a customer, an order and a food objects.
    I know that I can do it in one class (which will have main inside) but I am trying to make it as object oriented..
    so.. I have to make a class for a customer, a class for food, and I will handle all this in another class which will have main method..
    am I right up to here??
    if yes I was now wondering where should I have the sql statment about creating the table.. my thought is to have it at the constructor so when I will make a customer object the table will be created..
    then I will have an add_data(d1,d2,d3,d4....) method where I will insert the data to my database for each customer.. actually only one time I will make a customer object from main and then through this I will call add_data() method to add customers to my database..
    Am i thinking right or I am too far away from what I must do...?
    Thx

    Doesn't particularily matter given that the application is small.
    However in larger applications the database is created outside of the application usually using a SQL script.

  • Where should I put the sevlet

    I just started to work with Tomcat and I compiled the helloWorld sevlet.
    It's said from a book that the sevlet should be placed in serlver_root/webapps/ROOT/WEB-INF/classes, however there isn't a "classes" folder in my WEB-INF folder. So I put the helloWorld sevlet in the WEB-INF folder.
    Then I type http://localhost:8080/servlet/helloworld in my browser, I get a message from the sever said "The requested resource (/servlet/HelloWorld) is not available".
    Could anybody tell me how can solve this prolbem, where should I put the sevelt?

    have ones more a look to your book - especially to information about the configuration file "web.xml" which also should be placed in the WEB-INF folder. This file defines which servlets should be found by the server and which request-URL should be mapped to this servlet.
    for examples concerning the web.xml file see those already defined in your server. copy one and edit it for your needs. if you really want to understand what else might be configured using web.xml see the DTD for this file - it's pretty good documented!
    hope it helps :)

  • Where Should I put the time capsule?

    Where Should I put the time capsule?
    I'm using a wireless modem/router provided by the internet company, and both (the TC and the router) are located next to the pc, in the living room . Using this way, I don't have signal in my bedroom. Should I get a signal amplifier?
    Thanks!

    It would be better to use EOP adapters (homeplug is another name) or ethernet to locate the TC closer to your room.. you can use another apple router to extend the wireless if you need to.

  • Where should I store the collatoral files that are associated with photos stored in lightroom?

    Where should I store the collatoral files that are associated with photos stored in lightroom? Items such as pdf files, word documents, etc. How should I connect them to each other so I can find both the photo and the related data?

    Lightroom itself will not help you with pdf, word, etc.
    However, there is a plugin you can use called AnyFile which will allow you to manage these documents in Lightroom (by assigning keywords and other metadata) so that you can search for all documents (photos, pdf, word, music, powerpoint, etc.) with given metadata.
    Because you do this via metadata, it doesn't matter where you put these files. Put them anywhere you want.

  • Where should I save the camera calibration profile for Lightroom 2?

    I created some DNG Camera Profiles by DNG Profile Editor. For Camera Calibration in Camera Raw, I save those .dcp files in C:\ Administrator\ Documents and Settings\ Application Data\ Adobe\ Camera Raw \ CameraProfiles. However, I could't find such a subfolder in Lightroom folder, does any one know where should I save the dcp files for Lightroom 2? Thank you

    It's the same install folder for both Camera Raw and Lightroom (i.e., a .dcp installed in the folder you described will be readable by both CR and LR).
    Eric

  • Where  do I place the new camera raw plug in

    Hello friends I just updated the new camera raw plun in for Photo Shop CS2
    I also have received teh DNG where do I place the plugs in I just down loaded
    Michael

    The DNG Converter is NOT a plug-in. It's a stand-alone application, and you can put it wherever you want: in the applications folder, on your desktop etc.
    Make sure you download version 4.2 of the DNG Converter.
    As for the ACR plug-in, you need version 3.7. Later versions of ACR DO NOT work with CS2.
    You put it exactly where the obsolete ACR plug-in is installed by default when you first install Photoshop.
    Exactly where depends on your platform, Macintosh or Windows. There are very precise instructions on the page where you download the updates. Read them.
    Also read the FAQs on this forum.

Maybe you are looking for