Who can provide a link about advanced configuration of Java.util.logging?

Who can provide a link about advanced configuration of Java.util.logging?

Want to implement configurable handler attributes. For each handler has its own attribute set. I tried to implement a few handlers that extend FileHandler (actually the handlers do nothing, just for distingusih purpose), and put the customized handler attributes in configuration file and use logManager.readConfiguration() to load the configuration, somehow it does not work, but if I change the handler to standard handler like FileHander in configuration file, it works.

Similar Messages

  • Someone compromised my account and purchased a $50 gift card, who can I talk to about this?

    Someone compromised my ITunes account and purchased a $50 gift card, who can I talk to about this?

    Monica MurphyTFP I am sorry for the difficulties you have been experiencing while contacting our support team.  Do you have a case number which I can utilize to review your interaction?
    If you have not done so yet I would recommend that you review your installation logs to determine the cause of your install failure.  You can find details on how to accomplish this at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

  • Who can I talk to about charges on my ipad?

    Who can I talk to about charges on my ipad?

    You can contact iTunes support via email via this page (I'm not aware of any phone support for iTunes) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Who can provide a complete list of Sap B1 add-ons?

    Who can provide a complete list of Sap B1 add-ons?
    Best regards,
    Jean Pierre Chauny

    There is no complete list of add-on for B1 from 3rd party. Do you just interest in SAP add-on?
    Thanks,
    Gordon

  • Who can tell me how to search keywords in java

    recently I'm doing a project called "Persistent Search Engine",
    when I came to search part implementation, I'm puzzeld with the resource on the web, I found many of the implementation was did with the package " javax.help.search", but I didn't know how to use it, and where can I get it, or just it's already in the java libarary? who can tell me something about it ?
    thankyou very much! ---shieldy

    See here http://java.sun.com/products/javahelp/

  • Where to find .jar files so I can implement import java.util.logging

    I'm trying to figure out how to take an application built for Websphere and port it to WebLogic. I've come across this blog entry http://blogs.sun.com/fkieviet/entry/using_java.util.logging_in_bea_weblogic and would like to try creating and using the startup class.
    I have not been able to find the correct jar files.
    import weblogic.common.T3ServicesDef;
    import weblogic.common.T3StartupDef;
    import weblogic.logging.LoggingHelper;
    In reading the documentation on using the NonCatalogLogger APIs at http://download.oracle.com/docs/cd/E12840_01/wls/docs103/i18n/writing.html I also see some code calling for the following imports
    import weblogic.jndi.Environment;
    import weblogic.logging.NonCatalogLogger;
    1. Does anyone know where I can grab these?
    2. There must be a strategy for finding these .jars that people use. If so, what is it?

    I thought I understood you, but the more I look at what you've set here, I'll just be honest and admit that the I don't know what you are saying here:
    'You should be able to add the "weblogic.jar" in the WebLogic distribution to your classpath.' - What doe this mean?
    1. Go to my xxxWeb app Dynamic Web Project and right-click and select Build Path / Configure Build Bath / Libraries - Select Add external JARS and navigate to the weblogic.jar
    2. Go to my xxxWeb app Dynamic Web Project and right-click and select Build Path / Configure Build Bath / Libraries - Select Add Library and try to go from there?
    3. Go to my xxxWeb app Dynamic Web Project and right-click and select Build Path / Configure Build Bath / Libraries - Select Add Variable and try to go from there?
    4. Go to my xxxWeb app Dynamic Web Project and right-click and select Build Path / Configure Build Bath and do something else?
    5. Something else?
    Also, I don't know what you mean here:
    'You don't need to (and you shouldn't) copy that jar file, just have it in your compilation classpath. It will be present automatically at runtime.'
    Sorry for being so simple here but I've been trouble shooting why I can't follow what look like pretty simple steps to implement over-riding the ApplicationLifecycleListener Class to use existing java.util.logging.Logger code by adding the following to the the weblogic-application.xml:
    <wls:listener>
         <wls:listener-class>com.qualcomm.weblogic.log.listener.UtilLogWrapper</wls:listener-class>
    </wls:listener>
    And including as a referenced jar file, a simple POJO class instance of com.qualcomm.weblogic.log.listener.UtilLogWrapper.
    My resrouces for this are:
    1. http://blogs.sun.com/fkieviet/entry/using_java.util.logging_in_bea_weblogic.
    2. http://www.oracle.com/technology/pub/articles/drolet-ant.html.
    Maybe my weblogic.jar is at the root of the problem.
    I hope you can 'dumb this down' for me with a simple explanation of steps to do what you outlined above.

  • Can't load runtime properties in java.util.logging.LogManager

    This should be so easy, what am I doing wrong?
    I have the following logging.properties located on my classpath:
    handlers=java.util.logging.ConsoleHandler
    .level=INFO
    java.util.logging.ConsoleHandler.level=INFO
    java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
    Test.level=FINE
    Test.handlers=java.util.logging.ConsoleHandlerI have a very simple Test.java file that should load the new properties file and print out the known logger names (ie Test).
    I've also tried putting Test.java in a package, it didn't seem to matter.
    public class Test {
      public Test() {
        String name = this.getClass().getName();
        //this properties file is should be sitting in same dir as Test class
        java.io.InputStream is = this.getClass().getResourceAsStream("logging.properties");
        try {
          //get log manager instance
          java.util.logging.LogManager lm = java.util.logging.LogManager.getLogManager();
          //read the new configuration
          lm.readConfiguration(is);
          //print out list of logger names
          java.util.Enumeration e = lm.getLoggerNames();
          while (e.hasMoreElements()) {
            System.out.println(e.nextElement());
          //print logger for this class!
          System.out.println("getLogger("+name+"): "+lm.getLogger(name));
        } catch (Exception e) {
        } finally {
          try {
            is.close();
            is = null;
          } catch (Exception e) {}
      public static void main(String[] args) {
        Test test1 = new Test();
    }The output I get from this is a single logger name, and then null for my desired Test logger.
    global
    getLogger(Test): null

    It seems a logger instance HAS been created for my Test class, I've added the lines below. Though it didn't appear in the logger names enumeration.
    java.util.logging.Logger logger = java.util.logging.Logger.getLogger(name);
    System.out.println(logger.getName()+"="+logger.getLevel().getName());
    logger.severe("severe");
    logger.warning("warning");
    logger.info("info");
    logger.config("config");
    logger.fine("fine");
    logger.finer("finer");
    logger.finest("finest");Output:Test=FINEST
    6/10/2003 16:00:01 Test <init>
    SEVERE: severe
    6/10/2003 16:00:01 Test <init>
    WARNING: warning
    6/10/2003 16:00:01 Test <init>
    INFO: infoObservations:
    1) Despite my Test class having the FINEST log level, the default ConsoleHandler had log level of INFO, and hence only up to INFO logged.

  • Can java.util.logging.SimpleFormatter log stack trace?

    can java.util.logging.SimpleFormatter log stack trace? I hope I don't have to write a custom formatter.
    -yc

    right, it does, the code I am modifying prints regular log msg at LEVEL.SEVERE, that's why it doesn't have any stack trace.
    By the way, I am using file name pattern, aName.log%g, why it the most current log is aName.log.0, rather than just aName.log. In the conf file, I have,
    mypackage.myclass.logfile.name=/.../aName.log.%g
    java.util.logging.FileHandler.limit=60000
    java.util.logging.FileHandler.count=3
    java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
    Thanks.
    Message was edited by:
    javalatte1

  • Hello, anyone here who can provide me a download link for adobe configurator 2 or 3? still working on cs5.

    I'm looking for a download option for adobe configurator. the last version (version 4) only works with cc and cs6, but not with cs5 anymore. I would be really lucky, if someone still has a earlier version (2 or 3) and could upload it for me.
    thank you very much

    If you do a seatch here you would find links like this:
    http://labsdownload.adobe.com/pub/labs/configurator/configurator3-1-1_p1_win_092512.zip
    http://labsdownload.adobe.com/pub/labs/configurator/configurator3-1-1_p1_mac_092512.dmg
    Configurator 2 download link?

  • Who can provide nw2004s EP configuration guide?

    i jst installed the EP...but how to config it..its diffcult things to me..if anybody has the exp about ep.pls send the config doc(best step by step)
    tks a lot..
    e-mail:[email protected]

    Hi Ran ,
       EP is a product sufficing to diff needs for diff clients . It does not have just one functionality so do not have just one configuration guide .Depends what you want to configure and the same can be provided . What I would suggest is that you read about the tool first and figure out as to what business needs the tool can help with . If you send me your mail id , I can forward you some documents that might be helpful .
    Regards
    Deepak Singh

  • Who can I complain to about a new order being canc...

    Please can someone help me before I go totally insane!! On 14th March I placed an order online with BT for Phone & Broadband with free BT Sport and paying the line rental in advance with it due to go live on 30th March.
    Transfer date came and went with no sign of any transfer being carried out - details online said they were working on the problem. Several days later had a message to say that they needed to talk to me with regard to my order, then received an email saying that BT were sorry I had cancelled by order!! Long and short of it after days of talking to people in India trying to sort out my order and being told lie after lie (such as they couldn't transfer phone line from Sky without me getting a cease date from Sky) I was told everything was in hand and someone from Openreach would ring me on Monday 13th April to comfirm they had sorted out the problem (basically unplugging a my line from one socket and plugging it into another). On the Monday I received a garbled message from someone in India saying that they needed to talk to me about my order and would ring again Wednesday. On the Wednesday morning I got another garbled message saying that as they had tried repeatedly to speak to me on the phone and hadn't been able to they had now cancelled my order!!! i then phoned and was told my order had got stuck in the system and they needed me to place my order again and this would sort everything out.
    I then find out that the money I paid when I placed my order for my line rental saver in advance plus Hub/Dongle etc had been refunded as I had cancelled my order. No I didn't you did!! I still want my line rental saver, Hub etc, etc.
    I did this but since then I have been getting threatening emails requesting I send back my Hub and Dongle as I had cancelled my order - no I need it, and I didn't cancel my order you did!!! Then today I got a final bill (as I was leaving) for £172.29 which was for line rental saver (£169.90) from 30th March and BT Sport (£25.81) 14 March - 10 May (money due to be taken out of my account on or before 25th April). How can I be charged for a service that I haven't even been connected to!
    Surely they can see what is happening on the account see that there was a problem there end and that I didn't want my account cancelled etc - after all the notes that the call centre people in India supposedly made on my account!!!
    I tried to speak to BT this evening but after 25 minutes of listening to stupid music I gave up. My phone line and broadband are supposed to transfer over to BT on 29th April but I am not holding my breath on this!!
    Please can someone help me with who is the best person to talk to before I go totally mad because if I have to talk to anyone else in India who uses the standard customer service script and tells me that they understand my frustration one more time I will definitely go insane!!!!
    Thanks in advance
    Liz
    Solved!
    Go to Solution.

    I have asked a moderator to provide assistance, they will post an invite on this thread.
    They are the only BT employees on this forum, and are a UK based team of people, who take personal ownership of your problem.
    Once you get a reply, make sure that you are logged into the forum, then click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they cannot deal with service issues that way.
    For your own security, do not post any personal details, on this forum. That includes any tracking number you are give.
    They will respond either by phone or e-mail, when its your turn in the queue.
    Please use the tracked e-mail, to reply, not via the forum. Thanks
    This is the form you should see when you click on the link. If you do not see this form, then you have selected the wrong link.
    When you submit the form, you will receive an enquiry number, so please keep a note of it
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Re: Who can I complain to about a new order being ...

    Ordered on 5/05/2015, online, via a Quidco referral. £160 cashback, £50 SB voucher promised.
    Delivery of equipment date missed.
    Phoned BT, told "order being processed, don't worry"
    Original connection date? 15/05/2015
    Requested to keep the existing landline number. Told this was okay, would be switched 24 hours after BB activation.
    16/05/2015 - no connection. no hub. Called BT, still no equipment. There was a problem, because fibre was already active, with previous account holder.
    15/05/2015 connection date changed to a new date of 26/05/2015.
    Had to do a completely new order over the phone. New problems now because NOT ONLINE ORDER want us to pay more.....
    We received the "delivery" we were waiting home for - a box that was designed to fit through the letterbox....landed on the doormat. No need to wait home....
    Existing BB connection cut off on 26/05/2015
    Broadband was supposed to be reconnected on 27/05/15.
    An engineer called on his mobile to gain access. We had not been told one was attending/required. We were not at home either.
    The job was eventually rebooked for 1/06/15. The engineer arrived at 8.25am, was there for 5 minutes, left for about 25 minutes (cup of tea i dare say) and then returned, and everything was working. Well, everything but the TV.
    The same issues as the OP, paid 1 years line rental up front, via a credit card, paid £36.95 connection and delivery for the fibre/hub. No payments were taken, fortunately. TV package was ordered at the same time too. Its 04/06 now, still no TV.
    Still waiting 9 days after original BB install date, no TV equipment. (It's supposed to be here tomorrow, the 5th June, fingers crossed) 1 month after order (not bad by others stories, but still 3 weeks later than original date.)
    There have been additional issues. Lengthy phone calls as the order is now "a telephone order", not an "online order" - so we are troubled about losing the £160 Quidco cashback.....and the £50 SB voucher. We have been assured by two people on the phone that we will receive these amounts.....but we have also been lied to as many times too.
    Received email detailing "Activation fee Infinity 1 option 1 £30, Activation fee infity 1 £30, total to pay £60
    Phoned BT, told this was an error they said they would remove it from the bill
    Received a bill today, DOUBLE activation charge for same product STILL ON THE BILL.
    Wanted to pay 12 MONTHS line rental up front, TOLD BT REPEATEDLY. But you won't sort it out for us.
    Why should I pay the first months line rental and then another 12 months up front when you get around to sorting it out, effectively tying myself into a 13 month contract? I may want to leave, after all, everything goes up in price when the 12 months discounts end......
    Renumbering? 3 or 4 phone calls to BT. Still not done. 30 second phone call today says it will be done "tomorrow, but after midnight" Thats the days AFTER tomorrow then?
    The whole process has been nothing but stress. It took over half an hour on the phone just two days ago, to sort out the mess with the missing TV package.
    Ordered the TV package online as part of the "QUIDCO" deal. No activation fee mentioned. Order confirmation received - no activation for TV package mentioned.
    Latest call to sort TV package, tells me £35.00 activation fee. The guy had no idea what we had already "ordered" - it looks as though you don't actually keep records of what people order at all??
    Original TV package confirmed as "BT Sport Albertz" package. He apparently after working at BT for 20 years, had never heard of this TV package. He denied its existence. Its on my email.
    I only wanted the Netflix (£6.99, two screens) and no additional TV channels. Online, the activation is currently showing £19.00 I cannot remember seeing one, and it hasn't been mentioned. Who knows if it wasn't on special offer the day I ordered? Your offers change constantly. He says he has to put £35, but ask for it to be changed to £19 because it was originally online order. We have not received confirmation of these prices yet.
    So to summarise. Pathetic customer service. Failed communication. Lies. Lack of decent record keeping. Pricing changing. Overcharging.
    £30 too much STILL on first bill.
    £35 instead of £19 for activation of TV, not yet received or confirmed.
    Lost discount because you REFUSED TO SORT OUT LINE RENTAL SAVER. (£33.98 loss)
    If I pay this now, on month 2, I am forced into 13 month contract with yourselves resulting in further losses due to increased costs)
    Potential loss of a)£160 Quidco referall due to fractured ordering. b)Sainsbury Voucher of £50 because offer has changed since original order date.
    Amount of stress - £ priceless.
    Yet to see if TV package arrives and is connected. But because TV package is now running a week behind the contract dates of the broadband, this will mean that if I cancel the BB after 12 months, I will not be able to use the TV package, as it WONT WORK. So, BT have you ensured I suffer further losses?  The phone line was switched over on the 25th May, BB on the 1st June and now TV should be 5th June.  If it arrives/works.  So who is paying for my 13 days over contract that is being enforced by yourselves, since I will be forced to keep the phone to keep the BB (at £10.50 extra) to keep the TV working? And are you, at that time, going to try to make me pay the £13.50 for the BT sport that I don't want?
    What do we do? Because I am sick to death of trying to communicate with people in India. They're lovely, but they really don't understand me when I'm rabbitting down the phone 100 miles per hour because I'm wound up at having to explain the same thing over and over. Why can't we just email you? Or is this a job for the Ombudsman. This is really poor service.

    the ombudsman does not deal with individual complains although they would take a note of your pronlem
    only people that can help here are the forum mods who are BT employees  they will post a contact us link 
    After completing the email NOT PM then you join a queue of other customers waiting for mod help. The mods will get back to you in 3/5 working days either by phone or email
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Who Can help me? About "Error 500--Internal Server Error"

    Dear,brothers,
              I can run AdminMain in "http://192.9.100.3:7001/AdminMain". But when I run
              pooltest in
              "http://192.9.100.3:7001/pooltest". It cannot work.It displays:
              Error 500--Internal Server Error
              From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              10.5.1 500 Internal Server Error
              The server encountered an unexpected condition which prevented it from
              fulfilling the request.
              When I see the weblogic.log,there are some information about it:
              Wed Jun 28 20:03:51 MDT 2000:<E> <IIOPSocket> failed to configure user for
              iiop protocol
              Wed Jun 28 20:03:56 MDT 2000:<E> <ServletContext-General> Error casting
              servlet: examples.jdbc.oracle.simpleselect
              java.lang.ClassCastException:
              at
              weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java
              :382)
              at weblogic.servlet.internal.ServletStubImpl.createInstances(Compiled Code)
              at
              weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.jav
              a:338)
              at
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:16
              4)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :99)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:742)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:686)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:247)
              at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:361)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              at weblogic.kernel.ExecuteThread.run(Compiled Code)
              Wed Jun 28 20:03:56 MDT 2000:<E> <ServletContext-General> Servlet failed
              with Exception
              javax.servlet.ServletException: Servlet class:
              examples.jdbc.oracle.simpleselect does not implement javax.servlet.Servlet
              at
              weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java
              :385)
              at weblogic.servlet.internal.ServletStubImpl.createInstances(Compiled Code)
              at
              weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.jav
              a:338)
              at
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:16
              4)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :99)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:742)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:686)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:247)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
              at weblogic.kernel.ExecuteThread.run(Compiled Code)
              

    Get the TNSNAMES.ORA file of your database and copy it in Discoverer Home (i.e., home where you installed Discoverer Administrator, usually BIToolsHome_1/network/admin). Then login to Discoverer Administrator using a new database user (usually EUL_US) which you might have created as part of installation. Once logged in, it will prompt you to create an EUL. Please follow Discoverer Installation Document.

  • FAQ: Where can I find links about Revel and related apps?

    USEFUL REVEL RELATED LINKS:
    Getting Started with Revel:
    http://www.adobe.com/support/revel/gettingstarted/revel_gs.html
    Revel Support User Forum:
    http://forums.adobe.com/community/revel
    Elements Organizer Reference:
    http://helpx.adobe.com/pdf/elements-organizer_reference.pdf
    Setting up your mobile albums in Elements:
    http://tv.adobe.com/watch/learn-photoshop-elements-12/setting-up-your-mobile-albums/
    Setting up your mobile albums in Premiere Elements:
    http://tv.adobe.com/watch/learn-premiere-elements-12/setting-up-your-mobile-albums/
    How to publish from lightroom to Revel:
    http://helpx.adobe.com/lightroom/help/prepare-send-or-post-photos.html#publish_from_lightr oom_to_adobe_revel
    Revel app for iOS:
    https://itunes.apple.com/us/app/adobe-revel-cloud-access-for/id455066445?mt=8
    Revel app for Mac:
    https://itunes.apple.com/us/app/adobe-revel/id455068834?mt=12
    Revel app for Windows 8:
    http://apps.microsoft.com/windows/en-us/app/adobe-revel/b78bd006-3b35-4b8b-b97e-8ec4725318 1b
    Revel at adoberevel.com from a web browser:
    http://www.adoberevel.com
    Where to find the Lightroom plugin:
    https://www.adoberevel.com/plugins/lightroom
    GroupPix app for iOS:
    https://itunes.apple.com/us/app/adobe-grouppix/id591490672
    VideoBite app for iOS:
    https://itunes.apple.com/us/app/adobe-videobite/id592464499?mt=8
    Photoshop Express for iOS:
    https://itunes.apple.com/us/app/adobe-photoshop-express/id331975235?mt=8
    (GroupPix, VideoBite, and Photoshop Express all interface with Adobe Revel)

    Hi,
    I have quite the same problem here. I firstly synced my iPad with my desktop, and everything seemed to be fine. Then I synced it with my laptop and two apps I purchased from my desktop disappeared from my iPad... All other apps that I purchased/downloaded directly from my iPad seem to work fine, but I would really like to know something more about the "logic" that iTunes uses for syncing...
    Ah... almost forgor: yes, I read p. 28 on of UG, yes, I contacted iTunes support and they sent me here, and yes I read something (not that much, of course) here and there in the web...
    Really would appreciate your help, because I wouldn't want to "loose" my apps each time I sync to my laptop... thanks!

  • Who can I talk to about getting hung up on 4 times today?

    Trying to get help ALL day today. I have waited on hold for 30 -45 minutes 4 times today, three times I was disconnected while on hold and once while talking to a support person who DID NOT CALL ME BACK! I am going on 8 hrs of this and need to resolve my software issue so that I can work tomorrow and get paid!!!
    Someone needs to give me some help!!!!!!!!!!

    Monica MurphyTFP I am sorry for the difficulties you have been experiencing while contacting our support team.  Do you have a case number which I can utilize to review your interaction?
    If you have not done so yet I would recommend that you review your installation logs to determine the cause of your install failure.  You can find details on how to accomplish this at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

Maybe you are looking for

  • Time Machine issue on a new iMac - "Cleaning old backups..."

    Just got a new iMac. Migrated my system over from a TM backup from my old iMac. I then let TM inherit the backups on that drive. Now, I am attempting to do a TM backup, and it stays on "Cleaning up old backups..." forever. What's the deal?

  • Email Messages with "-" Sender ID

    Hi All, Hope its going all well, we are facing a problem, in our Exchange daily logs, there is always so many logins with the user name '-' (hyphen), also in our spam filter outbound traffic daily report there are so many emails with same sender ID '

  • CSS 11501 7.40 Monitoring the services on real servers?

    Hi, Just want to ask some basic questions, How can i monitor the services (ie 80 and 443) of the real servers. So that when the CSS11501 detects that one of the services of one of the real servers is down, it will not forward the traffic to that serv

  • Dynamic Table driven menu

    I am trying to to create a menu whose menu item has to be dynamically pulled out from a database table. Right now I am saving all the menu item in a xml file. My code looks like this <tr><td class="head" colspan="2" align="center"><br/>Country of Ori

  • Geforce titan or quadro k4000?

    Hello all - I'm hoping to get a little help/clarification on which card would better suit my needs, and appreciate any/all help. I'm probably at an intermediate level of understanding when it comes to the technical aspects of computers, so some of th