Sounds like the tmeplates were opened, saved which will hose up an encrypted cf template
OR
You missed something in the install process. Refer to this link for install instructions:
http://www.gilgamesh-solutions.com/dynamicpdfmanual.cfm#4
Good luck
Here is the result of the above code:
something.cfc?WSDL
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://test.cfm" xmlns:impl="http://test.cfm" xmlns:intf="http://test.cfm" xmlns:apachesoap="http://xml.apache.org/xml-soap"...
bombboy...
Here is a sample of how to write a component (CFC)
Save as something.cfc and then call it from a browser as something.cfc?WSDL....a you'll see you soap doc. There is some good documentation avail on the web ...just search for coldfusion cfc
<cffunction access="remote"...
Could it be a case issue? If you're on unix case matters...so if the file is text2.txt, it will not find Text2.txt....on Windows it doesn't matter as for case
If you're using MX, then the axis soap engine is on your server. (diff ver based on service pack)
You can write your code in cfc's and call it in a browser with "?WSDL" as your query string and it will return the cfc as a web service wrapped in soap. CF does it all for you....you shouldn't have...
First you must set your cfapplication tag on application.cfm prefered. ex:
<cfapplication name="myapp" clientmanagement="Yes" sessionmanagement="Yes" setclientcookies="Yes">
Then;
List or string:
<cfset session.thisUser_id = get_user_types.user_id>
<!--- sets the value in session scope --->...
Certified Macromedia ColdFusion MX Developer Study Guide
by Ben Forta
$23.79@amazon:
http://www.amazon.com/exec/obidos/tg/detail/-/0321180585/qid=1089312254/sr=8-1/ref=sr_8_xs_ap_i1_xgl14/104-1034907-6779938?v=glance&s=books&n=507846
You can use twoselectsrelated.cfm by including if in you web root and reference it using cfmodule....like this:
<!--- first create your attributes collection --->
<cfset attrCollection1 = StructNew()>
<cfset attrCollection1.Name1="location">
<cfset attrCollection1.Name2="room">...
Hello,
Is the an obvious way to do this....cuz I'm banging my head on the wall here.
I have a XML doc that has a date-time value. I want to compare that date against now. If XML date is in the future, proceed to next frame kinda thing. What format does a date-time have to be in order to...
I solved it, hopefully will help someone else.
slides_xml = new XML();
slides_xml.onLoad = startSlideShow;
slides_xml.load("logo_scroller.xml");
slides_xml.ignoreWhite = true;
//
// Show the first slide and intialize variables
function startSlideShow(success) {
if (success == true)...
Hello all,
I have a basic image/link rotater. It loads from a XML file and images from a directory. What I'm trying to do is add a alpha tween to images as they are loaded. Here is my action script:
slides_xml = new XML();
slides_xml.onLoad = startSlideShow...
Hello all,
Here is my xml doc and desired output. I'm pretty new to using xslt and this has really stumped me. So any help is appreciated.
XML:
<VitalSignsComponent>
<patient_info>
<vitals>
<type>bp</type>
<date>04/14/2003</date>
<time>13:15:00</time>
<sys_value>157</sys_value>...
I'm using linux and for my image upload path I use:
<CFFILE ACTION="UPLOAD"
FILEFIELD="imageupload"
DESTINATION="/wwwroot/folder/images"
NAMECONFLICT="MAKEUNIQUE"
ACCEPT="image/jpeg, image/jpg, image/gif, image/pjpeg">
No drive letter...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.