Re: cfc and wsdl

2007-03-29 Thread Scott A Lingle
Well, I was about to say Did you ever have one of those days...etc till 
I looked through the CFC (again).  There was no mention of form anywhere 
(after all, this was a 5 line cfc at the time).  However, the cfc did 
include a file, which I thought was just my global declarations.  Turns 
out, this include also called cf_FormURL2Attributes which is what was 
causing the error to be thrown.  Took out the include and my CFC works 
fine now.

Thanks for all the help

Scott






James Holmes [EMAIL PROTECTED] 
03/28/07 09:13 PM
Please respond to
cf-talk@houseoffusion.com


To
CF-Talk cf-talk@houseoffusion.com
cc

Subject
Re: cfc and wsdl






I thought so. This is a different problem - there's an erro in your CFC:

Element FORM is undefined
in CALLER.

You are using a variable caller.form which is not defined.

On 3/28/07, Scott A Lingle [EMAIL PROTECTED] wrote:
 Sure.  It's:

 AXIS error
 Sorry, something seems to have gone wrong... here are the details:
 Fault - Error attempting to create Java skeleton for CFC web service;
 nested exception is:
  coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.runtime.UndefinedElementException : Element FORM is 
undefined
 in CALLER.]

 AxisFault
  faultCode:
 {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
  faultSubcode:
  faultString: Error attempting to create Java skeleton for CFC web
 service; nested exception is:
  coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.runtime.UndefinedElementException : Element FORM is 
undefined
 in CALLER.]
  faultActor:
  faultNode:
  faultDetail:
  {http://xml.apache.org/axis/}hostname:stc-isdev-01


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274074
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfc and wsdl

2007-03-28 Thread Scott Lingle
I have the exact same problem.  It seems that the mapping issue seems to clear 
most people's problems up, however, I have no mappings to / in CF Admin.  
Also, the method is set to remote. I'm trying to access the cfc through the 
browser (for now) at http://server/component.cfc?wsdl.  

There are 4 or five virtual servers on my IIS setup, all using host headers to 
sort each other out.  Does anyone have any ideas as to why this is happening.  
A google search wasn't very helpful (although I did find this)

This is starting to get frustrating.

Thanks
Scott

 Hello,
 
 I am playing with cfcs and what I am reading so far I should be able 
 to hit the cfc with ?wsdl on the end and get WSDL.  
 
 Here is my test cfc right out of the help files:
 cfcomponent
 cffunction name = echoString returnType = string output = no 
 access = remote
   cfargument name = input type = string
   cfreturn #arguments.input#
 /cffunction
 /cfcomponent
 
 
 I get the following:
 
 AXIS error
 Sorry, something seems to have gone wrong... here are the details:
 
 Fault - Error attempting to create Java skeleton for CFC web service; 
 nested exception is: 
   coldfusion.xml.rpc.CFCInvocationException: [coldfusion.xml.rpc.
 SkeletonClassLoader$UnresolvedCFCDataTypeException : Could not resolve 
 CFC datatype: /lib/cfc/utils.cfc]
 AxisFault
 
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.
 generalException
 
 faultSubcode: 
 
 faultString: Error attempting to create Java skeleton for CFC web 
 service; nested exception is: 
   coldfusion.xml.rpc.CFCInvocationException: [coldfusion.xml.rpc.
 SkeletonClassLoader$UnresolvedCFCDataTypeException : Could not resolve 
 CFC datatype: /lib/cfc/utils.cfc]
 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273959
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfc and wsdl

2007-03-28 Thread James Holmes
Try adding a mapping for your webservice anyway - it might at least
get things working for you.

On 3/28/07, Scott Lingle [EMAIL PROTECTED] wrote:
 I have the exact same problem.  It seems that the mapping issue seems to 
 clear most people's problems up, however, I have no mappings to / in CF 
 Admin.  Also, the method is set to remote. I'm trying to access the cfc 
 through the browser (for now) at http://server/component.cfc?wsdl.

 There are 4 or five virtual servers on my IIS setup, all using host headers 
 to sort each other out.  Does anyone have any ideas as to why this is 
 happening.  A google search wasn't very helpful (although I did find this)

-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273960
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfc and wsdl

2007-03-28 Thread Scott A Lingle
I did actually (since been removed).  the service is at 
http://server/appname/components/somecomponent.cfc.  I had a mapping in CF 
Administrator for /appname to appname's physical path.  Trying to get 
http://server/appname/components/somecomponent.cfc?wsdl with that setup 
yields the same result.

Scott





James Holmes [EMAIL PROTECTED] 
03/28/07 08:34 AM
Please respond to
cf-talk@houseoffusion.com


To
CF-Talk cf-talk@houseoffusion.com
cc

Subject
Re: cfc and wsdl






Try adding a mapping for your webservice anyway - it might at least
get things working for you.

On 3/28/07, Scott Lingle [EMAIL PROTECTED] wrote:
 I have the exact same problem.  It seems that the mapping issue seems to 
clear most people's problems up, however, I have no mappings to / in CF 
Admin.  Also, the method is set to remote. I'm trying to access the cfc 
through the browser (for now) at http://server/component.cfc?wsdl.

 There are 4 or five virtual servers on my IIS setup, all using host 
headers to sort each other out.  Does anyone have any ideas as to why this 
is happening.  A google search wasn't very helpful (although I did find 
this)

-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273961
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfc and wsdl

2007-03-28 Thread James Holmes
Can you post your error?

On 3/28/07, Scott A Lingle [EMAIL PROTECTED] wrote:
 I did actually (since been removed).  the service is at
 http://server/appname/components/somecomponent.cfc.  I had a mapping in CF
 Administrator for /appname to appname's physical path.  Trying to get
 http://server/appname/components/somecomponent.cfc?wsdl with that setup
 yields the same result.


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273980
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfc and wsdl

2007-03-28 Thread Scott A Lingle
Sure.  It's:

AXIS error
Sorry, something seems to have gone wrong... here are the details:
Fault - Error attempting to create Java skeleton for CFC web service; 
nested exception is: 
 coldfusion.xml.rpc.CFCInvocationException: 
[coldfusion.runtime.UndefinedElementException : Element FORM is undefined 
in CALLER.]

AxisFault
 faultCode: 
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString: Error attempting to create Java skeleton for CFC web 
service; nested exception is: 
 coldfusion.xml.rpc.CFCInvocationException: 
[coldfusion.runtime.UndefinedElementException : Element FORM is undefined 
in CALLER.]
 faultActor: 
 faultNode: 
 faultDetail: 
 {http://xml.apache.org/axis/}hostname:stc-isdev-01







James Holmes [EMAIL PROTECTED] 
03/28/07 10:56 AM
Please respond to
cf-talk@houseoffusion.com


To
CF-Talk cf-talk@houseoffusion.com
cc

Subject
Re: cfc and wsdl






Can you post your error?

On 3/28/07, Scott A Lingle [EMAIL PROTECTED] wrote:
 I did actually (since been removed).  the service is at
 http://server/appname/components/somecomponent.cfc.  I had a mapping in 
CF
 Administrator for /appname to appname's physical path.  Trying to get
 http://server/appname/components/somecomponent.cfc?wsdl with that setup
 yields the same result.


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273982
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfc and wsdl

2007-03-28 Thread James Holmes
I thought so. This is a different problem - there's an erro in your CFC:

Element FORM is undefined
in CALLER.

You are using a variable caller.form which is not defined.

On 3/28/07, Scott A Lingle [EMAIL PROTECTED] wrote:
 Sure.  It's:

 AXIS error
 Sorry, something seems to have gone wrong... here are the details:
 Fault - Error attempting to create Java skeleton for CFC web service;
 nested exception is:
  coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.runtime.UndefinedElementException : Element FORM is undefined
 in CALLER.]

 AxisFault
  faultCode:
 {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
  faultSubcode:
  faultString: Error attempting to create Java skeleton for CFC web
 service; nested exception is:
  coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.runtime.UndefinedElementException : Element FORM is undefined
 in CALLER.]
  faultActor:
  faultNode:
  faultDetail:
  {http://xml.apache.org/axis/}hostname:stc-isdev-01


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274049
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cfc and wsdl

2007-03-19 Thread Andy Matthews
Your CFC has to be set to remote. 

-Original Message-
From: Chad Gray [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 19, 2007 9:07 AM
To: CF-Talk
Subject: cfc and wsdl

Hello,

I am playing with cfcs and what I am reading so far I should be able to hit
the cfc with ?wsdl on the end and get WSDL.  

Here is my test cfc right out of the help files:
cfcomponent
cffunction name = echoString returnType = string output = no access =
remote
cfargument name = input type = string
cfreturn #arguments.input#
/cffunction
/cfcomponent


I get the following:

AXIS error
Sorry, something seems to have gone wrong... here are the details:

Fault - Error attempting to create Java skeleton for CFC web service; nested
exception is: 
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: /lib/cfc/utils.cfc] AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString: Error attempting to create Java skeleton for CFC web service;
nested exception is: 
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: /lib/cfc/utils.cfc]





~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272985
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cfc and wsdl

2007-03-19 Thread Chad Gray
It is set to remote.  I just copied the cfc to our production server and it 
works fine.  I get good WSDL.  

It has something to do with out development server.  They are the same server 
versions.



  

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 19, 2007 10:13 AM
To: CF-Talk
Subject: RE: cfc and wsdl

Your CFC has to be set to remote. 

-Original Message-
From: Chad Gray [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 19, 2007 9:07 AM
To: CF-Talk
Subject: cfc and wsdl

Hello,

I am playing with cfcs and what I am reading so far I should be able to hit
the cfc with ?wsdl on the end and get WSDL.  

Here is my test cfc right out of the help files:
cfcomponent
cffunction name = echoString returnType = string output = no access =
remote
cfargument name = input type = string
cfreturn #arguments.input#
/cffunction
/cfcomponent


I get the following:

AXIS error
Sorry, something seems to have gone wrong... here are the details:

Fault - Error attempting to create Java skeleton for CFC web service; nested
exception is: 
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: /lib/cfc/utils.cfc] AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString: Error attempting to create Java skeleton for CFC web service;
nested exception is: 
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: /lib/cfc/utils.cfc]







~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272986
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfc and wsdl

2007-03-19 Thread James Holmes
Check to see if either server has a root mapping (i.e. / is mapped to
something) and if there are any other differences between the mappings
on the boxes.

On 3/19/07, Chad Gray [EMAIL PROTECTED] wrote:
 It is set to remote.  I just copied the cfc to our production server and it 
 works fine.  I get good WSDL.

 It has something to do with out development server.  They are the same server 
 versions.





 -Original Message-
 From: Andy Matthews [mailto:[EMAIL PROTECTED]
 Sent: Monday, March 19, 2007 10:13 AM
 To: CF-Talk
 Subject: RE: cfc and wsdl

 Your CFC has to be set to remote.

 -Original Message-
 From: Chad Gray [mailto:[EMAIL PROTECTED]
 Sent: Monday, March 19, 2007 9:07 AM
 To: CF-Talk
 Subject: cfc and wsdl

 Hello,

 I am playing with cfcs and what I am reading so far I should be able to hit
 the cfc with ?wsdl on the end and get WSDL.

 Here is my test cfc right out of the help files:
 cfcomponent
 cffunction name = echoString returnType = string output = no access =
 remote
 cfargument name = input type = string
 cfreturn #arguments.input#
 /cffunction
 /cfcomponent


 I get the following:

 AXIS error
 Sorry, something seems to have gone wrong... here are the details:

 Fault - Error attempting to create Java skeleton for CFC web service; nested
 exception is:
 coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
 Could not resolve CFC datatype: /lib/cfc/utils.cfc] AxisFault
  faultCode:
 {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
  faultSubcode:
  faultString: Error attempting to create Java skeleton for CFC web service;
 nested exception is:
 coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
 Could not resolve CFC datatype: /lib/cfc/utils.cfc]







 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272987
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfc and wsdl

2007-03-19 Thread Chad Gray
Oh... yes the development server has this mapping:

/   C:\CFusionMX7\wwwroot

The production server does not have this mapping.

Should I remove this mapping?  One of the other developers must have made it 
and I will need to find out why.



-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 19, 2007 10:36 AM
To: CF-Talk
Subject: Re: cfc and wsdl

Check to see if either server has a root mapping (i.e. / is mapped to
something) and if there are any other differences between the mappings
on the boxes.

On 3/19/07, Chad Gray [EMAIL PROTECTED] wrote:
 It is set to remote.  I just copied the cfc to our production server and it 
 works fine.  I get good WSDL.

 It has something to do with out development server.  They are the same server 
 versions.





 -Original Message-
 From: Andy Matthews [mailto:[EMAIL PROTECTED]
 Sent: Monday, March 19, 2007 10:13 AM
 To: CF-Talk
 Subject: RE: cfc and wsdl

 Your CFC has to be set to remote.

 -Original Message-
 From: Chad Gray [mailto:[EMAIL PROTECTED]
 Sent: Monday, March 19, 2007 9:07 AM
 To: CF-Talk
 Subject: cfc and wsdl

 Hello,

 I am playing with cfcs and what I am reading so far I should be able to hit
 the cfc with ?wsdl on the end and get WSDL.

 Here is my test cfc right out of the help files:
 cfcomponent
 cffunction name = echoString returnType = string output = no access =
 remote
 cfargument name = input type = string
 cfreturn #arguments.input#
 /cffunction
 /cfcomponent


 I get the following:

 AXIS error
 Sorry, something seems to have gone wrong... here are the details:

 Fault - Error attempting to create Java skeleton for CFC web service; nested
 exception is:
 coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
 Could not resolve CFC datatype: /lib/cfc/utils.cfc] AxisFault
  faultCode:
 {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
  faultSubcode:
  faultString: Error attempting to create Java skeleton for CFC web service;
 nested exception is:
 coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
 Could not resolve CFC datatype: /lib/cfc/utils.cfc]







 



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272989
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfc and wsdl

2007-03-19 Thread Robertson-Ravo, Neil (RX)
Note: You don't need to # the arguments.input.






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Chad Gray
To: CF-Talk
Sent: Mon Mar 19 14:07:24 2007
Subject: cfc and wsdl

Hello,

I am playing with cfcs and what I am reading so far I should be able to hit
the cfc with ?wsdl on the end and get WSDL.  

Here is my test cfc right out of the help files:
cfcomponent
cffunction name = echoString returnType = string output = no access =
remote
cfargument name = input type = string
cfreturn #arguments.input#
/cffunction
/cfcomponent


I get the following:

AXIS error
Sorry, something seems to have gone wrong... here are the details:

Fault - Error attempting to create Java skeleton for CFC web service; nested
exception is: 
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: /lib/cfc/utils.cfc]
AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString: Error attempting to create Java skeleton for CFC web service;
nested exception is: 
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: /lib/cfc/utils.cfc]





~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273009
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cfc and wsdl

2007-03-19 Thread Andrew Scott
Note: The mapping is a default setting by CF when installing.

Also you are not telling us how you're trying to connect to the webservice
either, or connecting to the function via a URL. There is a difference.


Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273




~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273052
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfc and wsdl

2007-03-19 Thread James Holmes
Check if it's being used by anyone else before removing it. If you
can't remove it, you can create a mapping for your webservice so that
the mapping path matches the request path.

e.g. if I want somesite.com/somefolder/myWS.cfc?wsdl I'd map the
physical folder to /somefolder/.

Getting rid of the root mapping is easier.

On 3/19/07, Chad Gray [EMAIL PROTECTED] wrote:
 Oh... yes the development server has this mapping:

 /   C:\CFusionMX7\wwwroot

 The production server does not have this mapping.

 Should I remove this mapping?  One of the other developers must have made it 
 and I will need to find out why.



 -Original Message-
 From: James Holmes [mailto:[EMAIL PROTECTED]
 Sent: Monday, March 19, 2007 10:36 AM
 To: CF-Talk
 Subject: Re: cfc and wsdl

 Check to see if either server has a root mapping (i.e. / is mapped to
 something) and if there are any other differences between the mappings
 on the boxes.

 On 3/19/07, Chad Gray [EMAIL PROTECTED] wrote:
  It is set to remote.  I just copied the cfc to our production server and it 
  works fine.  I get good WSDL.
 
  It has something to do with out development server.  They are the same 
  server versions.
 
 
 
 
 
  -Original Message-
  From: Andy Matthews [mailto:[EMAIL PROTECTED]
  Sent: Monday, March 19, 2007 10:13 AM
  To: CF-Talk
  Subject: RE: cfc and wsdl
 
  Your CFC has to be set to remote.
 
  -Original Message-
  From: Chad Gray [mailto:[EMAIL PROTECTED]
  Sent: Monday, March 19, 2007 9:07 AM
  To: CF-Talk
  Subject: cfc and wsdl
 
  Hello,
 
  I am playing with cfcs and what I am reading so far I should be able to hit
  the cfc with ?wsdl on the end and get WSDL.
 
  Here is my test cfc right out of the help files:
  cfcomponent
  cffunction name = echoString returnType = string output = no access =
  remote
  cfargument name = input type = string
  cfreturn #arguments.input#
  /cffunction
  /cfcomponent
 
 
  I get the following:
 
  AXIS error
  Sorry, something seems to have gone wrong... here are the details:
 
  Fault - Error attempting to create Java skeleton for CFC web service; nested
  exception is:
  coldfusion.xml.rpc.CFCInvocationException:
  [coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
  Could not resolve CFC datatype: /lib/cfc/utils.cfc] AxisFault
   faultCode:
  {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
   faultSubcode:
   faultString: Error attempting to create Java skeleton for CFC web service;
  nested exception is:
  coldfusion.xml.rpc.CFCInvocationException:
  [coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
  Could not resolve CFC datatype: /lib/cfc/utils.cfc]
 
 
 
 
 
 
 
 



 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273059
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4