JHTML

Does Dreamweaver support JHTML ?
If "yes" where can I find this information? (have not been
able to find any reference to .jhtml in Help)
If "no" is there any intention to support JHTML in a future
version? If "yes" when? If "no" why not?

The answer is no - DW doesn't support JHTML.
I guess the market for it is not sufficient to warrant
spending the
development hours on it.
Of course, Dreamweaver is fully extensible, so it's possible
for a
third-party to develop the addins necessary to support it.
As for future intention for support - you would have to ask
Adobe directly -
this is a user to user forum :)
Cheers,
Rob
http://robgt.com/ [Tutorials and
Extensions]
Firebox stuff:
http://robgt.com/firebox
Skype stuff:
http://robgt.com/skype
Dell stuff:
http://robgt.com/dell
SatNav stuff:
http://robgt.com/satnav

Similar Messages

  • Jhtml not working! Please help

              Simple jtml is not working in weblogic5.1
              1. Jhtml code which I kept in public_html folder
              <html>
              <head><title>Hello World Test</title></head>
              <body>
              <h1> <font color=#DB1260> Hello World Test </font></h1>
              <java>
              out.print("Java-generated Hello World");
              </java>
              <p> This is not Java!
              <p><i>Middle stuff on page</i>
              <p>
              <java>
              for (int i = 1; i<=5; i++) {
              out.print("This is a Java loop! " + i + "<p>");
              </java>
              </body>
              </html>
              2. my properties file
              # WEBLOGIC JHTML PROPERTIES
              # Sets up automatic page compilation for JHTML. Adjust init args
              for
              # directory locations and uncomment to use.
              weblogic.httpd.register.*.jhtml=\
              weblogic.servlet.jhtmlc.PageCompileServlet
              weblogic.httpd.initArgs.*.jhtml=\
              pageCheckSeconds=1,\
              packagePrefix=examples.jhtml,\
              compileCommand=c:/jdk1.3/bin/javac.exe,\
              workingDir=C:/weblogic/myserver/classfiles,\
              verbose=true
              3. my command line error
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: init
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param verbose initialized to: true
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param packagePrefix initialized to: examples.jhtml
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param compileCommand initialized to: c:/jdk1.3/bin/javac.exe
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param srcCompiler initialized to weblogic.jhtmlc
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param superclass initialized to null
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param workingDir initialized to: C:\weblogic\myserver\classfiles
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param pageCheckSeconds initialized to: 1
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: initialization complete
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Serving request for PATH_INFO: null
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Couldn't find file: C:\weblogic\myserver\public_html\index.jhtml
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              servletimages: init
              Fri Aug 04 11:41:11 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Serving request for PATH_INFO: null
              Fri Aug 04 11:41:11 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Couldn't find file: C:\weblogic\myserver\public_html\index.jhtml
              Fri Aug 04 11:41:13 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Serving request for PATH_INFO: null
              Fri Aug 04 11:41:13 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Couldn't find file: C:\weblogic\myserver\public_html\index.jhtml
              

    Try resetting it:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    Next try restoring via itunes.

  • JHTML to JSP convertor for WebLogic Server 4.5.0 and above

    Hallo,
    For what kind of JHTML is that convertor ???
    Can it convert Dynamo JHTML pages to JSP pages ???
    Thanks
    [email protected]
    Dusan

    The tool in the freeware downloads section of commerce.bea.com was a
    tool that was originally targeted at converting pre-WLS 4.51 JHTML into
    JSP 1.0 pages. It might be able to help you do the Dynamo conversion
    but I would suspect that you will still need to do some work by hand to
    make sure that everything is correctly converted...
    Hope this helps,
    Robert
    Dusan Petrovic wrote:
    Hallo,
    For what kind of JHTML is that convertor ???
    Can it convert Dynamo JHTML pages to JSP pages ???
    Thanks
    [email protected]
    Dusan

  • Why JSP not move to jhtml direction?

    I have both knowledge of JSP and JHTML (from ATG). I like jhtml much more. The jhtml architecture is far superior than jsp. I just list following features:
    * better component naming, using directory and properties, instead of jsp.
    * excellent Form handling capabilities.
    * support expression
    * droplet is more powerful and simple than those customer tag.
    JSP is not better than MS ASP, which has better infrastructure, such as ADO etc. I don't understand why so many developers are fan of JSP, even Servlet! After a while, I am tired of them.

    I can't speak about jhtml, but I do disagree with you about the MS ASP comparison. There are lots of very important reasons why JSP is better, but I'll list a few:
    1. JSP is compiled, ASP is interpreted.
    This results in faster executing code and less bugs due to compile time checking.
    2. JSP (Java) is strongly typed, ASP is typeless (Variants)
    Typed variables are better with memory and much better with reducing bugs due to discovering incompatible data types. Consider the fact that a simple boolean as a Variant in ASP takes up 16 bytes (last I looked at the actual C struct used under the covers).
    3. JSP is platform independent, ASP only runs on Windows. Also, the are many different JSP containers to choose from, ASP only provides one.
    The competition between Weblogic, Websphere, etc. greatly improves the JSP market since the strongest survive over time. Consider the fact that MS only threw out ASP for ASP.Net because J2EE is affecting their market share.
    4. The scalability of ASP is severely restricted by the thread affinity of single-threaded apartments (STA) that IIS sets up to run non-MTS COM components. For example, you are committing scalability suicide if you keep any references to STA components in session or application state. And VB6 can only create STA components. You need VC++ to create MTS components.
    5. JSP has the ability for standard and custom tag libraries, ASP has no capability.
    Tag libraries are proving to be very valuable in the JSP space. A moderate use of well written tag libraries can severely increase developer productivity as well as reduce costs by shifting some page development from expensive Java developers to web designers.
    6. ASP requires IIS, which has major security holes in the software. Attest to the fact that the Code Red virus alone cost over $4 Billion in wasted productivity alone.
    Do not shrug off the above differences. They are major. They are the reason that developers have moved to the JSP world. If you're still not convinced, analyze why MS threw away ASP and produced ASP.Net. Despite what you read, ASP.Net is NOT simply the next version of ASP. They are architecturally two entirely different beasts. The proof of this is the fact that an ASP and ASP.Net page cannot co-exist in the same ASP application. That is, they do not share session or application state or cannot make calls into functions defined within each other. There's a reason for this.
    Except for item 3 and 6, ASP.Net solves all of the above problems. In fact, if you compare .Net to J2EE, it's frightening how MS did not violate some sort of an architectural copyright, if one exists. .Net is effectively a clone of J2EE.
    .Net is a good platform and will do well since MS is very committed to it. If you're a MS shop, you will be in good hands for new development. Besides being a proprietary platform, the only other problem is the massive amount of capital that will be required to migrate the millions of lines of VB, VC++, and ASP code to .Net. All the migration wizards in the world can never solve this!
    Good luck.

  • Retreiving value back from formhandler to jhtml form

    I want to ask that what to use to get value from formhandler back to jhtml page and to find whether it contain null or not,and on the basis of which print some value....which is inunicode....
    What to use if we have to get values from a form which is in chinese and to process this values.....
    Thanks in advance....

    Below I have tried to give you solution that you want. It would be helpful if you explain your exact requirement?
    [1] define your attibute formhandler
    //your XXXFormHandler.java
    package a.b.c;
    public class XXXFormHandler extends GenericFormHandler{
         String name;
         String successURL;
         String errorURL;
         //anyogher property(ies)
         //getters and setters
         //handler method
         public boolean handleDoIt(DynamoHttpServletRequest pRequest, DynamoHttpServletResponse pResponse)throws ServletException, IOException{
              preDoIt(pRequest,pResponse);
              //your operation goes here
              postDoIt(pRequest,pResponse);
              return return checkFormRedirect(getSuccessURL(), getErrorURL(), pRequest, pResponse);
         void preDoIt(DynamoHttpServletRequest pRequest, DynamoHttpServletResponse pResponse)throws ServletException, IOException{
              if(getName()==null||getName().IsEmpty()){
                   addFormException(new DropletException("name should not be null"));
              //other varification goes here
         void postDoIt(DynamoHttpServletRequest pRequest, DynamoHttpServletResponse pResponse)throws ServletException, IOException{
                   //code you want to do after handle method operation goes here
         //other code .............     
    [2] make component config/a/b/c/XXXFormHandler.properties:
    $class=a.b.c.XXXFormHandler
    $scope=request
    [3]use dsp:form in page1.jsp
    page1.jsp:
    <dsp:form action="" method="post">
         //print error message
         <dsp:droplet name="Switch">
              <dsp:param name="value" bean="XXXFormHandler.formError"/>
              <dsp:oparam name="true">
                   <dsp:droplet name="ProfileErrorMessageForEach">
                        <dsp:param name="array" bean="XXXFormHandler.formExceptions"/>
                        <dsp:oparam name="outputStart">
                             <ul>
                        </dsp:oparam>
                        <dsp:oparam name="output">
                             <tr><td><li><font color="red"><dsp:valueof param="message"/></font></li></td></tr>
                        </dsp:oparam>
                        <dsp:oparam name="outputEnd">
                             </ul>
                        </dsp:oparam>
                   </dsp:droplet>
              </dsp:oparam>
         </dsp:droplet>
         <dsp:input type="text" bean="XXXFormHandler.name">
         //set error/success urls
         <dsp:input type="hidden" bean="XXXFormHandler.successURL" value="page1.jsp"/>
         <dsp:input type="hidden" bean="XXXFormHandler.errorURL" value="page2.jsp"/>
         <dsp:input type="submit" bean="XXXFormHandler.doIt" value="Send"/>
    </dsp:form>-RMishra
    Edited by: RMishra on Apr 8, 2013 6:46 PM

  • JHTML support in WLS5.1

     

    There was a defect in version 5.1.0 against J. HTML pages.
    If I remember correctly, it is going to be fixed in an upcoming service
    pack.
    Technical support should have more information.
    Thanks,
    Michael
    Michael Girdley
    Product Manager, WebLogic Server & Express
    BEA Systems Inc
    Bill Thorsteinson <[email protected]> wrote in message
    news:[email protected]..
    I have tried jHTML using WLS5.1 SP1 and have the following problem:
    jHTML seems to loose the requested page and only returns index.jhtml
    (default page). It does seem to pay attention to directories, but we
    have too many files for that to be practical.
    /Bill Thorsteinson
    Michael Girdley wrote:
    jHTML should work in version 5.1. If it does not, then it is a bug and
    we
    should fix it.
    Please report those issues to support.
    Thanks,
    Michael
    Michael Girdley
    WLS Product Manager
    Steve Wilkinson <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    I'm working with a company that is considering moving from WLS 4.0.3
    to
    WLS 5.1. I have tried to install some sample JHTML pages and I can't
    get them to work. I read another message earlier that said JHTML was
    broken in WLS 4.5.1 and would be fixed in WLS 5.1. Can someone tellme
    if this is fixed. I was not able to run pages that work under 4.0.3in
    5.1.
    FYI, the previous answer about the conversion tool is not the desired
    response. My client has a MAJOR investment in 4.0.3 and was one ofthe
    earlier adopters of Weblogic before BEA purchased them. I'm sure they
    can pursue this through their support license. However, I wouldreally
    like to do some preliminary testing and tell them its possible so wecan
    get sign off on the upgrade path.
    Thanks,
    Steve Wilkinson

  • Jhtml not working!

              Simple jtml is not working in weblogic5.1
              1. Jhtml code which I kept in public_html folder
              <html>
              <head><title>Hello World Test</title></head>
              <body>
              <h1> <font color=#DB1260> Hello World Test </font></h1>
              <java>
              out.print("Java-generated Hello World");
              </java>
              <p> This is not Java!
              <p><i>Middle stuff on page</i>
              <p>
              <java>
              for (int i = 1; i<=5; i++) {
              out.print("This is a Java loop! " + i + "<p>");
              </java>
              </body>
              </html>
              2. my properties file
              # WEBLOGIC JHTML PROPERTIES
              # Sets up automatic page compilation for JHTML. Adjust init args
              for
              # directory locations and uncomment to use.
              weblogic.httpd.register.*.jhtml=\
              weblogic.servlet.jhtmlc.PageCompileServlet
              weblogic.httpd.initArgs.*.jhtml=\
              pageCheckSeconds=1,\
              packagePrefix=examples.jhtml,\
              compileCommand=c:/jdk1.3/bin/javac.exe,\
              workingDir=C:/weblogic/myserver/classfiles,\
              verbose=true
              3. my command line error
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: init
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param verbose initialized to: true
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param packagePrefix initialized to: examples.jhtml
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param compileCommand initialized to: c:/jdk1.3/bin/javac.exe
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param srcCompiler initialized to weblogic.jhtmlc
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param superclass initialized to null
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param workingDir initialized to: C:\weblogic\myserver\classfiles
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: param pageCheckSeconds initialized to: 1
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: initialization complete
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Serving request for PATH_INFO: null
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Couldn't find file: C:\weblogic\myserver\public_html\index.jhtml
              Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              servletimages: init
              Fri Aug 04 11:41:11 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Serving request for PATH_INFO: null
              Fri Aug 04 11:41:11 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Couldn't find file: C:\weblogic\myserver\public_html\index.jhtml
              Fri Aug 04 11:41:13 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Serving request for PATH_INFO: null
              Fri Aug 04 11:41:13 GMT+05:30 2000:<I> <ServletContext-General>
              *.jhtml: Couldn't find file: C:\weblogic\myserver\public_html\index.jhtml
              

    I presume this was a known issue in the GA release of 51.
              I would try with the latest service pack and if that doesn't work, report to
              [email protected]
              Kumar
              gopalbaliga wrote:
              > Simple jtml is not working in weblogic5.1
              > 1. Jhtml code which I kept in public_html folder
              > <html>
              > <head><title>Hello World Test</title></head>
              > <body>
              >
              > <h1> <font color=#DB1260> Hello World Test </font></h1>
              >
              > <java>
              > out.print("Java-generated Hello World");
              > </java>
              >
              > <p> This is not Java!
              > <p><i>Middle stuff on page</i>
              >
              > <p>
              > <java>
              > for (int i = 1; i<=5; i++) {
              > out.print("This is a Java loop! " + i + "<p>");
              > }
              > </java>
              >
              > </body>
              > </html>
              >
              > 2. my properties file
              > # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
              > # #
              > # WEBLOGIC JHTML PROPERTIES
              > # ------------------------------------------------
              > # Sets up automatic page compilation for JHTML. Adjust init args
              > for
              > # directory locations and uncomment to use.
              > weblogic.httpd.register.*.jhtml=\
              > weblogic.servlet.jhtmlc.PageCompileServlet
              > weblogic.httpd.initArgs.*.jhtml=\
              > pageCheckSeconds=1,\
              > packagePrefix=examples.jhtml,\
              > compileCommand=c:/jdk1.3/bin/javac.exe,\
              > workingDir=C:/weblogic/myserver/classfiles,\
              > verbose=true
              >
              > 3. my command line error
              >
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: init
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: param verbose initialized to: true
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: param packagePrefix initialized to: examples.jhtml
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: param compileCommand initialized to: c:/jdk1.3/bin/javac.exe
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: param srcCompiler initialized to weblogic.jhtmlc
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: param superclass initialized to null
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: param workingDir initialized to: C:\weblogic\myserver\classfiles
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: param pageCheckSeconds initialized to: 1
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: initialization complete
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: Serving request for PATH_INFO: null
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: Couldn't find file: C:\weblogic\myserver\public_html\index.jhtml
              > Fri Aug 04 11:40:55 GMT+05:30 2000:<I> <ServletContext-General>
              > servletimages: init
              > Fri Aug 04 11:41:11 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: Serving request for PATH_INFO: null
              > Fri Aug 04 11:41:11 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: Couldn't find file: C:\weblogic\myserver\public_html\index.jhtml
              > Fri Aug 04 11:41:13 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: Serving request for PATH_INFO: null
              > Fri Aug 04 11:41:13 GMT+05:30 2000:<I> <ServletContext-General>
              > *.jhtml: Couldn't find file: C:\weblogic\myserver\public_html\index.jhtml
              

  • Clustering behavior for servlets/JHTML?

    I have two questions about the clustering behavior of servlets and
              JHTML:
              1. Is it a safe assumption that JHTML servlets behave identically to
              regular, developer-written servlets?
              2. How does the clustering mechanism work? Say I have a user who logs in
              to my site (which is a 4-server, weblogic cluster). Does that user
              session always get directed back to the same server (say in this case,
              server #1)? Or does the user session get directed to the server with the
              lowest load at the time of the request?
              Thanks.
              Chien Huey
              [email protected]
              

    Hi DH84,
    Please offer us more information about your current cluster configuration, such as the event cluster occur, the server edition,
     please disable RSS, TCP Chimney on both cluster nodes RSS, NetDMA to narrow down the issue first.
    If you are using 2008R2 cluster please confirm you have installed the following hotfix,
    Slow failover operation if no router exists between the cluster and an application server
    http://support.microsoft.com/kb/2582281
    A transient communication failure causes a Windows Server 2008 R2 failover cluster to stop working
    http://support.microsoft.com/kb/2550886
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • I cannot open a new search from a second tab. Comes back with : GGmain.jhtml (GIF Image. 1 x 1 pixels)

    As above

    Some firewalls like Kaspersky can block content and send a 1x1 GIF image instead.<br />
    Kaspersky: Protection > Firewall > Filtration system: disable the "Banner Ad Blocker"
    See:
    * https://support.mozilla.org/kb/Configuring+Kaspersky+Internet+Security
    * https://support.mozilla.org/kb/Firewalls

  • Windows no longer boots up, paging file error

    I just reinstalled windows on my mac last week because until now I had been running the old beta version of boot camp.
    Just a few days ago I started getting blue screens every so often and it happened again (twice to be exact) yesterday, however one of the times it booted up and informed me I might want to change my paging file size. Not quite sure what this was I went and found the paging file option in settings and found it was clicked on a set size...so I figured I'd set it on the option that lets windows decide for me hoping this would fix the blue screen problem.
    I shut down my computer later that night and now windows won't get to the desktop.
    When I start it up normally it runs the system check (which I cannot skip for some reason) which gets to 84% and then says \windows\Dump3865.tmp is cross-linked on allocation unit 1731772
    Above it it mentions there is an invalid size for my page file.
    I tried booting it up the in safe mode multiple times and every time it generates a list in dos and stops on windows\system32\Drivers\mup.sys
    I really don't want to have to reload windows again. Is there anyway to skip the system check (it says press anykey, but that has never worked for me) or any other way to get my paging files back to the way they were?
    Thank you.
    Oh I'm running leopard with windows XP professional on a macbook pro (last years model) if that helps in anyway.
    Message was edited by: Tommmmm

    A. run chkdsk
    B. What happens if you boot from XP CD and Repair System
    C. system file checker - from command "sfc /scannow"
    http://www.informationweek.com/news/windows/showArticle.jhtml?articleID=18530125 1
    http://windowshelp.microsoft.com/Windows/en-US/Help/f768809f-ed90-415f-a83f-89b4 2108b3551033.mspx

  • I am told that my browser does not support iframes when trying to access a web site.

    This is Google's cache of http://sitetrail.com/askearth.com. It is a snapshot of the page as it appeared on Sep 19, 2010 10:44:02 GMT. The current page could have changed in the meantime. Learn more
    Full version These search terms are highlighted: history askearth com
    * Contact Us
    SiteTrail - Website News and Analysis
    * Business
    * Dev & Design
    * Entertainment
    * Mobile
    * Social Media
    * Tech
    Search in SiteTrail askearth.com (visit site) This data was last updated 6 months ago (update data).
    Site Profile Estimated Value: $5,582.16 USD Estimated Revenue: $7.60 USD per day $227.90 USD per month $2,772.81 USD per year Estimated Pageviews: 3,355 per day 100,648 per month 1,224,551 per year Alexa Rank: #447,581 Google Index: show google links Yahoo Index: show yahoo links Bing Index: show bing links History: show history Site Title: Interesting Questions - AskEarth Site Traffic
    Site Server Server IP Address: 140.174.79.37 Server IP Decimal: -1934733531 Server IP Location: Pordenone, Friuli-Venezia Giulia, Italy
    Your browser does not support iframes. Whois Information Welcome to the Network Solutions(R) Registrar WHOIS Server.
    The IP address from which you have visited the Network Solutions Registrar WHOIS database is contained within a list of IP addresses that may have failed to abide by Network Solutions' WHOIS policy. Failure to abide by this policy can adversely impact our systems and servers, preventing the processing of other WHOIS requests.
    To see the Network Solutions WHOIS Policy, click on or copy and paste the following URL into your browser:
    http://www.networksolutions.com/whois/index.jhtml
    If you feel that you have received this message in error, please email us using the online form at http://www.networksolutions.com/help/email.jsp with the following information:
    Whois Query: askearth.com YOUR IP address is 174.129.155.56 Date and Time of Query: Tue Feb 23 00:49:37 EST 2010 Reason Code: IE DNS Records Host Class Type IP TTL Target Other askearth.com IN A 140.174.79.37 7199 askearth.com IN NS 7200 ns53.worldnic.com askearth.com IN NS 7200 ns54.worldnic.com askearth.com IN SOA 7200 mname: NS53.WORLDNIC.com rname: namehost.WORLDNIC.com serial: 108121504 refresh: 10800 retry: 3600 expire: 604800 minimum-ttl: 3600 HTTP Headers HTTP/1.1 302 Found Date: Tue, 23 Feb 2010 05:59:34 GMT Server: Apache/2.2.11 (Unix) mod_fastcgi/2.4.2 PHP/4.4.9 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.7m mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.7 Location: http://askearth.com/go/home Content-Length: 417 Connection: close Content-Type: text/html; charset=iso-8859-1
    HTTP/1.1 200 OK Date: Tue, 23 Feb 2010 05:59:35 GMT Server: Apache/2.2.11 (Unix) mod_fastcgi/2.4.2 PHP/4.4.9 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.7m mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.7 Set-Cookie: id=11010246; EXPIRES=Sun, 01-Apr-29 00:00:00 GMT; PATH=/ Set-Cookie: pass=u0zit0yv; EXPIRES=Sun, 01-Apr-29 00:00:00 GMT; PATH=/ Set-Cookie: since=1266904775; PATH=/ Connection: close Content-Type: text/html Firefox Add-on SiteTrail Firefox Add-onPerform SiteTrail lookups via right-click menu straight from your web browser! Popular Lookups
    * google.com#1
    * facebook.com#2
    * youtube.com#3
    * yahoo.com#4
    * live.com#5
    * baidu.com#6
    * wikipedia.org#7
    * blogspot.com#8
    * msn.com#9
    Browse Lookups
    A B C D E F G H I
    J K L M N O P Q R S T U V W X Y Z Recent Lookups
    * askearth.com#447,581
    * evdenevenakliyatv.com#442,990
    * mytaskhelper.com#756,476
    * fikralari.net#639,299
    * typemytape.com#1,547,530
    * tmmod.info#1,078,434
    * torrentplus.org#233,938
    * communitycollegelistin...#430,008
    * cadbury.co.uk#104,852
    * myhobbyblogs.com#297,443
    Random Lookups
    * solidmastermind.com#931,183
    * homelegance.com#277,584
    * homepage-anleitung.de#1,091,134
    * icicigroupcompanies.co...#1,513,887
    * ptiboo.ch#744,058
    * fachportal-paedagogik....#312,102
    * lcpo.com#336,926
    * spitinet.gr#904,561
    * sportingpulse.com#37,069
    * v-pillsbuyutucuhap.com#543,342
    * sameskyboard.com#51,252
    * alparslanpazarlama.com...#1,444,281
    * ventausa.com#221,470
    * dentalmag.org#234,937
    * digitalfoci.com#1,214,872
    * blank-label.com#273,247
    * efun.ir#446,350
    * greatamericandays.com#579,258
    * it007.com#58,123
    * hairyclipz.com#760,892
    Navigation
    * Contact Us
    Categories
    * Business
    * Dev & Design
    * Entertainment
    * Mobile
    * Social Media
    * Tech
    Recent News
    * VP of Twitter Says Twitter is NOT A Social Network
    * Google Puts White Spaces To Use
    * YouTube Instant Experiment Gives Creator a Job At YouTube
    * YouTube Time Machine – A New Website To Waste Hours On
    * Google’s New Instant Search – Saving 11 Hours Every Second
    * Facebook Notes Gets New Tools
    Recent Lookups
    * askearth.com#447,581
    * evdennakliyateve.com#442,990
    * mytaskhelper.com#756,476
    * maximumwoman.com#639,299
    * typemytape.com#1,547,530
    * tmmod.info#1,078,434
    © 2010 SiteTrail. All Rights Reserved.

    I'm not clear on where you are seeing that text. When I view Google's cached page from the page found in this search
    https://www.google.com/search?q=site%3Asitetrail.com%2Faskearth.com
    It doesn't match yours exactly. There is an iframe with a Google map in it in the "Hosting Analysis" section, which in your pasted page seems to be the "Site Server" section.
    Which Google site did you search?

  • Bayes Error Question after Spamassassin Upgrade

    I have just upgraded to Version 3.1.5 of the Spamassassin and I am getting the following readout when after I run spamassassin -D --lint
    xserve1:/var/amavis root# spamassassin -D --lint
    [18757] dbg: logger: adding facilities: all
    [18757] dbg: logger: logging level is DBG
    [18757] dbg: generic: SpamAssassin version 3.1.5
    [18757] dbg: config: score set 0 chosen.
    [18757] dbg: util: running in taint mode? yes
    [18757] dbg: util: taint mode: deleting unsafe environment variables, resetting PATH
    [18757] dbg: util: PATH included '/bin', keeping
    [18757] dbg: util: PATH included '/sbin', keeping
    [18757] dbg: util: PATH included '/usr/bin', keeping
    [18757] dbg: util: PATH included '/usr/sbin', keeping
    [18757] dbg: util: final PATH set to: /bin:/sbin:/usr/bin:/usr/sbin
    [18757] dbg: message: ---- MIME PARSER START ----
    [18757] dbg: message: main message type: text/plain
    [18757] dbg: message: parsing normal part
    [18757] dbg: message: added part, type: text/plain
    [18757] dbg: message: ---- MIME PARSER END ----
    [18757] dbg: dns: is Net::DNS::Resolver available? yes
    [18757] dbg: dns: Net::DNS version: 0.59
    [18757] dbg: diag: perl platform: 5.008006 darwin
    [18757] dbg: diag: module installed: Digest::SHA1, version 2.10
    [18757] dbg: diag: module installed: Archive::Tar, version 1.30
    [18757] dbg: diag: module installed: IO::Zlib, version 1.04
    [18757] dbg: diag: module installed: DB_File, version 1.814
    [18757] dbg: diag: module installed: HTML::Parser, version 3.36
    [18757] dbg: diag: module installed: MIME::Base64, version 3.05
    [18757] dbg: diag: module installed: Net::DNS, version 0.59
    [18757] dbg: diag: module installed: Net::SMTP, version 2.29
    [18757] dbg: diag: module installed: Mail::SPF::Query, version 1.999001
    [18757] dbg: diag: module installed: IP::Country::Fast, version 604.001
    [18757] dbg: diag: module installed: Razor2::Client::Agent, version 2.82
    [18757] dbg: diag: module installed: Net::Ident, version 1.20
    [18757] dbg: diag: module not installed: IO::Socket::INET6 ('require' failed)
    [18757] dbg: diag: module installed: IO::Socket::SSL, version 1.0
    [18757] dbg: diag: module installed: Time::HiRes, version 1.68
    [18757] dbg: diag: module installed: DBI, version 1.52
    [18757] dbg: diag: module installed: Getopt::Long, version 2.34
    [18757] dbg: diag: module installed: LWP::UserAgent, version 2.033
    [18757] dbg: diag: module installed: HTTP::Date, version 1.47
    [18757] dbg: ignore: using a test message to lint rules
    [18757] dbg: config: using "/etc/mail/spamassassin" for site rules pre files
    [18757] dbg: config: read file /etc/mail/spamassassin/init.pre
    [18757] dbg: config: read file /etc/mail/spamassassin/v310.pre
    [18757] dbg: config: read file /etc/mail/spamassassin/v312.pre
    [18757] dbg: config: using "/usr/local/share/spamassassin" for sys rules pre files
    [18757] dbg: config: using "/usr/local/share/spamassassin" for default rules dir
    [18757] dbg: config: read file /usr/local/share/spamassassin/10_misc.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_advance_fee.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_anti_ratware.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_body_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_compensate.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_dnsbl_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_drugs.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_fake_helo_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_head_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_html_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_meta_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_net_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_phrases.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_****.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_ratware.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_uri_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/23_bayes.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_accessdb.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_antivirus.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_body_tests_es.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_body_tests_pl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_dcc.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_dkim.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_domainkeys.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_hashcash.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_pyzor.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_razor2.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_replace.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_spf.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_textcat.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_uribl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_de.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_fr.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_it.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_nl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_pl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_pt_br.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/50_scores.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_awl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist_dk.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist_dkim.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist_spf.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist_subject.cf
    [18757] dbg: config: using "/etc/mail/spamassassin" for site rules dir
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_adult.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_bayes_poison_nxm.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_evilnum0.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_evilnum1.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_evilnum2.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_html.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_obfu.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_oem.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_random.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_stocks.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sc_top200.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/99_FVGT_Tripwire.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/Chinese_rules.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/local.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/weeds.cf
    [18757] dbg: config: using "/private/var/root/.spamassassin/user_prefs" for user prefs file
    [18757] dbg: config: read file /private/var/root/.spamassassin/user_prefs
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::URIDNSBL from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::URIDNSBL=HASH(0x18796d0)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::Hashcash from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::Hashcash=HASH(0x1c828d8)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::SPF from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::SPF=HASH(0x1d91a64)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::Pyzor from @INC
    [18757] dbg: pyzor: network tests on, attempting Pyzor
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::Pyzor=HASH(0x1c66f5c)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::Razor2 from @INC
    [18757] dbg: razor2: razor2 is available, version 2.82
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::Razor2=HASH(0x466db0)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::SpamCop from @INC
    [18757] dbg: reporter: network tests on, attempting SpamCop
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::SpamCop=HASH(0x468e68)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::AWL from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::AWL=HASH(0x1dd02d0)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::AutoLearnThreshold from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::AutoLearnThreshold=HASH(0x1e34100)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::WhiteListSubject from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::WhiteListSubject=HASH(0x1e36be0)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::MIMEHeader from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::MIMEHeader=HASH(0x1e39d30)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::ReplaceTags from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::ReplaceTags=HASH(0x1e3e260)
    [18757] dbg: config: adding redirector regex: /^http:\/\/chkpt\.zdnet\.com\/chkpt\/\w+\/(.*)$/i
    [18757] dbg: config: adding redirector regex: /^http:\/\/www(?:\d+)?\.nate\.com\/r\/\w+\/(.*)$/i
    [18757] dbg: config: adding redirector regex: /^http:\/\/.+\.gov\/(?:.*\/)?externalLink\.jhtml\?.*url=(.*?)(?:&.*)?$/i
    [18757] dbg: config: adding redirector regex: /^http:\/\/redir\.internet\.com\/.+?\/.+?\/(.*)$/i
    [18757] dbg: config: adding redirector regex: /^http:\/\/(?:.*?\.)?adtech\.de\/.*(?:;|\|)link=(.*?)(?:;|$)/i
    [18757] dbg: config: adding redirector regex: m'^http.*?/redirect\.php\?.*(?<=[?&])goto=(.*?)(?:$|[&\#])'i
    [18757] dbg: config: adding redirector regex: m'^https?:/*(?:[^/]+\.)?emf\d\.com/r\.cfm.*?&r=(.*)'i
    [18757] dbg: config: adding redirector regex: m'/(?:index.php)?\?.*(?<=[?&])URL=(.*?)(?:$|[&\#])'i
    [18757] dbg: config: adding redirector regex: m'^http:/*(?:\w+\.)?google(?:\.\w{2,3}){1,2}/url\?.*?(?<=[?&])q=(.*?)(?:$|[&\#] )'i
    [18757] dbg: config: adding redirector regex: m'^http:/*(?:\w+\.)?google(?:\.\w{2,3}){1,2}/search\?.*?(?<=[?&])q=[^&]*?(?<=%2 0|..[=+\s])site:(.*?)(?:$|%20|[\s+&\#])'i
    [18757] dbg: config: adding redirector regex: m'^http:/*(?:\w+\.)?google(?:\.\w{2,3}){1,2}/search\?.*?(?<=[?&])q=[^&]*?(?<=%2 0|..[=+\s])(?:"|%22)(.*?)(?:$|%22|["\s+&\#])'i
    [18757] dbg: config: adding redirector regex: m'^http:/*(?:\w+\.)?google(?:\.\w{2,3}){1,2}/translate\?.*?(?<=[?&])u=(.*?)(?:$ |[&\#])'i
    [18757] warn: config: failed to parse line, skipping: scare RCVD_IN_NJABL_SPAM 3.0
    [18757] dbg: plugin: Mail::SpamAssassin::Plugin::ReplaceTags=HASH(0x1e3e260) implements 'finish_parsing_end'
    [18757] dbg: replacetags: replacing tags
    [18757] dbg: replacetags: done replacing tags
    [18757] dbg: bayes: no dbs present, cannot tie DB R/O: /private/var/root/.spamassassin/bayes_toks
    [18757] dbg: config: score set 1 chosen.
    [18757] dbg: message: ---- MIME PARSER START ----
    [18757] dbg: message: main message type: text/plain
    [18757] dbg: message: parsing normal part
    [18757] dbg: message: added part, type: text/plain
    [18757] dbg: message: ---- MIME PARSER END ----
    [18757] dbg: bayes: no dbs present, cannot tie DB R/O: /private/var/root/.spamassassin/bayes_toks
    [18757] dbg: dns: name server: 209.198.128.11, family: 2, ipv6: 0
    [18757] dbg: dns: testing resolver nameservers: 209.198.128.11, 209.198.128.27
    [18757] dbg: dns: trying (3) google.com...
    [18757] dbg: dns: looking up NS for 'google.com'
    [18757] dbg: dns: NS lookup of google.com using 209.198.128.11 succeeded => DNS available (set dns_available to override)
    [18757] dbg: dns: is DNS available? 1
    [18757] dbg: metadata: X-Spam-Relays-Trusted:
    [18757] dbg: metadata: X-Spam-Relays-Untrusted:
    [18757] dbg: metadata: X-Spam-Relays-Internal:
    [18757] dbg: metadata: X-Spam-Relays-External:
    [18757] dbg: message: no encoding detected
    [18757] dbg: plugin: Mail::SpamAssassin::Plugin::URIDNSBL=HASH(0x18796d0) implements 'parsed_metadata'
    [18757] dbg: uridnsbl: domains to query:
    [18757] dbg: dns: checking RBL sbl-xbl.spamhaus.org., set sblxbl-lastexternal
    [18757] dbg: dns: checking RBL sa-accredit.habeas.com., set habeas-firsttrusted
    [18757] dbg: dns: checking RBL sbl-xbl.spamhaus.org., set sblxbl
    [18757] dbg: dns: checking RBL sa-other.bondedsender.org., set bsp-untrusted
    [18757] dbg: dns: checking RBL combined.njabl.org., set njabl-lastexternal
    [18757] dbg: dns: checking RBL combined.njabl.org., set njabl
    [18757] dbg: dns: checking RBL combined-HIB.dnsiplists.completewhois.com., set whois
    [18757] dbg: dns: checking RBL list.dsbl.org., set dsbl-lastexternal
    [18757] dbg: dns: checking RBL bl.spamcop.net., set spamcop
    [18757] dbg: dns: checking RBL sa-trusted.bondedsender.org., set bsp-firsttrusted
    [18757] dbg: dns: checking RBL combined-HIB.dnsiplists.completewhois.com., set whois-lastexternal
    [18757] dbg: dns: checking RBL dnsbl.sorbs.net., set sorbs-lastexternal
    [18757] dbg: dns: checking RBL dnsbl.sorbs.net., set sorbs
    [18757] dbg: dns: checking RBL iadb.isipp.com., set iadb-firsttrusted
    [18757] dbg: check: running tests for priority: 0
    [18757] dbg: rules: running header regexp tests; score so far=0
    [18757] dbg: rules: ran header rule __HAS_MSGID ======> got hit: "<"@lint_rules>"
    [18757] dbg: rules: ran header rule NO_REAL_NAME ======> got hit: "[email protected]
    [18757] dbg: rules: "
    [18757] dbg: rules: ran header rule __MSGID_OK_DIGITS ======> got hit: "1159381766"
    [18757] dbg: spf: no suitable relay for spf use found, skipping SPF-helo check
    [18757] dbg: eval: all '*From' addrs: [email protected]
    [18757] dbg: eval: all '*To' addrs:
    [18757] dbg: spf: no suitable relay for spf use found, skipping SPF check
    [18757] dbg: rules: ran eval rule NO_RELAYS ======> got hit
    [18757] dbg: spf: cannot get Envelope-From, cannot use SPF
    [18757] dbg: spf: def_spf_whitelist_from: could not find useable envelope sender
    [18757] dbg: rules: ran eval rule __UNUSABLE_MSGID ======> got hit
    [18757] dbg: spf: spf_whitelist_from: could not find useable envelope sender
    [18757] dbg: rules: ran eval rule MISSING_HEADERS ======> got hit
    [18757] dbg: rules: running body-text per-line regexp tests; score so far=3.188
    [18757] dbg: rules: ran body rule __NONEMPTY_BODY ======> got hit: "I"
    [18757] dbg: uri: running uri tests; score so far=3.188
    [18757] dbg: bayes: no dbs present, cannot tie DB R/O: /private/var/root/.spamassassin/bayes_toks
    [18757] dbg: bayes: not scoring message, returning undef
    [18757] dbg: bayes: opportunistic call attempt failed, DB not readable
    [18757] dbg: rules: running raw-body-text per-line regexp tests; score so far=3.188
    [18757] dbg: rules: running full-text regexp tests; score so far=3.188
    [18757] dbg: info: entering helper-app run mode
    [18757] dbg: info: leaving helper-app run mode
    [18757] dbg: razor2: part=0 engine=4 contested=0 confidence=0
    [18757] dbg: razor2: results: spam? 0
    [18757] dbg: razor2: results: engine 8, highest cf score: 0
    [18757] dbg: razor2: results: engine 4, highest cf score: 0
    [18757] dbg: util: current PATH is: /bin:/sbin:/usr/bin:/usr/sbin
    [18757] dbg: pyzor: pyzor is not available: no pyzor executable found
    [18757] dbg: pyzor: no pyzor found, disabling Pyzor
    [18757] dbg: plugin: Mail::SpamAssassin::Plugin::URIDNSBL=HASH(0x18796d0) implements 'check_tick'
    [18757] dbg: check: running tests for priority: 500
    [18757] dbg: plugin: Mail::SpamAssassin::Plugin::URIDNSBL=HASH(0x18796d0) implements 'check_post_dnsbl'
    [18757] dbg: rules: running meta tests; score so far=3.188
    [18757] info: rules: meta test DIGEST_MULTIPLE has undefined dependency 'DCC_CHECK'
    [18757] info: rules: meta test SARE_OBFU_CIALIS has undefined dependency 'SARE_OBFU_CIALIS2'
    [18757] info: rules: meta test FP_MIXED_****3 has undefined dependency 'FP_PENETRATION'
    [18757] dbg: rules: running header regexp tests; score so far=4.666
    [18757] dbg: rules: running body-text per-line regexp tests; score so far=4.666
    [18757] dbg: uri: running uri tests; score so far=4.666
    [18757] dbg: rules: running raw-body-text per-line regexp tests; score so far=4.666
    [18757] dbg: rules: running full-text regexp tests; score so far=4.666
    [18757] dbg: check: running tests for priority: 1000
    [18757] dbg: rules: running meta tests; score so far=4.666
    [18757] dbg: rules: running header regexp tests; score so far=4.666
    [18757] dbg: config: using "/private/var/root/.spamassassin" for user state dir
    [18757] dbg: locker: safe_lock: created /private/var/root/.spamassassin/auto-whitelist.lock.xserve1.topequip.com.18757
    [18757] dbg: locker: safe_lock: trying to get lock on /private/var/root/.spamassassin/auto-whitelist with 0 retries
    [18757] dbg: locker: safe_lock: link to /private/var/root/.spamassassin/auto-whitelist.lock: link ok
    [18757] dbg: auto-whitelist: tie-ing to DB file of type DB_File R/W in /private/var/root/.spamassassin/auto-whitelist
    [18757] dbg: auto-whitelist: db-based [email protected]|ip=none scores 0/0
    [18757] dbg: auto-whitelist: AWL active, pre-score: 4.666, autolearn score: 4.666, mean: undef, IP: undef
    [18757] dbg: auto-whitelist: DB addr list: untie-ing and unlocking
    [18757] dbg: auto-whitelist: DB addr list: file locked, breaking lock
    [18757] dbg: locker: safe_unlock: unlink /private/var/root/.spamassassin/auto-whitelist.lock
    [18757] dbg: auto-whitelist: post auto-whitelist score: 4.666
    [18757] dbg: rules: running body-text per-line regexp tests; score so far=4.666
    [18757] dbg: uri: running uri tests; score so far=4.666
    [18757] dbg: rules: running raw-body-text per-line regexp tests; score so far=4.666
    [18757] dbg: rules: running full-text regexp tests; score so far=4.666
    [18757] dbg: check: is spam? score=4.666 required=2
    [18757] dbg: check: tests=MISSING_HEADERS,MISSING_SUBJECT,NO_REAL_NAME,NO_RECEIVED,NO_RELAYS,TO_CC_ NONE
    [18757] dbg: check: subtests=__HAS_MSGID,__MSGID_OK_DIGITS,__MSGID_OK_HOST,__NONEMPTY_BODY,__SANE_M SGID,__UNUSABLE_MSGID
    [18757] warn: lint: 1 issues detected, please rerun with debug enabled for more information
    I am concerned with the following -
    [18757] dbg: bayes: no dbs present, cannot tie DB R/O: /private/var/root/.spamassassin/bayes_toks
    [18757] dbg: bayes: not scoring message, returning undef
    [18757] dbg: bayes: opportunistic call attempt failed, DB not readable
    I know that I have a failure with the IO::Socket::INET6 also.
    I am also not getting (never have gotten) the BAYES tag when I look at the Raw Source on Spam Emails. I am assuming that error above could be the issue.
    Any help on this would be greatly appreciated. I love this discussion group and it has helped me out of a bind more than once!
    Thanks in advance for your time.
    G5 Power Mac   Mac OS X (10.4.7)  

    Latest news!
    I just looked at a spam email and I see that it is tagged here is the info
    X-Spam-Status: No, hits=-1.827 tagged_above=-999 required=2 tests=BAYES_00,
    DIET_1
    Now I am still concerned about the error I listed above about the Bayes DB. Any help would be great.

  • Error 404 -- Not Found, when a Servlet is invoked from browser

    Obviously, I have not been able to configure my WebLogic Server 5.1.0 to run
              even the simplest servlet.
              I painstakenly went through all the steps that are listed in the WebLogic
              Server 5.1.0 documentation on the Web to enable servlets, but obviously, I
              have missed a step somewhere.
              I have modified the weblogic.properties file as per all the instrustions,
              but the server simply won't recognize any servlets, not even the SqlServlet
              that came with the server as an example.
              It would require more than 1 exchange of posts to resolve it for me, and I
              am wondering if one of you is willing to work with me on this until I have
              managed to configure the server to make a servlet work on it.
              The server does function as a Web server as I can run the index.html
              document by entering the URL: http://localhost:7001/index.html
              I am pasting the contents of weblogic.properties file below to get the
              person who is willing to help me started.
              The machine I have is a Pentium III with Windows 2000 Professional on it.
              It's a home machine and the WebLogic server is the freely downloadable
              version. I am using it to prepare for a potential contract work.
              I have managed to modify setEnv.cmd file and have managed to compile the
              SqlServlet.java, which is an example servlet. Neither this particular
              servlet nor a HelloWorld type of very basic servlet I have written are
              recognized by the server.
              As you can see from my weblogic.properties file (pasted at the end of this
              post), the SqlServlet has been registered. I have also uncommented the lines
              to allow for the following type of URL:
              http://localhost:7001/servlet/myServlet
              Thanks!
              Anjum Jaleel
              CONTENTS OF MY weblogic.properties file
              # THE WEBLOGIC PROPERTIES FILE
              # This file, which conforms to the java.util.Properties file
              # definition, configures your WebLogic products. You cannot run
              # WebLogic Server without setting required configuration properties in this
              # file. Required properties are marked and appear first in the file.
              # Details on each entry and important information about configuration
              # and security are documented on our website. Please go to:
              # http://www.weblogic.com/docs51/admindocs/properties.html
              # for full instructions on how to edit this file.
              # You do not need to include properties in this file unless you want to
              # change the default, embedded property. Some properties on the
              # AdminProps page are not listed here because the default property
              # is being used. You can change the default by adding the property and
              # its value to this file.
              # You cannot set weblogic.system.home in this file, since the WebLogic
              Server
              # must know where home is in order to retrieve this file. You can
              # change WebLogic home on the command line when you start the
              # WebLogic Server.
              # CLUSTER USERS: Note that the (shared) per-cluster properties file should
              # contain most all of the properties in this file. The only properties
              # that potentially belong in a per-server properties file for a server
              # running in a cluster are the registration (startup class) of pinned
              # RMI objects, and a few tuning properties that may be different for
              # servers in the cluster, depending upon hardware and memory. If you use
              # a per-server properties file, please REMOVE all properties except those
              # that are specifically required in the per-server properties file. You
              # can find specific notes on clusters by searching through this file for
              # "CLUSTER USERS".
              # The way this file is organized:
              # Core properties (includes REQUIRED and RECOMMENDED)
              # Core system properties
              # Core security-related properties
              # Core security-related properties for SSL
              # Core HTTPD administrative properties
              # Optional properties
              # Administrator properties
              # System properties
              # System startup files
              # System shutdown files
              # Security-related properties for Workspaces
              # Jolt for WebLogic properties
              # WebLogic Enterprise Connectivity properties
              # WebLogic File properties
              # WebLogic JMS demo properties
              # WebLogic RMI demo properties
              # WebLogic EJB demo properties
              # WebLogic XML demo properties
              # WebLogic ZAC demo properties
              # HTTPD administrative properties
              # WebLogic JDBC driver properties
              # WebLogic JDBC connection pool management
              # WebLogic demo connection pool
              # WebLogic HTTP Servlet properties
              # Proxy servlet registration
              # Classpath servlet registration
              # File servlet registration
              # ServerSideInclude servlet registration
              # PageCompileServlet (used by JHTML)
              # JSPServlet (used by JSP)
              # ServletServlet registration
              # Servlet reload properties
              # Servlet ACLs
              # WebLogic JSP properties
              # WebLogic JHTML properties
              # WebLogic RMI over IIOP properties
              # User-written and demo servlet registrations
              # CORE PROPERTIES
              # You should set these before you start the WebLogic Server the first time.
              # If you need more instructions on individual properties in this
              # section, check the same section in the Optional Properties, where
              # we've left the long explanations. Or, better yet, go to our
              # website and read all about properties, at:
              # http://www.weblogic.com/docs51/admindocs/properties.html
              # CORE SYSTEM PROPERTIES
              # TCP/IP port number at which the WebLogic Server listens for connections
              weblogic.system.listenPort=7001
              # CORE SECURITY-RELATED PROPERTIES
              # Read important information about security at:
              # http://www.weblogic.com/docs51/admindocs/properties.html
              # REQUIRED: The system password MUST be set in order to start the
              # WebLogic Server. This password is case-sensitive, at least 8 characters.
              # The username for the privileged user is ALWAYS "system".
              # This username and password also includes httpd access (see
              # HTTPD properties below).
              weblogic.password.system=lovkako1
              # RECOMMEND Set to 'everyone' if HTTPD is enabled
              weblogic.allow.execute.weblogic.servlet=everyone
              # Set individual ACLs to restrict access to HTTP-related resources,
              # such as the Administration servlets.
              # To make your own servlets generally available, follow this
              # pattern (provide a weblogic.allow.execute) for your packages and
              # set ACLs as appropriate.
              # CORE SECURITY-RELATED PROPERTIES FOR SSL
              # Read important information about SSL at:
              # http://www.weblogic.com/docs51/classdocs/API_secure.html
              # Enable SSL
              # (default if property not defined is false)
              weblogic.security.ssl.enable=true
              # SSL listen port
              weblogic.system.SSLListenPort=7002
              # Servlets for SSL
              # Authentication servlet for creating tokens for applets
              weblogic.httpd.register.authenticated=weblogic.t3.srvr.ClientAuthenticationS
              ervlet
              # Limits number of unclaimed stored tokens
              weblogic.security.certificateCacheSize=3
              # Capture CA root of client servlet
              weblogic.httpd.register.AdminCaptureRootCA=admin.AdminCaptureRootCA
              # Certificates for SSL
              # Name of acceptable CA roots
              # For client authentication change value to a valid .pem file
              #weblogic.security.clientRootCA=SecureServerCA.pem
              # Server certificates for SSL
              weblogic.security.certificate.server=democert.pem
              weblogic.security.key.server=demokey.pem
              weblogic.security.certificate.authority=ca.pem
              # registration for certificate generator servlet
              weblogic.httpd.register.Certificate=utils.certificate
              weblogic.allow.execute.weblogic.servlet.Certificate=system
              # CORE HTTPD ADMINISTRATIVE PROPERTIES
              # True permits the HTTPD to run (default)
              # Uncomment this property to disable HTTPD
              weblogic.httpd.enable=true
              # If authentication is required, add username/password for each user
              # who will be included in an ACL, as in this commented-out example:
              #weblogic.password.peter=#8gjsL4*
              # OPTIONAL PROPERTIES
              # These properties affect the behavior of the WebLogic Server.
              # You only need to set these properties if you want
              # to change the default setting, which is the property shown.
              # ADMINISTRATOR PROPERTIES
              # Administrator properties are optional information properties,
              # particularly useful for clusters.
              #weblogic.administrator.location=3355 California Drive, West Hampshire, CA
              94104
              #weblogic.administrator.name=Joe Administrator
              #weblogic.administrator.phone=1 415 555 1234
              # SYSTEM PROPERTIES
              # System properties in this section are set to system defaults
              # Performance pack. The shared library must be accessible from your
              # PATH (NT) or from your shared library path (UNIX; the name of the
              # variable varies: LD_LIBRARY_PATH, SHLIB_PATH, etc.)
              weblogic.system.nativeIO.enable=true
              # Outputs logging information to the console as well as to the log file
              weblogic.system.enableConsole=true
              # Sets the directory or URL for the WebLogic Admin help pages
              # The help pages are shipped in the "docs/adminhelp" directory, in the
              # default document root in public_html
              weblogic.system.helpPageURL=g:/weblogic/myserver/public_html/docs51/adminhel
              p/
              # If you prefer to access the most recent help pages, you can do so online
              # by commenting out the previous property and uncommenting this one:
              #weblogic.system.helpPageURL=http://www.weblogic.com/docs51/adminhelp/
              # Properties for tuning the server's performance
              # Number of WebLogic Server execute threads.
              weblogic.system.executeThreadCount=15
              # Other optional system properties
              # Limits size of weblogic.log (in K) and versions old log
              weblogic.system.maxLogFileSize=1024
              # Adjust minimum length of password
              weblogic.system.minPasswordLen=8
              # UNIX only: If running on port 80 on UNIX, enable the setUID program
              #weblogic.system.enableSetUID=false
              # UNIX only: Unprivileged user to setUID to after starting up
              # WebLogic Server on port 80
              #weblogic.system.nonPrivUser=nobody
              # CLUSTER-SPECIFIC PROPERTIES
              # Cluster-specific properties in this section are set to system defaults.
              # CLUSTER USERS: Note that ALL Cluster-specific properties should be set
              # in the per-cluster properties file ONLY.
              # Time-to-live (number of hops) for the cluster's multicast messages
              # (default 1, range 1-255).
              #weblogic.cluster.multicastTTL=1
              # Sets the load-balancing algorithm to be used between
              # replicated services if none is specified. If not specified,
              # round-robin is used.
              #weblogic.cluster.defaultLoadAlgorithm=round-robin
              # SERVER-SPECIFIC CLUSTER PROPERTIES
              # Cluster-related properties in this section are set to system defaults.
              # CLUSTER USERS: Note that these server-specific cluster-related properties
              # should be set in the per-server properties file ONLY.
              # Sets the weight of the individual server for the weight-based
              load-balancing.
              # Range is 0 - 100.
              # Larger numbers increase the amount of traffic routed to this server.
              #weblogic.system.weight=100
              # SYSTEM STARTUP FILES - Examples
              # CLUSTER USERS: Note that ONLY startup registrations for pinned RMI
              # objects should be registered in the per-server properties file.
              # All other startup classes should be registered in the per-cluster
              # properties file.
              # For more info on writing and using startup file, see the
              # Developers Guide "Writing a WebLogic Client application," at
              # http://www.weblogic.com/docs51/classdocs/API_t3.html
              # Register a startup class by giving it a virtual name and
              # supplying its full pathname.
              #weblogic.system.startupClass.[virtual_name]=[full_pathname]
              # Add arguments for the startup class
              #weblogic.system.startupArgs.[virtual_name]={argname]=[argvalue]
              # This example shows the entry for examples/t3client/StartupQuery.java
              #weblogic.system.startupClass.doquery=examples.t3client.StartupQuery
              #weblogic.system.startupArgs.doquery=\
              # query=select * from emp,\
              # db=jdbc:weblogic:pool:demoPool
              # SYSTEM SHUTDOWN FILES - Examples
              # For more info on writing and using shutdown file, see the
              # Developers Guide "Writing a WebLogic Client application," at
              # http://www.weblogic.com/docs51/classdocs/API_t3.html
              # Register a shutdown class by giving it a virtual name and
              # supplying its full pathname.
              #weblogic.system.shutdownClass.[virtual_name]=[full_pathname]
              # Add arguments for the shutdown class
              #weblogic.system.shutdownArgs.[virtualName]={argname]=[argvalue]
              # This example shows the entry for examples/t3client/ShutdownTest.java
              #weblogic.system.shutdownClass.ShutdownTest=examples.t3client.ShutdownTest
              #weblogic.system.shutdownArgs.ShutdownTest=\
              # outfile=c:/temp/shutdown.log
              # SECURITY-RELATED PROPERTIES FOR WORKSPACES
              # For backward compatibility, the following entries disable Access
              # Control on Workspaces
              weblogic.allow.read.weblogic.workspace=everyone
              weblogic.allow.write.weblogic.workspace=everyone
              # JOLT FOR WEBLOGIC PROPERTIES
              # These properties configure a BEA Jolt connection pool for use with
              # the simpapp and bankapp examples, and register a servlet for use with
              # with the simpapp example. The default server address provided here
              # points to a public TUXEDO server that is hosted by BEA for use with
              # this example.
              # Servlet registration for simpapp example:
              #weblogic.httpd.register.simpapp=examples.jolt.servlet.simpapp.SimpAppServle
              t
              # Pool creation and cleanup
              # note this example is set up to work with the public
              # demo TUXEDO server available from BEA's website:
              #weblogic.system.startupClass.demojoltpoolStart=\
              # bea.jolt.pool.servlet.weblogic.PoolManagerStartUp
              #weblogic.system.startupArgs.demojoltpoolStart=\
              # poolname=demojoltpool,\
              # appaddrlist=//beademo1.beasys.com:8000,\
              # failoverlist=//beademo1.beasys.com:8000,\
              # minpoolsize=1,\
              # maxpoolsize=3
              #weblogic.system.shutdownClass.demojoltpoolStop=\
              # bea.jolt.pool.servlet.weblogic.PoolManagerShutDown
              #weblogic.system.shutdownArgs.demojoltpoolStop=\
              # poolname=demojoltpool
              # WEBLOGIC ENTERPRISE CONNECTIVITY PROPERTIES
              # The registrations enable a BEA IIOP connection pool and
              # register servlets for use with the simpapp and university examples.
              # Configure for your environment and uncomment to use.
              # Uncommenting these properties requires WebLogic Enterprise Connectivity
              # and an operating WebLogic Enterprise Server.
              # Servlet registration for simpapp servlet example
              #weblogic.httpd.register.SimpappServlet=\
              # examples.wlec.servlets.simpapp.SimpappServlet
              #weblogic.allow.execute.weblogic.servlet.SimpappServlet=everyone
              # Servlet registration for simpapp EJB example
              # (You'll need to add the wlec_ejb_simpapp.jar to the
              # weblogic.ejb.deploy property in this file.)
              #weblogic.httpd.register.ejbSimpappServlet=\
              # examples.wlec.ejb.simpapp.ejbSimpappServlet
              #weblogic.allow.execute.weblogic.servlet.ejbSimpappServlet=everyone
              # Pool creation and cleanup for the simpapp example
              #weblogic.CORBA.connectionPool.simplepool=\
              # appaddrlist=//wlehost:2468,\
              # failoverlist=//wlehost:2468,\
              # minpoolsize=2,\
              # maxpoolsize=3,\
              # username=wleuser,\
              # userrole=developer,\
              # domainname=simpapp
              # Servlet registration for university Servlet example:
              #weblogic.httpd.register.UniversityServlet=\
              # examples.wlec.servlets.university.UniversityServlet
              #weblogic.allow.execute.weblogic.servlet.UniversityServlet=everyone
              # Pool creation and cleanup for the University example:
              #weblogic.CORBA.connectionPool.Univpool=\
              # appaddrlist=//wlehost:2498,\
              # failoverlist=//wlehost:2498,\
              # minpoolsize=2,\
              # maxpoolsize=3,\
              # username=wleuser,\
              # userrole=developer,\
              # apppassword=wlepassword,\
              # domainname=university
              # WEBLOGIC FILE PROPERTIES
              # Maps a volume name to a path, for client file read/write
              #weblogic.io.fileSystem.[volumeName]=[fullPathName]
              # WEBLOGIC JMS DEMO PROPERTIES
              # CLUSTER USERS: Note that ALL JMS deployment should be done in the
              # per-cluster properties file ONLY.
              # You set up a JDBC connection pool if you want persistent messages
              # (including durable subscriptions). To use JMS and EJBs in the same
              # transaction, both must use the same JDBC connection pool. Uncomment
              # the following property to use the default JDBC connection pool
              # 'demo', which is defined in the Demo connection pool section of this file.
              #weblogic.jms.connectionPool=demoPool
              # The JMS Webshare example demonstrates how the ClientID for a
              # durable subscriber is configured in the connection factory:
              #weblogic.jms.topic.webshareTopic=jms.topic.webshareTopic
              #weblogic.jms.connectionFactoryName.webshare=jms.connection.webshareFactory
              #weblogic.jms.connectionFactoryArgs.webshare=ClientID=webshareUser
              #weblogic.httpd.register.webshare=examples.jms.webshare.WebshareServlet
              # The JMS trader example shows how to use JMS with an EJB. In addition
              # to uncommenting the following properties, you must also set up and
              # deploy the EJB example examples.ejb.basic.statelessSession.Trader in
              # ejb_basic_statelessSession.jar to try out this JMS example:
              #weblogic.jms.topic.exampleTopic=javax.jms.exampleTopic
              #weblogic.jms.connectionFactoryName.trader=jms.connection.traderFactory
              #weblogic.jms.connectionFactoryArgs.trader=ClientID=traderReceive
              #weblogic.httpd.register.jmstrader=examples.jms.trader.TraderServlet
              # Registers the underlying servlet
              #weblogic.httpd.register.jmssender=examples.jms.sender.SenderServlet
              # These properties are used with the ServerReceive JMS example,
              # which demonstrates how to establish a JMS message consumer
              # in a startup class:
              #weblogic.system.startupClass.serverReceive=\
              # examples.jms.startup.ServerReceive
              #weblogic.system.startupArgs.serverReceive=\
              # connectionFactory=javax.jms.TopicConnectionFactory,\
              # topic=javax.jms.exampleTopic
              # These properties are used with the PoolReceive JMS example,
              # which demonstrates how to establish a pool of JMS message consumers
              # in a startup class:
              #weblogic.system.startupClass.poolReceive=\
              # examples.jms.startup.PoolReceive
              #weblogic.system.startupArgs.poolReceive=\
              # connectionFactory=javax.jms.TopicConnectionFactory,\
              # topic=javax.jms.exampleTopic
              #weblogic.allow.create.weblogic.jms.ServerSessionPool=everyone
              # WEBLOGIC RMI DEMO PROPERTIES
              # CLUSTER USERS: Note that pinned RMI objects should be registered
              # in the per-server properties file ONLY. All other RMI startup
              # classes should be registered in the per-cluster properties file.
              # Remote classes registered at startup after the pattern:
              #weblogic.system.startupClass.[virtualName]=[fullPackageName]
              # These examples can be compiled to see RMI in action. Uncomment to use:
              #weblogic.system.startupClass.hello=examples.rmi.hello.HelloImpl
              #weblogic.system.startupClass.multihello=examples.rmi.multihello.HelloImpl
              #weblogic.system.startupClass.stock=examples.rmi.stock.StockServer
              # WEBLOGIC EJB DEMO PROPERTIES
              # CLUSTER USERS: Note that ALL EJB deployment should be done in the
              # per-cluster properties file ONLY.
              # See WebLogic Demo Connection Pool below for a connection pool
              # to use with these examples.
              # Deploys EJBeans. Uncomment the appropriate lines below and
              # modify DBMS-related info and paths to match your particular installation:
              #weblogic.ejb.deploy=\
              # g:/weblogic/myserver/ejb_basic_beanManaged.jar, \
              # g:/weblogic/myserver/ejb_basic_containerManaged.jar, \
              # g:/weblogic/myserver/ejb_basic_statefulSession.jar, \
              # g:/weblogic/myserver/ejb_basic_statelessSession.jar, \
              # g:/weblogic/myserver/ejb_extensions_finderEnumeration.jar, \
              # g:/weblogic/myserver/ejb_extensions_readMostly.jar, \
              # g:/weblogic/myserver/ejb_subclass.jar, \
              # g:/weblogic/myserver/jolt_ejb_bankapp.jar
              # Servlet used by the EJB basic beanManaged example
              # Uncomment to use:
              #weblogic.httpd.register.beanManaged=\
              # examples.ejb.basic.beanManaged.Servlet
              # Add a list of users (set the password with
              weblogic.password.[username]=XXX)
              # to set an ACL for this servlet:
              #weblogic.allow.execute.weblogic.servlet.beanManaged=user1,user2,etc
              #weblogic.password.user1=user1Password
              #weblogic.password.user2=user2Password
              # WEBLOGIC XML DEMO PROPERTIES
              # These properties are required to run the XML examples.
              # Uncomment to use.
              # CLUSTER USERS: Note that ALL servlets should be set up
              # in the per-cluster properties file ONLY.
              #weblogic.httpd.register.StockServlet=examples.xml.http.StockServlet
              # BizTalk example properties
              #weblogic.jms.queue.tradeIncoming=biztalk.jms.tradeIncoming
              #weblogic.jms.queue.tradeError=biztalk.jms.tradeError
              #weblogic.httpd.register.BizTalkServer=examples.xml.biztalk.BizHttpProtocolA
              dapter
              #weblogic.httpd.initArgs.BizTalkServer=bizQueue=biztalk.jms.tradeIncoming
              # WEBLOGIC ZAC DEMO PROPERTIES
              # These registrations enable the ZAC Publish Wizard.
              weblogic.zac.enable=true
              # Set the publish root for a WebLogic Server. Edit and
              # uncomment to use.
              #weblogic.zac.publishRoot=g:/weblogic/zac
              # Set an ACL for each package you publish. The [name] is
              # the "Package name" you assign in the ZAC Publish Wizard.
              # Publish a package, edit this property, and uncomment to use.
              #weblogic.allow.read.weblogic.zac.[name]=[user list]
              #weblogic.allow.write.weblogic.zac.[name]=system
              # HTTPD ADMINISTRATIVE PROPERTIES
              # Enables logging of HTTPD info in common log format and
              # sets the log file name (default is "access.log" in "myserver")
              weblogic.httpd.enableLogFile=true
              weblogic.httpd.logFileName=access.log
              # Tracks HTTPD requests with events delivered to WEBLOGIC.LOG.HTTPD
              weblogic.httpd.enableEvents=false
              # Enables HTTP sessions
              weblogic.httpd.session.enable=true
              # Sets an optional cookie name. The default name is "WebLogicSession".
              # Prior to version 4.0, the default was "TengahSession". To make
              # this backward compatible with cookies generated from previous
              # installations, you should set this property to "TengahSession".
              # Uncomment this line and set this to any string of your choice,
              # or comment out this property to use the default.
              #weblogic.httpd.session.cookie.name=WebLogicSession
              # MIME types
              weblogic.httpd.mimeType.text/html=html,htm
              weblogic.httpd.mimeType.image/gif=gif
              weblogic.httpd.mimeType.image/jpeg=jpeg,jpg
              weblogic.httpd.mimeType.application/pdf=pdf
              weblogic.httpd.mimeType.application/zip=zip
              weblogic.httpd.mimeType.application/x-java-vm=class
              weblogic.httpd.mimeType.application/x-java-archive=jar
              weblogic.httpd.mimeType.application/x-java-serialized-object=ser
              weblogic.httpd.mimeType.application/octet-stream=exe
              weblogic.httpd.mimeType.text/vnd.wap.wml=wml
              weblogic.httpd.mimeType.text/vnd.wap.wmlscript=wmls
              weblogic.httpd.mimeType.application/vnd.wap.wmlc=wmlc
              weblogic.httpd.mimeType.application/vnd.wap.wmlscriptc=wmlsc
              weblogic.httpd.mimeType.image/vnd.wap.wbmp=wbmp
              # In seconds, the keep-alive for HTTP and HTTPS requests
              weblogic.httpd.http.keepAliveSecs=60
              weblogic.httpd.https.keepAliveSecs=120
              # WEBLOGIC JDBC DRIVER PROPERTIES
              # Enables JDBC driver logging and sets the file name for the log
              # The weblogic.jdbc.logFile is placed in the per-server
              # directory (default is "myserver")
              weblogic.jdbc.enableLogFile=false
              weblogic.jdbc.logFileName=jdbc.log
              # WEBLOGIC JDBC CONNECTION POOL MANAGEMENT
              # CLUSTER USERS: Note that ALL JDBC connection pools should be set up
              # in the per-cluster properties file ONLY.
              # For creating JDBC connection pools. This example shows a connection
              # pool called "oraclePool" that allows 3 T3Users "guest," "joe," and "jill"
              # to use 4 JDBC connections (with a potential for up to 10 connections,
              # incremented by two at a time, with a delay of 1 second between each
              # attempt to connect to the database), to an Oracle database server called
              # "DEMO." If more than 4 connections are opened, after 15 minutes, unused
              # connections are dropped from the pool until only 4 connections remain
              open.
              # Every 10 minutes, any unused connections in the pool are tested and
              # refreshed if they are not viable.
              #weblogic.jdbc.connectionPool.oraclePool=\
              # url=jdbc:weblogic:oracle,\
              # driver=weblogic.jdbc.oci.Driver,\
              # loginDelaySecs=1,\
              # initialCapacity=4,\
              # maxCapacity=10,\
              # capacityIncrement=2,\
              # allowShrinking=true,\
              # shrinkPeriodMins=15,\
              # refreshMinutes=10,\
              # testTable=dual,\
              # props=user=SCOTT;password=tiger;server=DEMO
              # Get more details on each argument for this property in the
              # Administrators Guide on setting properties at:
              # http://www.weblogic.com/docs51/admindocs/properties.html
              # Set up ACLs for this connection pool with the following:
              #weblogic.allow.reserve.weblogic.jdbc.connectionPool.oraclePool=\
              # guest,joe,jill
              #weblogic.allow.reset.weblogic.jdbc.connectionPool.oraclePool=\
              # joe,jill
              #weblogic.allow.shrink.weblogic.jdbc.connectionPool.oraclePool=\

    Problem Resolved!
              I found out that I had 'http' instead of 'httpd' in the statement where I
              registered my servlet, SqlServlet.
              Now, I am having difficulty with hot deployment. The server is returning
              error 404.
              

  • Problem with ClassCastException in web application

    Hello,
              I'm trying to deploy a web application in WLS 5.1 and I'm getting the
              "dreaded" ClassCastException every time when JSP tries to read a bean
              from the request or session. Under my architecture (actually it's just
              the regular "model 2" ) bean is populated by a servlet, set on the
              request and then retrieved by JSP (servlet forwards to JSP). Everything
              work fine when I register servlets in weblogic.properties, but
              ClassCastException is thrown on any attempt to read from the request if
              the same JSPs and servlets are deployed as web application.
              Has anybody come across the same problem?
              Thanks in advance for help.
              Alexander
              

    Hello,
              This is all well and good as a temporary bug, but it's totally unrealistic for
              the future. Two points:
              * The ClassLoader doesn't need to be discarded, it just needs to be cleared.
              * Other servlet engines seem to be able to handle this.
              Hope it's on its way to resolution!
              TDoan wrote:
              > Alexander:
              >
              > I had some problem with ClassCastException, and recently I found out what it
              > was that causing it. I'm sure if this is the same problem you are having,
              > but please read the following paragraph.
              >
              > I cutted this from http://www.weblogic.com/docs51/classdocs/API_servlet.html
              > ClassCastException and HTTP Sessions
              >
              > You might encounter a ClassCastException while developing servlets that use
              > HTTP sessions. This could happen as a result of the following set of events:
              >
              > a.. You store a reference to a custom class, myFoo, in an HTTP session.
              >
              > b.. While in mid-session, you change your servlet (or JSP or JHTML),
              > causing it to be reloaded. In fact, it is necessary for it to be reloaded by
              > a completely new class loader, and the old class loader that had previously
              > loaded it must be discarded.
              >
              > c.. Because your custom class myFoo is also located under the servlet
              > classpath, it too is reloaded by the new class loader.
              >
              > d.. Now, when you retrieve myFoo from the HTTP session, you cast it to the
              > expected type, but you recieve a ClassCastException. The exception is thrown
              > even if class myFoo has not changed. Because it has been loaded by a
              > different class loader, it is regarded by the JVM as incompatible.
              > Note: If you are using session persistence, the class contents must be
              > serialized, and you will not encounter this exception.
              >
              > Here are some suggested work-arounds to this problem:
              >
              > a.. Do not place your class myFoo in the servlet classpath. Instead, place
              > it in the system classpath or the weblogic.class.path, which are accessible
              > by WebLogic Server. The class will not be reloaded when the servlet is
              > modified. This drawback to this solution is that you cannot prototype the
              > myFoo class, because you must restart the server in order to reload the
              > class after it is modified.
              >
              > b.. If you need to prototype the class, you can write a wrapper method
              > within it to store and retrieve its contents to and from the session. You do
              > not access the class directly from the session, but instead call it is
              > wrapper methods to store or populate it is contents from the session. As
              > long as you use standard Java class types to store the class contents, they
              > will not be reloaded when the servlet is reloaded. This approach has
              > performance drawbacks because your wrapper methods would need to set or get
              > multiple name=value pairs for each class's attributes.
              >
              > c.. Another work-around is to catch the ClassCastException, and replace
              > the old class that is stored in the session with a newly instantiated class,
              > or remove it from the session. Unfortunately, you lose the session data that
              > was previously stored in the class, so you must write your application to
              > handle this scenario. This is the easiest solution to the problem-remember
              > that you should not be storing critical information in an HTTP session, but
              > rather storing it in a database.
              > Note: The ClassCastException generally occurs while you are developing
              > your servlets, and should not be an issue in a stable production system. If
              > you are upgrading your system online, you might wish to warn your customer
              > base.
              >
              > Hope it helps,
              > Tin
              >
              > "Alexander Ananiev" <[email protected]> wrote in message
              > news:[email protected]...
              > > Hello,
              > >
              > > I'm trying to deploy a web application in WLS 5.1 and I'm getting the
              > > "dreaded" ClassCastException every time when JSP tries to read a bean
              > > from the request or session. Under my architecture (actually it's just
              > > the regular "model 2" ) bean is populated by a servlet, set on the
              > > request and then retrieved by JSP (servlet forwards to JSP). Everything
              > > work fine when I register servlets in weblogic.properties, but
              > > ClassCastException is thrown on any attempt to read from the request if
              > > the same JSPs and servlets are deployed as web application.
              > > Has anybody come across the same problem?
              > >
              > > Thanks in advance for help.
              > > Alexander
              > >
              

  • Things and Software to avoid when authoring for DVD-V

    This one is always in the earlier, 1.X FAQ, but is so important it should be repeated here too.
    There have been so many posts along the line of "I cannot burn my DVD in Encore, but Nero works well" that I thought I should share this info with you all.
    As we know, DVD Authoring is very dependant on timing, and on not having other apps getting in the way & locking up the burners, So here is a list of software that is known to interfere with GEAR drivers. It is a raging cert that this also applies here, as all authoring apps are the same sort of thing.
    These 3rd party apps are junk software, to be quite blunt (I expect to get flamed over this, but I cannot help the truth), and should never be installed on an Authoring system.
    Anyway, here is the current list of 
    i known problem software.
    1. B's Clip: This package will load a packet-writing software that will constantly talk to your CD/DVD writer, and can cause a number of issues while trying to write a disc. Disabling this software is not enough, as a portion of this package is always running after you start windows. You will need to uninstall it in Add/Remove programs, then reboot to remove it. For more information, visit the B's website at http://www.bhacorp.com.
    2. Direct CD or Drag to Disk: These are applications from Easy CD Creator from Roxio. This package will load a packet-writing software that will constantly talk to your CD/DVD writer, and can cause a number of issues while trying to write a disc. Disabling this software is not enough, as a portion of this package is always running after you start windows. To remove them you need to do to Add or Remove Programs in the Control Panel. There you can select Easy CD Creator to change, not remove. Then you must click next until it gives you the option to modify. Then either Direct CD or Drag to Disk should be selected and changed to "make this option not available". Then click next and while the program may look like it is installing, it is removing those options. One thing to remember is that both Direct CD and Drag to Disk will not be installed at the same time. For more information, please visit Roxio's website at http://www.roxio.com/en/support.index.jhtml
    3. GoBack: backup software that constantly runs in the background (Terminate and Stay Ready) this needs not only to be turned off, but disabled. Unfortunately, this may cause some restore points to vanish, but it will free up a lot of hard drive space. For more information visit Symantec's web site for GoBack at http://www.symantec.com/goback/index.html 
    4. DLA: Also HP-DLA, Veritas DLA, and others. DLA stands for Disk Letter Assignment. This package will load a packet-writing software that will constantly talk to your CD/DVD writer, and can cause a number of issues while trying to write a disc. Disabling this software is not enough, as a portion of this package is always running after you start windows. You will need to uninstall it in Add/Remove programs, then reboot to remove it.
    5. InCD: This is packet writing software that comes bundled with Ahead Nero Burning Rom. This package will load a packet-writing software that will constantly talk to your CD/DVD writer, and can cause a number of issues while trying to write a disc. Disabling this software is not enough, as a portion of this package is always running after you start windows. You will need to uninstall it in Add/Remove programs, then reboot to remove it. For more information go to Nero's website at http://www.nero.com/en/
    6. Interactual Player and PC Friendly Player: These programs are DVD software viewers that often come on DVD movie discs, and will try to install themselves everytime you watch a movie on your computer. Please make sure to NOT let these install. Both programs interfere with all DVD Authoring software and should be un-installed from Add or Remove programs in control panel when found. In some cases, you will need to uninstall and reinstall your software to restore functionality after removing one of these. For more information about both players, visit http://player.interactual.com/ 
    7. McAfee Anti-Virus: This is anti-virus software that when running, can cause errors. It needs to be disabled by right clicking on the icon in the lower right side of the task bar. Your DVD Authoring software then needs to be restarted. Whenever you are using your software, McAfee needs to be disabled to ensure unrestricted access to your drive. For more info go to McAfee's website at http://us.mcafee.com/default.asp 
    8. Norton Anti-Virus: This is anti-virus software that when running, can cause errors. It needs to be disabled by right clicking on the icon in the lower right side of the task bar and the automatic updates should be disabled. Your DVD software then needs to be restarted. Whenever you are using your software, Norton needs to be disabled to ensure unrestricted access to your drive. The Norton Website is http://www.symantec.com/ 
    9. StopZilla: StopZilla can hinder required portions of various installers, causing the software to fail. Please completely disable StopZilla, then install your software. Once our software is installed, you may safely enable it again. If you have any difficulty using your software at a later time, you may need to disable StopZilla before going to use your software. Uninstallation is not required. 
    10. MyStorageGuard: This backup software can hinder certain required files from being copied during the installation. Please disable this program before installing , and have it disabled any time you go to use your DVD Authoring software. Uninstallation is not required. 
    11. Napster 2.0: This software includes some basic burning software that can cause burning problems if it is running. You will need to close this program completely before trying to use DVD Authoring software. In some rare cases, you will need to completely uninstall this package to attain full reliability, so if disabling does not solve your issue, please try uninstalling this software, and try again. 
    12. Easy CD Creator 4.x: Due to the age of this package, it is no longer updated by the authors. There are bugs present in this older system that will cause NUMEROUS problems on your machine. Please Uninstall completely, and consider either the new 6.x version from Roxio ( http://www.roxio.com ) or Nero 6.x ( http://www.nero.com ). These packages, installed without the Packet Writing software (DirectCD/Drag to Disk/InCD), all work very well with DVD Authoring software. 
    13. Spyware and Adware - some programs can install other software that can be damaging to your Operating System. Please scan for these programs with a Spyware utility. We recommend Ad-Aware, available freely at http://www.lavasoftusa.com 
    14. Disable the Windows XP packet writing utility. To do so, go to My Computer, Right click oon your DVD burner, choose Properties. Find the "Recording" tab. Uncheck "Enable CD recording on this drive" While you are there, switch off all AutoRun options too. It means going through each option and then selecting "Take No Action" as the default option. AutoRun will "poll" the drive every few minutes to look for a new disc, and if it finds one it will try to open it. 
    15. Symantec PCAnywhere has been reported to cause problems with Encore as the awvid5.dll file it installs is a video driver designed to facilitate the transfer of screen information from one computer to another. Sadly, this causes a conflict which can cause XP to restart - or give a bluescreen if the "Automatically restart" option has been unticked, giving a PAGE_FAULT_IN_NONPAGED_AREA stop condition.
    Another crash can be reproduced by
    a) Open a project
    b) Add an MPEG file and associated WAV file as assets
    c) Link the MPEG file to a menu button by dragging
    d) Encore creates a Timeline for the MPEG file automatically
    e) Open the new Timeline
    f) Drag the MPEG's WAV file into the timeline's audio track
    g) Close the Timeline
    h) Repeat (b)-(d)
    i) When the new Timeline is double-clicked, XP restarts
    The 
    i only
    solution found so far is to uninstall PCAnywhere, then all returns to normal.
    16. It has also been found that either Efax or Winfax software installed to the system can cause the dreaded "Visual C++ Runtime Error" which will crash Encore. Microsoft support have confirmed that if you see this error, you need a hotfix KB884538, from www.microsoft.com in the support area.
    Install the hotfix, and if the error remains, check for either of these fax programs. If either are present, remove them, reboot and all should now work.
    17. Roxio Easy CD Creator - General issues.
    Firstly, when uninstalling any Roxio application it is best to do this from the "Add Remove Programs" applet in Control Panel, as usual. However - this will NOT remove all Roxio's tentacles from your system. To be sure all is definitely removed, you need to visit 
    http://www.microadvantage.net/downloads/zapper60.zip
    and run this. When you are done, you can then reboot and the evil Roxio will finally be gone.
    Another common issue with Roxio is when Nero also co-exists on the same system. The two 
    i loathe
    each other and are apparently incapable of co-existing.
    If you have noth these installed there is an additional set of stuff to go through. Remove Roxio first, then reboot, then remove Nero completely beginning by uninstalling from "Add Remove Programs" and then we also need to get rid of all the various tendrils it has also addeed to the system using the following tools:
    (You must use all 3 of Nero's Clean tools in order to do the job correctly.)
    They can all be found here:
    http://www.nero.com/us/631940828445001.htm
    1. General Clean tool
    2. Registry cleaner and driver cleaner
    3. InCD Clean tool
    When you reinstall Nero 6.6 OR Neros new 7 Ultra Edition, DO NOT install InCD OR if you do, turn it off in startup under msconfig (better to not install it) 
    18 - FindSounds Palette 
    This is a tool designed to help you find SFX on your drives, and it seems to prevent Encore from importing M2V files for some reason, and should be uninstalled if present.
    To uninstall this, do the following steps:
    Uninstall "Find Sounds Palette" (FS Palette).
    Delete the two registry key folders for "Comparisonics".
    Uninstall Encore CS3.
    Delete Registry Keys for Encore.
    Restart.
    Install Encore CS3.
    Install Encore 3.0.1 update.
    Restart.
    19 - Quicken
    It has been reported that if you back up your Quicken files to CD, then Quicken sets up your DVD burner for CD DLA through the built-in Windows burning facility.  This assignment recurs each time your system is restarted.  When this happens, Encore will see your burner as a CD burner only.  You'll have to manually disable this start-up assignment to get Encore to see your burner as a DVD burner again.
    Additionally, it is a good idea to disable Autorun for your burner, preferably from the registry. While this will not prevent anything polling the drive from the OS to try & "helpfully" check for freshly inserted media, it will prevent sneaky DRM applications from installing themselves to your system just by having the disc inserted. As well as the registry hack required, there are other methods of stopping this described at
    http://www.annoyances.org/exec/show/article03-018
    To do the registry hack, perform the following:
    * Run the Registry Editor (REGEDIT.EXE).
    * Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cdrom.
    * Double-click the Autorun value, and type 0 for its value. (If it's not there, create it by selecting Edit -> New -> DWORD Value, and typing "Autorun" for its name.)
    * You may have to log out and then log back in for this change to take effect.
    * Note: With this solution, Windows will no longer be notified when you insert a new CD. To make sure the correct icon and title for the current CD are displayed in My Computer and Explorer, press F5 to refresh the window. 
    If you perform any of these changes, you may need to uninstall your software, then re-install to fix any damage left. If you find some of these packages, please shut down and reboot twice to ensure that the last pieces of the conflicting software are completely removed.

    You're lucky then Steve.
    Roxio is one of those apps that usually doesn't play nice with any other burning software at all.
    I use GEAR Pro Mastering Edition.
    They also do a cheaper version called GEAR Video - but be aware that this installs DivX as well - although I have to say that on one of our systems running Adobe 1.5 versions of Encore & Premiere Pro, it is causing no conflicts at all. But there have definitely been major problems with DivX codecs and EncoreDVD. Perhaps it is to do with where they come from, perhaps I just got lucky in this case.
    It might be worth a trial version though - although if you have the budget, and do a LOT of DVD, then GEAR Pro Mastering Edition is an invaluable tool I have found.

Maybe you are looking for