Paypal IPN + Coldfusion 7 not working?

I am trying to set up coldfusion to handle payPal IPN but I cant find any tutorials that explain how to get it to work, anything I find is out of date or I just cant get it to work.
I've tried using the code on paypal developer site here:
https://cms.paypal.com/cms_content/CA/en_US/files/developer/IPN_COLDFUSION.txt
and I have enabled IPN on my paypal account but I'm not sure I've set it up correctly. Is there a way to check if paypal is even sending data back to my site?
Been having a look and it seems the ipn I set up isnt even running. when I test the payment (i set up a basic ipn.cfm file that writes to a text file) it still doesnt work. Could there be a reason why paypal isnt running the ipn? If I go to the ipn.cfm file in a browser then the test txt file is created.
Cheers!

Hi Jeff,
Can you let us know the directory location for wwwroot on your system.
jeffcg2 wrote:
That does not work. As soon as I put C:\ColdFusion10\cfusion in the Server Home I get the error Server Home Invalid. I have uninstalled Coldfusion 10 and re-installed added the latest updates. Coldfusion 10 is working fine running on IIS 7.
Not necessarily. As soon as you select the "cfusion" location, it would automatically pick the wwwroot location.
jeffcg2 wrote:
With Coldfusion 10 , since you have C:\ColdFusion10\cfusion\wwwroot. as the Document root will this only work if you install the included web server?
Regards,
Anit Kumar

Similar Messages

  • Paypal plug-in does not work on Firefox

    As with others I see, the Paypal plug-in does not work with Firefox
    == This happened ==
    Every time Firefox opened
    == When I downloaded the app

    This is a Paypal problem. Paypal has not updated their plugin to be compatible with Firefox 3.6.x. See the following (read the last paragraph):
    [https://www.paypal.com/helpcenter/panels/solution/printSolution.jsp;jsessionid=tSQcMKWGhpC1gF5TscjTvqGgR89SSQy40mWymRYM12RX2PVG6rTL!1610223101?t=solutionTab&ft=browseTab&locale=en_US&brand=&segment=&ps=solutionPanels&solutionId=39780&highlightInfo=highlightInfo&viewMode=NORMAL&windowType=SAME&isRecord=false&highlightInfo=highlightInfo&t=solutionTab&ft=browseTab&ps=solutionPanels&locale=en_US&_dyncharset=UTF-8&countrycode=US&cmd=_help&serverInstance=9024&viewMode=NORMAL&windowType=SAME&highlightInfo=&isRecord=false&no_strip= What is the PayPal Plug-In and how does it work?]
    I have seen some users posting that the plugin works with Firefox 3.5.x

  • New Coldfusion Server Setup in Flashbuilder and Coldfusion Builder not working

    I have not found the combination for adding a new Coldfusion Server in Flash Builder 4.7 or Coldfusion Builder 2.01 with Coldfusion 10. I am running windows 7 64bit. on IIS 7. Coldfusion 10 is running fine.
    All was well with Coldfusion 9 Flash Builder 4.6 and Coldfusion Builder 2.0.
    Local Server Settings for CF9 were
    Server Home C:\Coldfusion9
    Document Root   C:\inetpub\wwwroot
    Version: 9.0.x
    Now as soon as I put in C:\Coldfusion10 or C:\Coldfusion10\cfusion I get an error "Server home is not valid".
    Any hints on getting this going.

    Hi Jeff,
    Can you let us know the directory location for wwwroot on your system.
    jeffcg2 wrote:
    That does not work. As soon as I put C:\ColdFusion10\cfusion in the Server Home I get the error Server Home Invalid. I have uninstalled Coldfusion 10 and re-installed added the latest updates. Coldfusion 10 is working fine running on IIS 7.
    Not necessarily. As soon as you select the "cfusion" location, it would automatically pick the wwwroot location.
    jeffcg2 wrote:
    With Coldfusion 10 , since you have C:\ColdFusion10\cfusion\wwwroot. as the Document root will this only work if you install the included web server?
    Regards,
    Anit Kumar

  • ColdFusion Script not work with Httpservice

    At first I use PHP to generate xml output on page then use
    the data to my httpservice with resultformat e4x. Everything is
    fine. But now I want to use coldfusion script since I'm planning to
    use ColdFusion as my web server. I have this script located on my
    server and generate the data in XML file then the XML file is used
    in my web, loaded through httpservice.
    My PHP code was like this :
    <?php
    define( "DATABASE_SERVER", "localhost" );
    define( "DATABASE_USERNAME", "root" );
    define( "DATABASE_PASSWORD", "" );
    define( "DATABASE_NAME", "MyCinema" );
    $mysql = mysql_connect(DATABASE_SERVER, DATABASE_USERNAME,
    DATABASE_PASSWORD) or die(mysql_error());
    mysql_select_db( DATABASE_NAME );
    $Query = "SELECT * FROM film";
    $Result = mysql_query( $Query );
    $Return = "<movies>";
    while ( $film = mysql_fetch_object( $Result ) )
    $Return .= "<film><judul>".$film->JUDUL.
    "</judul><deskripsi>".$film->DESKRIPSI.
    "</deskripsi><genre>".$film->GENRE.
    "</genre><produser>".$film->PRODUSER.
    "</produser><produksi>".$film->PRODUKSI.
    "</produksi><homepage>".$film->HOMEPAGE.
    "</homepage><durasi>".$film->DURASI.
    "</durasi><url>".$film->URL."</url></film>";
    $Return .= "</movies>";
    mysql_free_result( $Result );
    print ($Return);
    ?>
    And now I try to get the same result using coldfusion script.
    At first I dont write the XML to file, I just cfoutput it just like
    I do with PHP just print result but it doesnt work out with my
    HTTPservice. Until I try to write it to XML file then coding my
    httpservice to read directly from that XML file. here is my
    coldfusion code.
    <cfcomponent>
    <cffunction name="a" returnType="Void" output="true"
    access="remote">
    <cfprocessingdirective suppresswhitespace="Yes">
    <cfquery name="GetFilm" datasource="myCinemaData">
    SELECT b.* FROM playing a, film b
    WHERE a.kode_film=b.kode_film AND a.start >
    <cfqueryPARAM value = "#DateFormat(Now())#"
    CFSQLType = "CF_SQL_STRING">
    </cfquery>
    <cfxml variable="userXML">
    <movies>
    <cfloop query="GetFilm">
    <cfoutput>
    <film>
    <judul>#GetFilm.JUDUL#</judul>
    <deskripsi>#GetFilm.DESKRIPSI#</deskripsi>
    <genre>#GetFilm.GENRE#</genre>
    <produser>#GetFilm.PRODUSER#</produser>
    <produksi>#GetFilm.PRODUKSI#</produksi>
    <homepage>#GetFilm.HOMEPAGE#</homepage>
    <durasi>#GetFilm.DURASI#</durasi>
    <url>#GetFilm.URL#</url>
    </film>
    </cfoutput>
    </cfloop>
    </movies>
    </cfxml>
    </cfprocessingdirective>
    <cffile action="write"
    file="#expandPath(".")#\userXML.xml" output="#userXML#">
    </cffunction>
    </cfcomponent>
    Because I need to create the XML files first I try to execute
    this coldfusion script first using webservice before I execute my
    Httpservice but the XML file creation is slower than the execution
    of my httpservice afterthat so it shows an error that my XML file
    isn't not available. What can i do? I've tried to show the output
    using cfoutput and run that script directly on my httpservice just
    like the way I use print result on PHP but it produce an
    error.

    ... I try to execute this coldfusion script first using
    webservice before I execute my Httpservice but the
    XML file creation is slower than the execution of
    my httpservice afterthat so it shows an error
    that my XML file isn't not available.
    Then it might help to apply a named lock to ensure that the
    Httpservice runs only after the web service call is complete. For
    example, apply an exclusive named lock on the code that calls the
    web service and a readonly lock of the same name to the Coldfusion
    code that interacts with the Httpservice.

  • Paypal White Paper setup not working

    I have followed all the steps in the paypal white paper setup for APEX. However, I'm getting this error message that I simply cannot figure out:
    ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1029 ORA-29024: Certificate validation failure
    This doesn't make much sense to me since our certificate works fine. The application is here:
    https://www.clickachart.com:4459/pls/apex/f?p=155
    I know for sure that wallet_path and wallet_pwd are correct. I took all the API data straight from paypal.
    Another user experienced similar problems with google checkout. He added the google and google sandbox certificates to his wallet, and it was all fine and dandy. I've added paypal and paypal sandbox certificates to my wallet, and I'm still at the same place.
    Please help!

    I am NOT positive that happened, but it seems to me there was a thread a while back and it's sticking in my head that somehow something changed on the paypal end...
    Thank you,
    Tony Miller
    Webster, TX

  • Vbscript Coldfusion 64bit Not Working

    Hi, I'm in some major need of help with a deadline coming up very quickly.
    Disclaimer: Not a hardware/server guy so I don't know much here.
    I have a dedicated server with 64bit Windows Server 8 and 64bit CF 9.  I have some Vbscript that runs PERFECTLY from the command line but it gets hung up when I run it using CFEXECUTE.  I'd love to use COM objects but apparently that isn't a feature that works with 64bit CF.  I have CFEXECUTE working in other areas but they use .exe not .vbs.
    Vbscript
    Dim wordFile, pdfFile
    WScript.Echo "Step 1"
    Set oPrinter = CreateObject("easyPDF.Printer.6")
    WScript.Echo "Step 2"
    Set oPrintJob = oPrinter.PrintJob
    WScript.Echo "Step 3"
    wordFile = "C:\file1.doc"
    pdfFile = "C:\pdffile1.pdf"
    WScript.Echo "Step 4"
    oPrintJob.PrintOut wordFile, pdfFile
    WScript.Echo "Step 5"
    Set oPrintJob = Nothing
    Set oPrinter = Nothing
    WScript.Echo "Step 6"
    CF Code
    <cfexecute name='cscript.exe' arguments='c:\simplepdf.vbs' outputfile='#ExpandPath("pdf_test.txt")#' timeout="50000" />
    Output from cfexecute
    Step 1
    Step 2
    Step 3
    Step 4
    Thanks
    Thanks for any help. Like I said the script runs perfectly when executed through the command line and it obviously starts with the cfexecute.
    Thanks!

    Thanks for replying!
    I went in and created an Administrator called "WebUser". I right clicked on my computer and went to manage and verifed they were listed under "administrator" in local users and groups.
    I added them as the Log On for the CF service and restarted the service.
    Got the same results.

  • Web Service is not working in COldfusion 8

    Hi,
    I am using the following code for creating the web service.
    this code was perfectly working in Coldfusion 7,
    however not working in Coldfusion 8.
    &lt;cfscript&gt;
        try {
            ws = CreateObject("webservice", CurrentURL & "IntouchDataService.cfc?wsdl");
        } catch (any e) {
            WriteOutput("Error occured while invoking the Web Service at: ");
            WriteOutput('&lt;a href="#CurrentURL#IntouchDataService.cfc?wsdl"&gt;#CurrentURL#IntouchDataService.cfc?wsdl &lt;/a&gt;');
            WriteOutput('&lt;hr /&gt;&lt;h2&gt;');
            WriteOutput(e.message);
            WriteOutput('&lt;/h2&gt;&lt;hr /&gt;');
            WriteOutput(e.detail);
            WriteOutput('&lt;hr /&gt;');
            WriteOutput(e.StackTrace);
    &lt;/cfscript&gt;
    Follwoing error i got:
    coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler: Found 1 semantic error compiling "E:/ColdFusion8/stubs/WS-2123243560/coldfusion/xml/rpc/CFCInvocationException.java": < 10. public class CFCInvocationException extends org.apache.axis.AxisFault implements java.io.Serializable { . . . 88. } > *** Semantic Error: A class file was not generated for the type "coldfusion.xml.rpc.CFCInvocationException" because a library method that it depends on was not found. See system messages for more information. Found 1 semantic error compiling "E:/ColdFusion8/stubs/WS-2123243560/com/intouchsupport/www/IntouchDataService/TestWebServ iceLocator.java": < 10. public class TestWebServiceLocator extends org.apache.axis.client.Service implements com.intouchsupport.www.IntouchDataService.TestWebSe
    Also i did lot of googling to solve this issue but no luck.
    also i found following blog about this issue also and i did the give steps however problem not solved.
    http://tjordahl.blogspot.com/2007/09/coldfusion-8-getting-started-code.html
    Can somebody help me to sort out this issue?
    thanks
    Prashant Gupta

    Hi,
    I got solution to my problem of webservice is not working in CF8.
    the problem was
    we have already a "rt.jar" file in a location and we defined this location in CF Admin >> java jvm >> classpath
    so this file was conflicting.
    i simply removes this file path from CF Admin.
    and restart the CF services.
    and my web service start working.

  • The internal html viewer is not working in coldfusion builder 2.

    It is so frustrating how hard this is. I finished setting up coldfusion and coldfusion builder 2 with an apache local webserver and was hoping to make use of the internal html viewer but it won't come on! All I see is a blank grey page with no content. After creeping around the forums for a while it seemed that the simplest solution was to use the internal coldfusion server so I uninstalled everything and did just that, reverting my administrator page to http://localhost:8500/CFIDE/administrator/index.cfm (working and launchable from the IDE), placing my webroot at C:\ColdFusion9\wwwroot and with all the folders in their right place. The server is running ok and when I launch the run as "coldfusion administrator" option to run my index file, it succesfully opens the external browser and displays the page.
    I have the same setup on my desktop at home, the same files, installation, everything! and it works but not on my laptop. I followed Ben Forta's instructions to a T and yet I still am not getting the html preview. I even tried to hard code the absolute url in the html preview settings and still nothing but that annoying grey.
    Is this a bug? There doesn't seem to be anything about it in the bug reports. It is quite infuriating how something that seems so miniscule could be such an annoyance. I have already gotten quite used to the preview pages and coldfusion and I would prefer to code that way rather than making use of dreamweaver which I feel I am being forced to use, but at least it's consistent.
    Please if anyone could provide some answers and help I would really appreciate it! I have only so much hair left!
    Thanks!

    Perhaps others may recognize and resolve this for you. I and others here often can and do offer quick solutions to many problems. And I can appreciate that it’s reasonable to think that something so simple should just work. But in this case I think are simply too many variables that could explain why things are not working for you. And while I can also appreciate that you will prefer to get a solution for free if anyone can offer it, I just can’t even begin to offer all the possible problems and solutions, at least by email, in this case. Again, maybe someone else will make a quick connection.
    But I will point out that if you’re willing to pay US$75, I offer a service of remotely troubleshooting any one CFBuilder problem for that fixed price. Hopefully I might help you solve it quickly (when I can see exactly what’s going on in your environment), but you will not pay if I don’t solve the problem in up to 2 hours effort. If you may be interested, see www.carehart.org/consulting/ for more, and if you want to set up a time to get together (over the web), drop me an email at [email protected]
    Finally, please note that I don’t often point out this service here on the forums. I generally just offer suggestions (sometimes lengthy ones) without any commercial expectation, so please don’t regard this as me engaging in “abusive unsolicited commercial email”. I’m just offering a possible solution, given the OPs sincere challenge in solving things.
    /charlie

  • Flex 3 App not working in with ColdFusion 9

    We have a Flex 3 application that uses flash remoting to connect to ColdFusion.   This app was working great with ColdFusion 8,  but will not work after installing ColdFusion 9.
    I am looking for any suggestions on what I might look for to fix this issue.

    Hey Tikis,
    There are a few factors that could be throwing this thing
    through a loop. I've had this exact same thing happen to me once
    before and the culprit for me was that my crossdomain.xml file
    wasn't 100% perfectly formed. Apparently Firefox didn't care enough
    and went on with it's life however IE decided it wasn't going to
    read it and I received that error, so that would be the first thing
    I would check.
    The next thing is what version of PHP are you running on the
    server, it seems to me that the newest release of 5.2.2 is throwing
    this error more often then ever before, something I might suggest
    is upgrading to AMFPHP 1.9. RemoteObjects natively send data in
    what's called the AMF3 format which is much speedier then it's
    predecessor of AMF0. Only AMFPHP 1.9 has the ability to receive /
    send the data back in AMF3 format, where as with the 1.2 version
    it's sending the call, converts it down to AMF0 sends the data (at
    a slower pace) and generates a result. The other advantage to being
    able to use AMF3 is having true type casted results such as if PHP
    returns a number you can check it by if(event.result == 0) where as
    AMF0 everything is converted into a string and then sent back to
    Flash / Flex. So aside from all of these advantages the last one is
    less code, you no longer need to use the RemotingConnection to
    convert everything down to AMF0. I would make a copy of amfphp on
    your linux of the 1.9 version and send the remote object at that
    first and see what happens, if you are still receiving the same
    error then the problem lies in something else.
    Hope this helps.

  • ColdFusion.RichText.setValue not working if cftextarea in a cfwindow

    Title describes the issue.  If I place the cftextarea control outside of the cfwindow, then the ColdFusion.RichText.setValue works fine.  Has anyone else had this issue, and how did you solve it?
    Javascript:
    function  
    showEditTextWindow() {l_sectHeading= document.getElementById('hiddenSectHeading').value;
     var msgbox = document.forms['editTextSectionForm'].textSectionHeading.id;
     var edObj = ColdFusion.RichText.getEditorObject(msgbox);
     var jtext = edObj.GetXHTML(true);
     var msgboxValue = jtext += msgbox;
    ColdFusion.RichText.setValue(msgbox, decodeURIComponent(l_sectHeading));  
    ColdFusion
    .Window.show('editTextSectionWindow');}
    Cfwindow/cftextarea:
    <cfwindow   
    name="editTextSectionWindow"
     headerStyle = "FONT-WEIGHT: normal; FONT-SIZE: 10pt; font-style: normal; COLOR: white; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-ALIGN: center; background-color: ##0000a0;"
     bodyStyle = "FONT-WEIGHT: normal; FONT-SIZE: 8pt; font-style: normal; COLOR: black; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-ALIGN: center; background-color: white;"
     center="true"  
    closable="true"  
    destroyOnClose ="true"  
    draggable="true"  
    initShow="false"  
    resizable="false"  
    modal="true"
     width="600"  
    height="450"  
    title="Edit Heading Text"<!---minHeight="number of pixels"
    minWidth="number of pixels"
    onBindError = "JavaScript function name"
    refreshOnShow = "false|true"
    source="member/office/dsp_zipCodeRequest.cfm"
    x="numeric pixel coordinate"
    y="numeric pixel coordinate"--->
    >
    <cfform  name="editTextSectionForm">
     < div class="centered">
     <cfparam  name="attributes.sectHeading" default=""><cfparam 
    name="attributes.sectText" default="">
      <cfoutput>
    < div style="text-align: center;">
      < table>
     < tr><td> </td></tr>< 
    tr>
     <td style="vertical-align: top;">Heading:</td>
     <td><cftextarea name="textSectionHeading"
     richtext="true"
     height="60"
     width="500"
     toolbar="Basic"
     bind="hiddenSectHeading"
     value="#attributes.sectHeading#"/>
     </td></ 
    tr>< 
    tr><td> </td></tr>< 
    div id="editTextBodyDiv">< 
    tr>
     <td style="vertical-align: top;">Text:</td>
     <td>
     <cftextarea name="textSectionText" id="textSectionText"
     richtext="true"
     height="250"
     width="500"
     toolbar="Basic"
     value="#attributes.sectText#"/>
     </td></ 
    tr></ 
    div></ 
    table>
     </ div></cfoutput>input type="button" name="updateTextSectionButton" value="Update" onclick="updateTextSection();">
      < input type="button" name="CancelTextSectionButton" value="Cancel" onclick="cancelShowWindow('editTextSectionWindow');"></ 
    div></cfform>
    </cfwindow>

    Why is it that you can't ask a proper question?
    I took the time to answer you question and stated that we can't help you based on the information provided.
    I gave you a couple of pieces of information that we would need to help answer your question.
    I gave you a link that showed you how to write a simple program, incorporating the information that we would need to help solve the problem.
    I suggested that the problem was related to the fact that the value of the scrollbar was not in its final state. I tried to help but I am not a mind reader.
    Why did you bother to repsond to the question without providing any more information? Why is it that when you ask for help you don't listen to the suggestions given in order to help solve your problem?
    If you've read my postings previously, then why do I have to repeat the basics of asking a simple question?
    I don't deny that some of my postings have a bit of an attitude. Its because I get tired of trying to be a mind reader and guessing how one line of code interacts with the rest of your program or guessing what the intent of your code is.
    But at least I made the effort to tell you what was wrong with the question and why we can't provide an definite answer. The least you code have done is provide your demo code.

  • Links not Working on ColdFusion Support Center

    Does anyone know why none of the links to the articles here are not working?  http://www.adobe.com/support/coldfusion/security.html
    For example... the article... Top Five ColdFusion Security Issues
    http://www.adobe.com/devnet/server_archive/articles/top5_cf_security_issues.html
    This is also true of the TechNotes
    Thanks.

    Hi,
    Thank you for letting us know. We are checking these.
    Regards,
    Anit Kumar

  • What's with Tracked Packet & Paypal Labels - still not working properly?

    This is probably an old refrain, but honestly, how many months/years has it been since Tracked Packet was added to Paypal labelling, and it seems it's still not working 100% correctly.  Case in point: I rarely use TP, but when I tried to change my listing's shipping type from Small Packet to TP yesterday while preparing a label, I got an error message saying the information was incorrect and I couldn't complete the process with TP.  I used the back button, tried inputting the details again, still no go.  Finally, I decided to back out completely, return to the Paypal transaction page and start all over.  This time I was able to get the label done.  So it seems that if any other shipping type is input first, you can't change your mind and switch to TP during the process. This has never been a problem with Expedited Parcel or with Xpresspost -- you can input the details, check pricing, then return and change the shipping type as many times as desired.  I'm wondering if the problem is me and/or my browser (again??), or does anyone else experience this annoying glitch?  BTW, Tracked Packet is an air service, right?  If not, I may be in trouble.  I ask this because I see the estimated delivery time is from 4 to 15 days -- quite a spread for TP U.S.A.

    Tracked Packet has always done the error since it was introduced. If another shipping option is used when you go to PayPal shipping from eBay, switching to Tracked Packet does not reset the form from the service that you came into. You cannot see anything but the form has not been reset. To get around this is simple.  You need to reset the form. A trick to do this is to go to the Service Type entry box, select "Select Type" as the service and click "Continue" at the bottom of the page. This will generate an error message at the top saying to "Please enter a valid service type."  This resets the form to the starter defaults and now you can select the Tracked Packet service. All the information that was entered will not be lost. I posted this solution way back when this "glitch" was first mentioned years ago when Tracked Packet was introduced. It was sent to kalvin at the time but he left eBay and it was never fixed. It is hard to get things fixed on eBay.ca Canada but it seems impossible to get anything fixed on PayPal shipping for Canada Post shipping issues.

  • Coldfusion 10. cfmenu not working. error is 'this.body.firstChild' is null or not an object

    I am using coldfusion 10. cfmenu not working. Error is 'this.body.firstChild' is null or not an object in menu-min.js file.
    Error in line oNode=this.body.firstChild.
    Any body faced same issue? What is the fix of this error.

    I have used the same code.
    <cfmenu name="menu" type="horizontal" fontsize="14" bgcolor="##CCFFFF">
        <cfmenuitem name="acrobat" href="http://www.adobe.com/acrobat" display="Acrobat"/>
        <cfmenuitem name="aftereffects" href="http://www.adobe.com/aftereffects"
            display="After Effects"/>
        <!--- The ColdFusion menu item has a pop-up menu. --->
        <cfmenuitem name="coldfusion"
                href="http://www.adobe.com/products/coldfusion" display="ColdFusion">
            <cfmenuitem name="buy"
                href="http://www.adobe.com/products/coldfusion/buy/" display="Buy"/>
            <cfmenuitem name="devcenter"
                href="http://www.adobe.com/devnet/coldfusion/" display="Developer Center"/>
            <cfmenuitem name="documentation"
                href="http://www.adobe.com/support/documentation/en/coldfusion/"
                    display="Documentation"/>
            <cfmenuitem name="support" href="http://www.adobe.com/support/coldfusion/"
                display="Support"/>
        </cfmenuitem>
        <cfmenuitem name="flex" href="http://www.adobe.com/flex" display="Flex"/>
    </cfmenu>

  • Coldfusion 8 debug ip restrictions not working

    Have been trying to limit ip's to local host, 127.0.0.1, but no luck.  Debug info is visible to all.  Inherited application that uses coldfusion so not very familiar with it but the debugging options seem very straightforward in the administrator but still the limiting of debug info to specific ip's is not working.  Windows 2003 R2 environment.  Any insight would be useful.  Thanks in advance.

    I'm not sure what you're asking, but each Service directive should be on its own line. It is an error to have both a <Client> tag and Service directive on a single line.

  • CSS not working in ColdFusion 8

    We just upgraded from ColdFusion MX7 to ColdFusion 8 and all of our CSS that worked in MX7 suddenly do not work in 8.  Does anyone have any ideas as to what might be happening?
    Thanks!

    Yep - the browsers view source shows all the CSS code as it should.  Here is what we're doing:
    CSS call in the head:
    <head>
    <link href="styles.css" rel="stylesheet" type="text/css">
    </head>
    CSS reference in the code:
    <table width="95%" border="0" cellpadding="2" bordercolor="navy" align="center" class="table_content">
    CSS code in styles.css:
    @media screen {
    body  {font-family: Arial, Helvetica, sans-serif;
       font-size: 12px;
       color: black;}
    .field_label  {font-family: Arial, Helvetica, sans-serif;
         font-size: 12px;
         color: #990000;}
    .header:link    {font-family: Verdana,Arial,Helvetica,sans-serif; color: #FFFFFF; text-decoration:none}
    .header:visited {font-family: Verdana,Arial,Helvetica,sans-serif; color: #FFFFFF; text-decoration:none}
    .header:hover   {font-family: Verdana,Arial,Helvetica,sans-serif; color: #0000FF; text-decoration:none}
    .header:active  {}
    .headerblack:link    {font-size: 12px; font-family: ArialNarrow,Helvetica,sans-serif; color: #000000; text-decoration:none}
    .headerblack:visited {font-size: 12px; font-family: ArialNarrow,Helvetica,sans-serif; color: #000000; text-decoration:none}
    .headerblack:hover   {font-size: 12px; font-family: ArialNarrow,Helvetica,sans-serif; color: #0000FF; text-decoration:none}
    .headerblack:active  {}
    li      {font-family: Arial, Helvetica, sans-serif;
       font-size: 12px;
       color: black;}
    .navigation {font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
         font-weight: bold;
         text-align: center;}
    p       {font-family: Arial, Helvetica, sans-serif;
       font-size: 12px;
       color: black;}
    .style2 {font-family: Arial, Helvetica, sans-serif;
       font-size: xx-small;
       color: black;}
    .table_content  {font-family: Arial, Helvetica, sans-serif;
         font-size: 12px;
         color: black;}
    .textbox   {font-family: Arial, Helvetica, sans-serif;
         font-size: 13px;
         color: black;}
    @media print {
    body  {font-family: Arial, Helvetica, sans-serif;
       font-size: 12px;
       color: black;}
    li      {font-family: Arial, Helvetica, sans-serif;
       font-size: 12px;
       color: black;}
    .navigation {display: none;}
    .noprint {display: none;}
    p       {font-family: Arial, Helvetica, sans-serif;
       font-size: 12px;
       color: black;}
    .style2 {font-family: Arial, Helvetica, sans-serif;
       font-size: xx-small;
       color: black;}
    .table_content  {font-family: Arial, Helvetica, sans-serif;
         font-size: 16px;
         color: black;}
    .textbox   {font-family: Arial, Helvetica, sans-serif;
         font-size: 13px;
         color: black;}
    It all seems pretty basic to me and it worked fine in MX7?

Maybe you are looking for

  • ESata express cards without hassle? Recommendations?

    I got two 1TB WD My Book Studio drives. Currently connected to MBP via 800 Firewire. The drives each have an esata port. Anybody here bought and successfully use an esata expresscard in MBP express card slot to connect the same or similar without the

  • Oracle reports Server Freezing

    Hi I'm sorry if this has been posted before but I have been looking for about 45 minutes and couldn't find exactl what I was looking for. I have three different reports servers(11.1.1.2.0) which all display the same symptoms if they are unused over t

  • IPad 1 won't Update to 5.1--3194

    I am trying to convince my neighbor of just how special the iPad is. He is not exactly a techie (-:  He couldn't send outgoing e-mail, but that was a simple problem of lack of outgoing mail server password. As I tried to update his 18 apps needing up

  • Conference calls technical issues

    Hi. I wonder if you can help me. My question and issue is perhaps better dealt with via phone, however, I can give it a shot here: I make group calls from my second account. We have a process whereby the host for the call rotates every week (on avera

  • Mobility group -without layer 3 roaming

    Hi all, With a N+1 WLC deployment, is it possible to disable layer 3 roaming while enabling Mobility group feature on the backup controller ? based on the network setup layer 3 mobility is not required.However,  we need to both controllers to exchang