RE: Vista on a Macintel

2006-11-17 Thread Andrew Stevens
It is running :)

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Friday, 17 November 2006 7:52 PM
To: CF-Talk
Subject: OT: Vista on a Macintel

I am thinking about getting a Macintel next year as a replacement for my
home machine - it will primarily be running Windows. Does anyone know if
Vista will run on it in it's full GUI guise?

Cheers

N




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



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


RE: WSDL Problem

2006-07-25 Thread Andrew Stevens
Can you post the full error?

WebServices work just fine on the Developer version. It's the 'DevNet'
license that does what Claude described.

Cheers.

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 25 July 2006 12:03 PM
To: CF-Talk
Subject: Re: WSDL Problem

 Does anyone have any ideas what the problem might be?

Check if the server has a full license. If it is only a developer 
version, it will
add some garbage in the headers that will break the XML.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:247582
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: WSDL Complex Types and Coldfusion

2006-07-25 Thread Andrew Stevens
I'd try if I wasn't going out :|

It looks like you're dealing with ebXML Web Services. www.ebxml.org. I'd
Google around to see if anyone else has done it already.

Also dump the web service to see the methods, ala;

cfset ws = createobject(webservice,
http://webservices.sabre.com/wsdl_cat/sabreXML1.0.00/usg/SessionCreateRQ.wsd
l
cfdump var=#ws#

If you don't see the method you are calling listed in the dump, then you may
not be able to call it using cfinvoke.

Cheers.

-Original Message-
From: Daniel Dabner [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 25 July 2006 7:30 PM
To: CF-Talk
Subject: WSDL Complex Types and Coldfusion

Hi,
 
I'm having problems trying to consume a web service in Coldfusion.  The WSDL
document is quite complicated with several import files so I'm never sure if
I'm sending the right structures as the variables in my cfinvoke.  I keep
getting the Web service operation ... could not be found message. Can
anyone see what I'm doing wrong?  Any help will be much appreciated.
 
(Please excuse my test data, I'm trying to get the structure right before I
worry about what values I send!)
 
WSDL: HYPERLINK
http://webservices.sabre.com/wsdl_cat/sabreXML1.0.00/usg/SessionCreateRQ.ws
dlhttp://webservices.sabre.com/wsdl_cat/sabreXML1.0.00/usg/SessionCreateRQ.
wsdl
 
My Code:
 
cfset stc_Security = StructNew()
cfset x = StructInsert(stc_Security, UsernameToken, StructNew())
cfset x = StructInsert(stc_Security.UsernameToken, Username, test)
cfset x = StructInsert(stc_Security.UsernameToken, Password, test)
cfset x = StructInsert(stc_Security.UsernameToken, Organization, test)
cfset x = StructInsert(stc_Security.UsernameToken, Domain, test)
 
cfset stc_MessageHeader = StructNew()
cfset x = StructInsert(stc_MessageHeader, From, StructNew())
cfset x = StructInsert(stc_MessageHeader.From, PartyId, ArrayNew(1))
cfset stc_MessageHeader.From.PartyId[1] = StructNew()
cfset x = StructInsert(stc_MessageHeader.From.PartyId[1], value, test)
cfset x = StructInsert(stc_MessageHeader.From.PartyId[1], type, test)
cfset x = StructInsert(stc_MessageHeader, To, StructNew())
cfset x = StructInsert(stc_MessageHeader.To, PartyId, ArrayNew(1))
cfset stc_MessageHeader.To.PartyId[1] = StructNew()
cfset x = StructInsert(stc_MessageHeader.To.PartyId[1], value, test)
cfset x = StructInsert(stc_MessageHeader.To.PartyId[1], type, test)
cfset x = StructInsert(stc_MessageHeader, CPAId, test)
cfset x = StructInsert(stc_MessageHeader, ConversationId, test)
cfset x = StructInsert(stc_MessageHeader, Service, StructNew())
cfset x = StructInsert(stc_MessageHeader.Service, type, test)
cfset x = StructInsert(stc_MessageHeader.Service, value, test)
cfset x = StructInsert(stc_MessageHeader, Action, test)
cfset x = StructInsert(stc_MessageHeader, MessageData, StructNew())
cfset x = StructInsert(stc_MessageHeader.MessageData, MessageId, test)
cfset x = StructInsert(stc_MessageHeader.MessageData, Timestamp, test)
cfset x = StructInsert(stc_MessageHeader, version, test)
 
cfset stc_Body = StructNew()
cfset x = StructInsert(stc_Body, POS, StructNew())
cfset x = StructInsert(stc_Body.POS, Source, StructNew())
cfset x = StructInsert(stc_Body.POS.Source, PseudoCityCode, test)

cfinvoke  webservice=HYPERLINK
http://webservices.sabre.com/wsdl_cat/sabreXML1.0.00/usg/SessionCreateRQ.ws
dlhttp://webservices.sabre.com/wsdl_cat/sabreXML1.0.00/usg/SessionCreateRQ.
wsdl
   method=SessionCreateRQ
   returnvariable=str_Return
   timeout=10
   cfinvokeargument name=header value=#stc_MessageHeader#
   cfinvokeargument name=header2 value=#stc_Security#
   cfinvokeargument name=body value=#stc_Body#
/cfinvoke

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.4/396 - Release Date: 24/07/2006
 




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:247592
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: 7.0.2 Updater - tighter WSDL validation?

2006-07-07 Thread Andrew Stevens
Ooh, this thread still going?

Mike: I neglected to mention you need to remove all the MESSAGE attributes
from the INPUT and OUTPUT nodes under all /definitions/binding/operation. I
reckon it will work for you.

Tom: I found restoring the previous axis.jar didn't help.

Also, if it helps to understand the issue, this problem existed in CF on
Tomcat for versions prior to 7.0.2. See:
http://www.houseoffusion.com/cf_lists/messages.cfm/forumid:10/threadid:1414

Cheers,
AS

-Original Message-
From: Michael Givens [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 8 July 2006 12:45 PM
To: CF-Talk
Subject: Re: 7.0.2 Updater - tighter WSDL validation?

Hi Tom. Thanks for your reply. The WSDL is browse-able with IE and
FireFox, so at least it's well-formed. Of note: it's the same WSDL that runs
fine under CFMX 7.0.1 hotfix 2. In fact we rolled our affected server back
to 7.0.1 yesterday and the web service's WSDL is working again. Here's the
WSDL:

http://www.thomcoins.com/mod_wsCISAIM/wsdl/ICISAIM_WS

I have another development server that I can upgrade to 7.0.2 and try the
restoring the axis.jar from the updater backup directory later rhis
weekend. I'll let you know how that works for us as a work-round.

Thanks again for your time,

Mike

  I ran into the same issue with one of our web services after 
 upgrading 
  to the 7.0.2 Updater. 
  
  Could not generate stub objects for web service invocation.
  Name: http://: http://. WSDLException (at
  /definitions/binding/operation[1]/input): faultCode=INVALID_WSDL:
  Encountered illegal extension attribute 'message'. Extension 
  attributes must
  be in a namespace other than WSDL's
 
 We are really interested in the reproducable case for this problem.  
 There was only a single change made to the axis.jar for CF 7.0.2, 
 which realted to XML Schema generation using SOAP Encoded types 
 instead of XML Schema types.  This should not affect ColdFusion's 
 ability to consume a web service.  Out of curiousity, does the WSDL 
 actually have the error in it that is claimed (i.e. is the WSDL badly 
 formed)?
 
 As a work around, you can restore the axis.jar from the updater backup 
 directory (stop CF, move jar aside, restore backup copy, restart CF).
 
 Sorry for the trouble, we are trying to get to the bottom of this ASAP.
 
 
 --
 Tom Jordahl
 Adobe CF 
Team



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:245780
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: 7.0.2 Updater - tighter WSDL validation?

2006-07-01 Thread Andrew Stevens
Um, I was referring to the WSDL of a webservice... no CFC here :) The
webservice wasn't built in CF either.

I couldn't consume the webservice using CFMX7.0.2, so we saved the WSDL to
file and changed some of the tags as necessary.

Cool?

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 1 July 2006 5:46 AM
To: CF-Talk
Subject: Re: 7.0.2 Updater - tighter WSDL validation?

Andrew,

I'm not familiar with INPUT tags being part of the CFC set of tags...can you

enlighten me?

TIA

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245198
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 7.0.2 Updater - tighter WSDL validation?

2006-06-30 Thread Andrew Stevens
Yep, that's what we ended up doing.
The static wsdl ain't so great, but I guess it will have to do in the short
term.

For reference, we had to remove the message attributes so input
message=xxx:xxx became input.

It's a change in behavior from 7.0.1, so it could come up again :|

Cheers.

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Friday, 30 June 2006 1:59 PM
To: CF-Talk
Subject: Re: 7.0.2 Updater - tighter WSDL validation?

You could try saving the WSDL locally and editing it yourself to
correct the problem.

On 6/30/06, Andrew Stevens [EMAIL PROTECTED] wrote:
 Hi I've just upgraded some servers to 7.0.2.

 We have a web service that previously worked fine. Now the WSDL is no
longer acceptable/valid;

 Name: http://*/. WSDL: http://. WSDLException (at
/definitions/binding/operation[1]/input): faultCode=INVALID_WSDL:
Encountered illegal extension attribute 'message'. Extension attributes must
be in a namespace other than WSDL's.: It is recommended that you use a web
browser to retrieve and examine the requested WSDL document for correctness.
If the requested WSDL document can't be retrieved or it is dynamically
generated, it is likely that the target web service has programming errors.

 Does anyone hav any advice on making 7.0.2 validate WSDL the same way as
7.0.1?

 I had really hoped to run 7.0.2 but this is a show stopper for us. The
webservice is a third party product I have no control over :(

 Any advice is appreciated.

 Thanks.

 (ps: this always occured on Tomcat, so I'm guessing it's the JVM upgrade
or Jrun changes that have done it?)

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245112
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


7.0.2 Updater - tighter WSDL validation?

2006-06-29 Thread Andrew Stevens
Hi I've just upgraded some servers to 7.0.2.

We have a web service that previously worked fine. Now the WSDL is no longer 
acceptable/valid;

Name: http://*/. WSDL: http://. WSDLException (at 
/definitions/binding/operation[1]/input): faultCode=INVALID_WSDL: Encountered 
illegal extension attribute 'message'. Extension attributes must be in a 
namespace other than WSDL's.: It is recommended that you use a web browser to 
retrieve and examine the requested WSDL document for correctness. If the 
requested WSDL document can't be retrieved or it is dynamically generated, it 
is likely that the target web service has programming errors.

Does anyone hav any advice on making 7.0.2 validate WSDL the same way as 7.0.1?

I had really hoped to run 7.0.2 but this is a show stopper for us. The 
webservice is a third party product I have no control over :(

Any advice is appreciated.

Thanks.

(ps: this always occured on Tomcat, so I'm guessing it's the JVM upgrade or 
Jrun changes that have done it?)

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245103
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfthrow from onRequestStart / flashagteway

2006-06-27 Thread Andrew Stevens
Thanks for that. I had hoped I could throw the exception back to Flash like
it can be done from methods in other components :(

I'm trying to make use of onError but I'm not sure it fits. How does this
sound: I implemented onError, which now fires when I cfthrow from inside
onRequestStart. 
In onError I can't detect anything about the error I threw because the error
caught is the same Event Handler Exception.

I can cfthrow from onError which will return an error to the Flash client,
but I want to be able to throw specific errors like 'not logged in' (which
is enforced in onRequestStart).

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 27 June 2006 2:22 AM
To: CF-Talk
Subject: Re: cfthrow from onRequestStart / flashagteway 

A CFThrow tosses an error up to the parent of a template. An application.cfc
in some ways acts as the parent of the template but if you do a CFThrow
inside of it when using a gateway, there's nowhere for the error to go other
than the global error handler. Better to call the onError method within the
application.cfc than use a CFThrow. 

Hi would anyone know why I can’t use CFTHROW from within Application CFC
onRequestStart()?

 

I am calling a CFC from Flash via the flashgateway.

 

If I cfthrow I get “06/26 23:07:37 Error [jrpp-3] - Event Handler
Exception.” in Coldfusion.

 

I’m stumped.

 

Thanks.

 

 


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.9.4/375 - Release Date: 25/06/2006



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244852
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


cfthrow from onRequestStart / flashagteway

2006-06-26 Thread Andrew Stevens
Hi would anyone know why I can’t use CFTHROW from within Application CFC
onRequestStart()?

 

I am calling a CFC from Flash via the flashgateway.

 

If I cfthrow I get “06/26 23:07:37 Error [jrpp-3] - Event Handler
Exception.” in Coldfusion.

 

I’m stumped.

 

Thanks.

 

 


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.9.4/375 - Release Date: 25/06/2006
 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244774
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Coldfusion with Godaddy

2006-05-06 Thread Andrew Stevens
I'm late to this topic. I have been tooling about with GoDaddy CF hosting. I
agree it's pretty crap and can't be taken seriously.

But, it can work and it's cheap and so am I... for now, it does the job.

Sorry if this came up already;

Sean's entry on GoDaddy:
http://corfield.org/blog/index.cfm/do/blog.entry/entry/GoDaddy_and_ColdFusio
n_MX_7

For me GoDaddy was completely blocking createObject(). My 2c: A
createCompoent method would be nice, to separate CFCs from Java (for the
purpose of security sandboxes). See:
http://ray.camdenfamily.com/index.cfm/2006/4/5/Ask-a-Jedi-cfinvoke-versus-cr
eateObject#c6EB62D22-B44A-0DCA-478A82BEDB0824AF

I pretty much did the same as Lincoln to run BlogCFC, changing the cfcs
cfinvoke/init.

Snake mentioned Sandbox security. that's definitely turned on I reckon. I
only have access to my own files. The file system security is too narrow.
For example, you can't access the temp folder location... which can be used
internally to some CF tags.

Also CFDUMP can break if you are dumping objects that need reflection to be
displayed.

IMO GoDaddy is a bit of fun, but really it can't be trusted. You never know
when you're going to hit a limitation that can't be worked around.

Cheers.

-Original Message-
From: Jim Wright [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 7 May 2006 8:14 AM
To: CF-Talk
Subject: Re: Coldfusion with Godaddy

On 5/6/06, Adrian Lynch [EMAIL PROTECTED] wrote:
 Which probably means they have a list of default pages with index.htm
higher
 than .cfm.


They have a list of default documents (which does not list any .cfm ones)...
http://help.godaddy.com/article.php?article_id=61topic_id=;
My guess is someone had previously complained on the server this
account was put on, so I just happened to have one where it was in the
list (probably after all the other ones).


--
Jim Wright
Wright Business Solutions
[EMAIL PROTECTED]
919-417-2257



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239773
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Where does the sessionID come from?

2006-04-29 Thread Andrew Stevens
My understanding is that application and session are separate.

Ie: you can set a 5 minute application timeout and a 30 minute session
timeout.

I think what you're seeing is the correct behavior.

Side note: you can restart Jrun/CF and the sessions will be recovered
(depending on you're setup). I don't think the application(s) are
recovered(?)

Cheers,
AS

-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 30 April 2006 12:12 PM
To: CF-Talk
Subject: Where does the sessionID come from?

Where does the session ID come from?

I've noticed lately as I'm working on my Application.cfc, that when I
dump session and application variables,  I can have a new application
start,  but the sessionID is the same.

I thought the sessionid was always a unique value, and when the
application restarted, all sessions were lost, and therefore a new
session would have a new sessionid.   Yet here i have a new
application, but the same sesionid as the previous one.

HUH?

--
Cheers
Mike Kear
Windsor, NSW, Australia
Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239123
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Java.net.connectexception

2006-04-02 Thread Andrew Stevens
That KB article might not relate to your problem... can you post the error
stack trace?

As for jvm.config, just remove what you added, if you can.

-Original Message-
From: Webdevotion [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 2 April 2006 4:27 AM
To: CF-Talk
Subject: Java.net.connectexception

Hello,

I ran into a java.net.connectexception when trying to start
a flex-message gateway (for the session tracker example).

I tried to fix it using this technote, but I did something wrong.
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19185

Can someone please do a search on jvm.config and jndi.properties on his
CFMX 7 folder (with mystic update) and mail it to me ?

Does anyone know why this error occured ?

Thanks !





Excerpt



To avoid this problem, edit either the *jvm.config* or
*jndi.properties*files of the JRun server to bind the RMI service to
the external IP address.
The following examples demonstrate the work-arounds:

   1. *jvm.config*
   2.

   java.args=-Djava.rmi.server.hostname=[server name or IP address]
   3. *jndi.properties*
   4.

   Add the following property to jndi.properties:

   java.rmi.server.hostname=[server ip address
   5.

   




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236784
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: GoDaddy MySQL... does it work?

2006-03-23 Thread Andrew Stevens
Jim, I'll try out upload and let you know what I see.

I'm still a bit confused on the DSNs.

The GoDaddy control panel thingy lets me create a database and then I have a
couple of check boxes to optionally create a DSN and a CF DSN. I choose both
and also choose to create a username and password. I've also tried a few
other combinations.

Would you mind trying something, if you run a cfquery using the minimal
attributes does it still work? For example:

cfquery name=validuser datasource=#Request.dbsource#
Whatever
/cfquery

I'm really really miffed that GoDaddy can't even tell me what is required to
hook up to a DSN. They don't have a clue. 

Cheers.

-Original Message-
From: Jim Wright [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 23 March 2006 6:25 AM
To: CF-Talk
Subject: Re: GoDaddy  MySQL... does it work?

this is the start to a query that works...note that while I have the
user and password variables shown, I inadvertantly created this DSN
with the user/pass included.  The request variables for those are just
assigned empty strings.

cfquery name=validuser datasource=#Request.dbsource#
dbtype=ODBC username=#Request.dbuser# password=#Request.dbpass#

Interesting that cffile works for you.  Have you done an upload?


On 3/22/06, Andrew Stevens [EMAIL PROTECTED] wrote:
 I'm happy to report cffile is working, ahh the irony.

 Jim, would you mind posting an example of your cfquery syntax? I've tried
 both dsn types (plus anything else that looks like a dsn).

 Cheers.

 -Original Message-
 From: Jim Wright [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 22 March 2006 1:25 AM
 To: CF-Talk
 Subject: Re: GoDaddy  MySQL... does it work?

 Not related to the DSN issue, but one of my clients had a small throw
 away site that we decided to host at godaddy as a trial...I found out
 that they don't support cffile, which handicapped the app a bit.
 Cffile is not listed in their list of disabled tags (or wasn't at that
 time, I haven't looked again lately).

 on the DSN issue...I have a MySQL DSN working fine there.  In there
 management interface, they allow you to create a DSN or a ColdFusion
 DSN...is it possible that you created the latter?

 On 3/21/06, Andrew Stevens [EMAIL PROTECTED] wrote:
  I'm embarrassed to ask this. Has anyone used the MX7 hosting at GoDaddy?
  (Well, I wanted to see how shit it really was.)
 
 
 
  I can't for the life of me get a MySQL DSN to work. Has anyone done it?
  Despite hours of tooling around, all I get is Data source
mysqlcf_MrBuzzy
  could not be found. I can also cause a null pointer and a sql/sandbox
  access denied message. This all depends on the different attributes I
use
 in
  cfquery.
 
 
 
  A little help would be great.
 
 
 
  Cheers,
 
  AS
 
 
 
  Ps: yes I've tried godaddy support.
 
  Pps: yes, I should go do a better hosting company.
 
 
 
 
 
 



 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236112
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: GoDaddy MySQL... does it work?

2006-03-22 Thread Andrew Stevens
I'm happy to report cffile is working, ahh the irony.

Jim, would you mind posting an example of your cfquery syntax? I've tried
both dsn types (plus anything else that looks like a dsn).

Cheers.

-Original Message-
From: Jim Wright [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 22 March 2006 1:25 AM
To: CF-Talk
Subject: Re: GoDaddy  MySQL... does it work?

Not related to the DSN issue, but one of my clients had a small throw
away site that we decided to host at godaddy as a trial...I found out
that they don't support cffile, which handicapped the app a bit. 
Cffile is not listed in their list of disabled tags (or wasn't at that
time, I haven't looked again lately).

on the DSN issue...I have a MySQL DSN working fine there.  In there
management interface, they allow you to create a DSN or a ColdFusion
DSN...is it possible that you created the latter?

On 3/21/06, Andrew Stevens [EMAIL PROTECTED] wrote:
 I'm embarrassed to ask this. Has anyone used the MX7 hosting at GoDaddy?
 (Well, I wanted to see how shit it really was.)



 I can't for the life of me get a MySQL DSN to work. Has anyone done it?
 Despite hours of tooling around, all I get is Data source mysqlcf_MrBuzzy
 could not be found. I can also cause a null pointer and a sql/sandbox
 access denied message. This all depends on the different attributes I use
in
 cfquery.



 A little help would be great.



 Cheers,

 AS



 Ps: yes I've tried godaddy support.

 Pps: yes, I should go do a better hosting company.





 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235938
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


GoDaddy MySQL... does it work?

2006-03-21 Thread Andrew Stevens
I'm embarrassed to ask this. Has anyone used the MX7 hosting at GoDaddy?
(Well, I wanted to see how shit it really was.)

 

I can't for the life of me get a MySQL DSN to work. Has anyone done it?
Despite hours of tooling around, all I get is Data source mysqlcf_MrBuzzy
could not be found. I can also cause a null pointer and a sql/sandbox
access denied message. This all depends on the different attributes I use in
cfquery.

 

A little help would be great.

 

Cheers,

AS

 

Ps: yes I've tried godaddy support.

Pps: yes, I should go do a better hosting company.

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235846
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: GoDaddy MySQL... does it work?

2006-03-21 Thread Andrew Stevens
Okay I'll check that out, thank you.
I don't normally use Sandbox, but I'm pretty sure that's what this is.

Cheers.

-Original Message-
From: Coldfusion [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 21 March 2006 9:43 PM
To: CF-Talk
Subject: RE: GoDaddy  MySQL... does it work?

I do not have GoDaddy for hosting but with Sandbox security,
I would validate that the datasource name is the exact same
CASE as you are using.

 

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 21, 2006 3:44 AM
To: CF-Talk
Subject: GoDaddy  MySQL... does it work?

I'm embarrassed to ask this. Has anyone used the MX7 hosting at GoDaddy?
(Well, I wanted to see how shit it really was.)

 

I can't for the life of me get a MySQL DSN to work. Has anyone done it?
Despite hours of tooling around, all I get is Data source mysqlcf_MrBuzzy
could not be found. I can also cause a null pointer and a sql/sandbox
access denied message. This all depends on the different attributes I use in
cfquery.

 

A little help would be great.

 

Cheers,

AS

 

Ps: yes I've tried godaddy support.

Pps: yes, I should go do a better hosting company.

 







~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235850
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: GoDaddy MySQL... does it work?

2006-03-21 Thread Andrew Stevens
Okay, the case seems correct. Well, it matches how it's shown in the control
panel.

-Original Message-
From: Coldfusion [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 21 March 2006 9:43 PM
To: CF-Talk
Subject: RE: GoDaddy  MySQL... does it work?

I do not have GoDaddy for hosting but with Sandbox security,
I would validate that the datasource name is the exact same
CASE as you are using.

 

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 21, 2006 3:44 AM
To: CF-Talk
Subject: GoDaddy  MySQL... does it work?

I'm embarrassed to ask this. Has anyone used the MX7 hosting at GoDaddy?
(Well, I wanted to see how shit it really was.)

 

I can't for the life of me get a MySQL DSN to work. Has anyone done it?
Despite hours of tooling around, all I get is Data source mysqlcf_MrBuzzy
could not be found. I can also cause a null pointer and a sql/sandbox
access denied message. This all depends on the different attributes I use in
cfquery.

 

A little help would be great.

 

Cheers,

AS

 

Ps: yes I've tried godaddy support.

Pps: yes, I should go do a better hosting company.

 







~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235851
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Soap and namespaces A bit deeper

2006-03-17 Thread Andrew Stevens
I'm not sure what you want to achieve, you want to get some data out of the
soap header, right? 

Can you post the code showing when you substitute the first argument to
whatever?

I think you could get the soap header by accessing the ws object in your
example as xml or struct too.

Does this work;

getSoapResponseHeader(ws,'
urn:messages_1_2.platform.webservices.netsuite.com ','returnHeader');

Cheers.

-Original Message-
From: jonese [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 15 March 2006 9:16 AM
To: CF-Talk
Subject: Re: Soap and namespaces A bit deeper

Ok if i run the code as is below i get 12 empty array messages.

if i substitute the first argument of the getSoapResponseHeader
function with whatever i get  the following error:

 Error casting an object of type
com.netsuite.webservices.platform.messages_1_2.SessionResponse to an
incompatible type. This usually indicates a programming error in Java,
although it could also mean you have tried to use a foreign object in
a different way than it was designed.
com.netsuite.webservices.platform.messages_1_2.SessionResponse

Thoughts??
jonese

-start code--

cfscript
ws = CreateObject('webservice','NetSuite');
whatever = ws.login(passport);
loginHeader1 = getSoapResponseHeader(ws,
'https://messages_1_2.platform.webservices.netsuite.com',
'returnHeader');
loginHeader2 = getSoapResponseHeader(ws,
'http://messages_1_2.platform.webservices.netsuite.com',
'returnHeader');
loginHeader3 = getSoapResponseHeader(ws,
'https://platform.webservices.netsuite.com', 'returnHeader');
loginHeader4 = getSoapResponseHeader(ws,
'http://platform.webservices.netsuite.com', 'returnHeader');
loginHeader5 = getSoapResponseHeader(ws,
'https://webservices.netsuite.com', 'returnHeader');
loginHeader6 = getSoapResponseHeader(ws,
'http://webservices.netsuite.com', 'returnHeader');
loginHeader7 = getSoapResponseHeader(ws, 'https://netsuite.com',
'returnHeader');
loginHeader8 = getSoapResponseHeader(ws, 'http://netsuite.com',
'returnHeader');
loginHeader9 = getSoapResponseHeader(ws,
'messages_1_2.platform.webservices.netsuite.com', 'returnHeader');
loginHeader10 = getSoapResponseHeader(ws,
'platform.webservices.netsuite.com', 'returnHeader');
loginHeader11 = getSoapResponseHeader(ws, 'webservices.netsuite.com',
'returnHeader');
loginHeader12 = getSoapResponseHeader(ws, 'netsuite.com', 'returnHeader');
/cfscript

cfdump var=#loginHeader1# label=loginHeader1
cfdump var=#loginHeader2# label=loginHeader2
cfdump var=#loginHeader3# label=loginHeader3
cfdump var=#loginHeader4# label=loginHeader4
cfdump var=#loginHeader5# label=loginHeader5
cfdump var=#loginHeader6# label=loginHeader6
cfdump var=#loginHeader7# label=loginHeader7
cfdump var=#loginHeader8# label=loginHeader8
cfdump var=#loginHeader9# label=loginHeader9
cfdump var=#loginHeader10# label=loginHeader10
cfdump var=#loginHeader11# label=loginHeader11
cfdump var=#loginHeader12# label=loginHeader12

-end code--


On 3/13/06, Ian Skinner [EMAIL PROTECTED] wrote:
 xmlns=urn:messages_1_2.platform.webservices.netsuite.com

 Is it not these repeated parameters?  According to this resource sounds
like it should be.

 http://www.jclark.com/xml/xmlns.htm


 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA

 -
 | 1 |   |
 -  Binary Soduko
 |   |   |
 -

 C code. C code run. Run code run. Please!
 - Cynthia Dunning

 Confidentiality Notice:  This message including any
 attachments is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the
 intended recipient, please contact the sender and
 delete any copies of this message.




 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235704
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFIDE Error

2006-03-15 Thread Andrew Stevens
How about trying a different version of Tomcat?

I assume you get the same error when accessing Tomcat directly (not via
apache)?
 
It does still seem like a class path problem. Any other errors in the other
Tomcat/Catalina logs?

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 15 March 2006 10:24 PM
To: CF-Talk
Subject: RE: CFIDE Error

Seems to be the session management stuff which is hosing it? Maybe something
within Tomcat or Apache not allowing it to be used?

Lost... :-)



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 15 March 2006 11:19
To: CF-Talk
Subject: RE: CFIDE Error

It seems to be failing on the following code - both in the CFIDE launch and
in on page I code to use it..

cfapplication name=cfadmin sessionmanagement=Yes
sessiontimeout=#createTimeSpan(0,6,0,0)#

Any ideas?  



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 15 March 2006 09:51
To: CF-Talk
Subject: RE: CFIDE Error

Nope, vanilla - brand new install.



-Original Message-
From: Steve Brownlee [mailto:[EMAIL PROTECTED] 
Sent: 14 March 2006 20:14
To: CF-Talk
Subject: RE: CFIDE Error

Have you installed the CF 7.0.1 Updater on this machine by chance? 

 -Original Message-
 From: Robertson-Ravo, Neil (RX) 
 [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, March 14, 2006 11:24 AM
 To: CF-Talk
 Subject: RE: CFIDE Error
 
 Thanks for the reply...I am not sure any of these are the 
 causeit's a
This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, 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





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235426
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Webservice or not webservice?

2006-03-13 Thread Andrew Stevens
I'd advise not putting the web service in to CF Admin until you know it
works.

Instead create from the wsdl like this;

cfscript
ws =
createobject(webservice,https://63.112.170.8:8443/bgwBroker;);
/cfscript

cfdump var=#ws#

You'll see the errors on the page. 

You should use the right host name to get past the certificate error. Use
this instead: 
cfscript
ws =
createobject(webservice,https://gateway.monster.com:8443/bgwBroker;);
/cfscript

You may also need to increase the page timeout to get the WSDL parsed and
classes generated.

If you see the results of the CFDUMP you're a good way to getting the web
service working.

Cheers.

-Original Message-
From: Duncan [mailto:[EMAIL PROTECTED] 
Sent: Monday, 13 March 2006 3:18 PM
To: CF-Talk
Subject: Webservice or not webservice?

We are trying to do some integration with Monster and use their
webservice to post jobs and receive feedback from them.

When we add this to the CF7 admin

https://63.112.170.8:8443/bgwBroker

We get this feedback: Error creating web service. Please ensure that
you have entered a correct Web Service name or URL.

Is this an error caused by the certificate not being valid on this IP?
Or is it to do with the 'webservice' at their end.  It doesnt look
like a traditional webservice when you view it in the browser - more
like an XSD. There are no .wsdl extentions.

What other way could we use this webservice?

Thanks in advance all!

--
Duncan I Loxton
[EMAIL PROTECTED]



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235181
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: JRun High Memory Usage on CFMX 7

2006-03-08 Thread Andrew Stevens
Ming Lu  Chad,
You could try this hotfix;
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=413aa6bbpss=rs
s_jrun_413aa6bb

Depending how your applications use sessions it might be applicable. 

Cheers.

-Original Message-
From: Casey Dougall [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 8 March 2006 10:15 AM
To: CF-Talk
Subject: Re: JRun High Memory Usage on CFMX 7

Well, another problem I've had like that was when the file backup
services were eating up 80 to 90% of the bandwidth of the internal NIC
card. coldfusion was stuck using ill amounts of transfer space to get
and send data to the SQL server. Simular issue. Jrun would just hang. 
you can see this if you remote desktop into the server and run task
monitor... on the network tab you will see what's going through your
internal and external NIC cards. Normally this sits around under 10%
but if you see it spikeing to 80 or 90% I'd bet on that as the issue.

Casey

On 3/7/06, Ming Lu [EMAIL PROTECTED] wrote:
 Hi Casey,

 Sorry, not for this server.  It's at None for Select Default Storage
Mechanism for Client Sessions in CFMX administrator.

 Ming Lu

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234591
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Change location of wwwroot?

2006-02-28 Thread Andrew Stevens
Are you using a web server, IIS perhaps? Or only the internal CF web server?

-Original Message-
From: Jake . [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 1 March 2006 3:28 PM
To: CF-Talk
Subject: Change location of wwwroot?

Is there a way to change the location of your wwwroot file? I'd like to move
mine to a different drive than the actual CFMX install itself.

Thanks!
Jake



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233718
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Accessing .net webserivce in coldfusion

2006-02-24 Thread Andrew Stevens
Post ya code.

Firewall perhaps? Got a router?

-Original Message-
From: vishnu prasad [mailto:[EMAIL PROTECTED] 
Sent: Friday, 24 February 2006 8:00 PM
To: CF-Talk
Subject: Re: Accessing .net webserivce in coldfusion

After setting the timout also i am getting the same error 
i even tried writing simple webservice in coldfusion and access the same ,
still i am getting the same error 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:29
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Accessing .net webserivce in coldfusion

2006-02-24 Thread Andrew Stevens
Is your cold fusion server running locally or on a server somewhere? 

-Original Message-
From: vishnu prasad [mailto:[EMAIL PROTECTED] 
Sent: Friday, 24 February 2006 9:15 PM
To: CF-Talk
Subject: Re: Accessing .net webserivce in coldfusion

Post ya code.

Firewall perhaps? Got a router?

-Original Message-
From: vishnu prasad [mailto:[EMAIL PROTECTED] 
Sent: Friday, 24 February 2006 8:00 PM
To: CF-Talk
Subject: Re: Accessing .net webserivce in coldfusion

After setting the timout also i am getting the same error 
i even tried writing simple webservice in coldfusion and access the same ,
still i am getting the same error

Hi 
yes we are behind firewall , how to use if we r behind firewall.
but when i access the webservice using webservicestudio i am able to access
behind the firewall. only not from coldfusion 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233438
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Digital Signing a SOAP Request

2006-02-24 Thread Andrew Stevens
Can you send a link for more info on PayPal Pro? A quick google didn't yield
much.

This link suggests you don't need digital signing;
http://www.paypaldev.org/topic.asp?TOPIC_ID=11264 but it doesn't mention pro
specifically.

Cheers.

-Original Message-
From: Bud [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 25 February 2006 3:27 AM
To: CF-Talk
Subject: Digital Signing a SOAP Request

Anyone have any code lying around that will digitally sign a soap 
request using CF's built-in functions or java classes? Pointers on 
where to start?

I'm wanting to implement PayPal Pro with cf_ezcart. They have an API 
for MX 7, but it requires jar files be installed and it looks like 
this may be a problem on shared servers. Their SOAP requests look 
pretty straight forward, but I have NO idea how to digitally sign a 
SOAP request. :)

Clues? Tips? Pointers?

Thanks! :)
-- 

Bud Schneehagen - Tropical Web Creations, Inc.

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Web Based Solutions / eCommerce Development  Hosting
http://www.twcreations.com/ - http://www.cf-ezcart.com/
Toll Free: 877.207.6397 - Local  Int'l Phone/Fax: 386.789.0968



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233439
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Accessing .net webserivce in coldfusion

2006-02-23 Thread Andrew Stevens
But in this case it does say it timed out. 
java.net.ConnectException: Connection timed out

It's an example web service, so it could be heavily used. Try setting a
higher timeout value in your cfinvoke tag.

-Original Message-
From: John C. Bland II [mailto:[EMAIL PROTECTED] 
Sent: Friday, 24 February 2006 6:49 PM
To: CF-Talk
Subject: Re: Accessing .net webserivce in coldfusion

Typically that means there is a prob with the service, as the error states.
I ran this through WebServiceStudio and it worked just fine though. It was
terribly slow in doing so, which is odd, but it still handled it just fine.

Can you post some code?

On 2/23/06, vishnu prasad [EMAIL PROTECTED] wrote:

 Hi guy
 can some one help me how to access the .net webservice in coldfusion?

 when i try to access the third party webservice i got this error
 Could not generate stub objects for web service invocation.
 Name: http://www.xmethods.net/sd/2001/BabelFishService.wsdl. WSDL:
 http://www.xmethods.net/sd/2001/BabelFishService.wsdl.
 java.net.ConnectException: Connection timed out: connect It is recommended
 that you use a web browser to retrieve and examine the requested WSDL
 document for correctness. If the requested WSDL document canapos;t be
 retrieved or it is dynamically generated, it is likely that the target web
 service has programming errors.

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233329
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problems with invoking a Webservice

2006-02-20 Thread Andrew Stevens
Not a bad idea Artur, the error is pretty odd...

*** Error: No method named setTypeMappingVersion was found in type
org/apache/axis/client/Service. 59. org.apache.axis.client.Call _call =
super._createCall();

A couple of things to try:

- call your page from the built in web server, same result?

-  have a look at Settings Summary in ColdFusion Administrator. Do you see
any odd paths or files that don't seem to belong to CF? It's possible some
different libraries have been loaded than were expected, probably to do with
Axis.

Cheers,
AS

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED] 
Sent: Monday, 20 February 2006 1:08 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

No, there is no other code. I will try to install CF again. Thanks for ur
help.

Artur 

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED] 
Sent: Sunday, February 19, 2006 1:41 PM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Is there any more code besides what you have already posted? As it's not
reproducible here, I guess the problem lies in your setup. 

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED]
Sent: Sunday, 19 February 2006 9:47 PM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Deleting them ensures the stubs are re-generated from the WSDL.
Ok, understand.

But even if I delete this folder the error is still there. What can I do?
Any help is appreciate.

Artur

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED]
Sent: Sunday, February 19, 2006 2:21 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

No, you need those files for it to work, Deleting them ensures the stubs are
re-generated from the WSDL.

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED]
Sent: Sunday, 19 February 2006 4:58 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Hi Andrew,

the problem is, when I deleted the folder it will be created new on every
reload. It is possible do disable it somewhere? Or is there any workaround?

Artur 

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED]
Sent: Saturday, February 18, 2006 6:49 PM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

You can delete the folders from here down:
D:/Programme/Macromedia/ColdFusionMX7/stubs/

The classes (stubs) will be regenerated when you call the web service again.
Does it still throw the same error then?

You might have another version of Axis which is mistakenly being loaded
before the CF one. Seems unlikely.

Sorry, it's late o'clock. Gotta go.

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED]
Sent: Sunday, 19 February 2006 4:30 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Here is the whole error message:

coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler:
Found 4 semantic errors compiling
D:/Programme/Macromedia/ColdFusionMX7/stubs/WS1432946178/net/xmethods/www/s
d/TemperatureService_wsdl/TemperatureBindingStub.java: 33.
oper.setStyle(org.apache.axis.constants.Style.RPC);
 *** Error: No match was
found for method setStyle(org.apache.axis.constants.Style). 34.
oper.setUse(org.apache.axis.constants.Use.ENCODED);
 *** Error: No match was
found for method setUse(org.apache.axis.constants.Use). 54.
((org.apache.axis.client.Service)super.service).setTypeMappingVersion(1.2)
;
--
*** Error: No method named setTypeMappingVersion was found in type
org/apache/axis/client/Service. 59. org.apache.axis.client.Call _call =
super._createCall();
















~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232894
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problems with invoking a Webservice

2006-02-20 Thread Andrew Stevens
Not a bad idea Artur, the error is pretty odd...

*** Error: No method named setTypeMappingVersion was found in type
org/apache/axis/client/Service. 59. org.apache.axis.client.Call _call =
super._createCall();

A couple of things to try:

- call your page from the built in web server, same result?

-  have a look at Settings Summary in ColdFusion Administrator. Do you see
any odd paths or files that don't seem to belong to CF? It's possible some
different libraries have been loaded than were expected, probably to do with
Axis.

Cheers,
AS

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED] 
Sent: Monday, 20 February 2006 1:08 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

No, there is no other code. I will try to install CF again. Thanks for ur
help.

Artur 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232895
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfmx on kubuntu

2006-02-19 Thread Andrew Stevens
It is 'just' a warning, is your server not working?

-Original Message-
From: Paul Scoffield II [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 19 February 2006 7:23 PM
To: CF-Talk
Subject: Re: cfmx on kubuntu

naw.. that's not it.. i don't have a license.properties in that directory...

On 2/18/06, Andrew Stevens [EMAIL PROTECTED] wrote:
 Could be this...

http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=cf8f287bpss=rs
 s_coldfusion_cf8f287b

 -Original Message-
 From: Paul Scoffield II [mailto:[EMAIL PROTECTED]
 Sent: Sunday, 19 February 2006 1:41 PM
 To: CF-Talk
 Subject: cfmx on kubuntu

 the install seems to have gone fine, but when i attempt to start the
 server, I get this in the coldfusion.log:

 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 02/18 21:38:39 warning Unable to open
 /opt/coldfusionmx7/runtime/lib/license.properties
 02/18 21:38:39 error Error thrown in operation init

 any ideas or suggestions?

 (i am very green on *nix)

 Critter
 --
 http://single-dads.us



 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232829
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problems with invoking a Webservice

2006-02-19 Thread Andrew Stevens
Is there any more code besides what you have already posted? As it's not
reproducible here, I guess the problem lies in your setup. 

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 19 February 2006 9:47 PM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Deleting them ensures the stubs are re-generated from the WSDL.
Ok, understand.

But even if I delete this folder the error is still there. What can I do?
Any help is appreciate.

Artur

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED] 
Sent: Sunday, February 19, 2006 2:21 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

No, you need those files for it to work, Deleting them ensures the stubs are
re-generated from the WSDL.

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED]
Sent: Sunday, 19 February 2006 4:58 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Hi Andrew,

the problem is, when I deleted the folder it will be created new on every
reload. It is possible do disable it somewhere? Or is there any workaround?

Artur 

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED]
Sent: Saturday, February 18, 2006 6:49 PM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

You can delete the folders from here down:
D:/Programme/Macromedia/ColdFusionMX7/stubs/

The classes (stubs) will be regenerated when you call the web service again.
Does it still throw the same error then?

You might have another version of Axis which is mistakenly being loaded
before the CF one. Seems unlikely.

Sorry, it's late o'clock. Gotta go.

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED]
Sent: Sunday, 19 February 2006 4:30 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Here is the whole error message:

coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler:
Found 4 semantic errors compiling
D:/Programme/Macromedia/ColdFusionMX7/stubs/WS1432946178/net/xmethods/www/s
d/TemperatureService_wsdl/TemperatureBindingStub.java: 33.
oper.setStyle(org.apache.axis.constants.Style.RPC);
 *** Error: No match was
found for method setStyle(org.apache.axis.constants.Style). 34.
oper.setUse(org.apache.axis.constants.Use.ENCODED);
 *** Error: No match was
found for method setUse(org.apache.axis.constants.Use). 54.
((org.apache.axis.client.Service)super.service).setTypeMappingVersion(1.2)
;
--
*** Error: No method named setTypeMappingVersion was found in type
org/apache/axis/client/Service. 59. org.apache.axis.client.Call _call =
super._createCall();












~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232837
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problems with invoking a Webservice

2006-02-18 Thread Andrew Stevens
Can you post more of the error information? You may need to change some
settings in CF Administrator to see more of the error.

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 19 February 2006 3:46 AM
To: CF-Talk
Subject: Problems with invoking a Webservice

I desprate try to invoke a Webservice with cfinvoke and CreateObject. But I
got still an error:
coldfusion.jsp.CompilationFailedException
 
I'm using CF 7.0.1 with all hotfixes on Apache 2. I mean to remeber that
there was a problem with invoking a Webserivce with CF 7 but I dont found
anything on the archive. Any one an idea how I can fix it? Or what have I to
do?
 
Here my sample code:
cfscript
 ws = CreateObject(webservice,
http://www.xmethods.net/sd/2001/TemperatureService.wsdl;);
/cfscript
 
cfinvoke
webservice=http://www.xmethods.net/sd/2001/TemperatureService.wsdl;
  method=getTemp
  returnvariable=aTemp
 cfinvokeargument name=zipcode value=55987/
/cfinvoke
cfoutputThe temperature at zip code 55987 is #aTemp#/cfoutput
 
 
Artur




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232786
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problems with invoking a Webservice

2006-02-18 Thread Andrew Stevens
Bye the way, the code you provided runs just fine here.

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 19 February 2006 4:01 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Can you post more of the error information? You may need to change some
settings in CF Administrator to see more of the error.

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 19 February 2006 3:46 AM
To: CF-Talk
Subject: Problems with invoking a Webservice

I desprate try to invoke a Webservice with cfinvoke and CreateObject. But I
got still an error:
coldfusion.jsp.CompilationFailedException
 
I'm using CF 7.0.1 with all hotfixes on Apache 2. I mean to remeber that
there was a problem with invoking a Webserivce with CF 7 but I dont found
anything on the archive. Any one an idea how I can fix it? Or what have I to
do?
 
Here my sample code:
cfscript
 ws = CreateObject(webservice,
http://www.xmethods.net/sd/2001/TemperatureService.wsdl;);
/cfscript
 
cfinvoke
webservice=http://www.xmethods.net/sd/2001/TemperatureService.wsdl;
  method=getTemp
  returnvariable=aTemp
 cfinvokeargument name=zipcode value=55987/
/cfinvoke
cfoutputThe temperature at zip code 55987 is #aTemp#/cfoutput
 
 
Artur






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232787
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problems with invoking a Webservice

2006-02-18 Thread Andrew Stevens
You can delete the folders from here down:
D:/Programme/Macromedia/ColdFusionMX7/stubs/

The classes (stubs) will be regenerated when you call the web service again.
Does it still throw the same error then?

You might have another version of Axis which is mistakenly being loaded
before the CF one. Seems unlikely.

Sorry, it's late o'clock. Gotta go.

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 19 February 2006 4:30 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Here is the whole error message:

coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler:
Found 4 semantic errors compiling
D:/Programme/Macromedia/ColdFusionMX7/stubs/WS1432946178/net/xmethods/www/s
d/TemperatureService_wsdl/TemperatureBindingStub.java: 33.
oper.setStyle(org.apache.axis.constants.Style.RPC);
 *** Error: No match was
found for method setStyle(org.apache.axis.constants.Style). 34.
oper.setUse(org.apache.axis.constants.Use.ENCODED);
 *** Error: No match was
found for method setUse(org.apache.axis.constants.Use). 54.
((org.apache.axis.client.Service)super.service).setTypeMappingVersion(1.2)
;
--
*** Error: No method named setTypeMappingVersion was found in type
org/apache/axis/client/Service. 59. org.apache.axis.client.Call _call =
super._createCall();




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232790
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problems with invoking a Webservice

2006-02-18 Thread Andrew Stevens
No, you need those files for it to work, Deleting them ensures the stubs are
re-generated from the WSDL.

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 19 February 2006 4:58 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Hi Andrew,

the problem is, when I deleted the folder it will be created new on every
reload. It is possible do disable it somewhere? Or is there any workaround?

Artur 

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 18, 2006 6:49 PM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

You can delete the folders from here down:
D:/Programme/Macromedia/ColdFusionMX7/stubs/

The classes (stubs) will be regenerated when you call the web service again.
Does it still throw the same error then?

You might have another version of Axis which is mistakenly being loaded
before the CF one. Seems unlikely.

Sorry, it's late o'clock. Gotta go.

-Original Message-
From: Artur Kordowski [mailto:[EMAIL PROTECTED]
Sent: Sunday, 19 February 2006 4:30 AM
To: CF-Talk
Subject: RE: Problems with invoking a Webservice

Here is the whole error message:

coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler:
Found 4 semantic errors compiling
D:/Programme/Macromedia/ColdFusionMX7/stubs/WS1432946178/net/xmethods/www/s
d/TemperatureService_wsdl/TemperatureBindingStub.java: 33.
oper.setStyle(org.apache.axis.constants.Style.RPC);
 *** Error: No match was
found for method setStyle(org.apache.axis.constants.Style). 34.
oper.setUse(org.apache.axis.constants.Use.ENCODED);
 *** Error: No match was
found for method setUse(org.apache.axis.constants.Use). 54.
((org.apache.axis.client.Service)super.service).setTypeMappingVersion(1.2)
;
--
*** Error: No method named setTypeMappingVersion was found in type
org/apache/axis/client/Service. 59. org.apache.axis.client.Call _call =
super._createCall();








~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232815
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfmx on kubuntu

2006-02-18 Thread Andrew Stevens
Could be this...
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=cf8f287bpss=rs
s_coldfusion_cf8f287b

-Original Message-
From: Paul Scoffield II [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 19 February 2006 1:41 PM
To: CF-Talk
Subject: cfmx on kubuntu

the install seems to have gone fine, but when i attempt to start the
server, I get this in the coldfusion.log:

Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
02/18 21:38:39 warning Unable to open
/opt/coldfusionmx7/runtime/lib/license.properties
02/18 21:38:39 error Error thrown in operation init

any ideas or suggestions?

(i am very green on *nix)

Critter
--
http://single-dads.us



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232824
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFMail Grouping Question

2006-02-08 Thread Andrew Stevens
Hi, this one is a corker, I might try to submit it to Rays cookbook if it's
not there.

(If someone hadn't told you by now) you can group with the CFMAIL tag
itself. It's a beautiful thing. So you can group by recipient etc.

It's best to think cfmail is cfoutput.

The ability to output query data back into the cfmail tag is a bit abnormal.
The example below *should* run. 

Cheers.

cfset qryExample = querynew(email,data)

cfset queryaddrow(qryExample)
cfset querysetcell(qryExample,email,[EMAIL PROTECTED])
cfset querysetcell(qryExample,data,record 1)
cfset queryaddrow(qryExample)
cfset querysetcell(qryExample,email,[EMAIL PROTECTED])
cfset querysetcell(qryExample,data,record 2)
cfset queryaddrow(qryExample)
cfset querysetcell(qryExample,email,[EMAIL PROTECTED])
cfset querysetcell(qryExample,data,record 3)

cfmail query=qryExample group=email to=#email# from=[EMAIL PROTECTED]
subject=Your data type=html
Your records...br /
cfoutput
#data#br /
/cfoutput 
/cfmail
mail sent

-Original Message-
From: Brian Polackoff [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 7 February 2006 8:23 AM
To: CF-Talk
Subject: RE: CFMail Grouping Question

Thanks for the ideas, the cfsavecontent worked perfectly.

Brian

-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 06, 2006 4:02 PM
To: CF-Talk
Subject: RE: CFMail Grouping Question

If anything-- you could run that code ahead of the cfmail in a
cfsavecontent tag, and then just output the results into the E-mail.

~Brad

-Original Message-
From: Brian Polackoff [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 06, 2006 2:33 PM
To: CF-Talk
Subject: CFMail Grouping Question

Can anyone tell a lost programmer how to group with CFMAIL so that a
recordset with 100 records, grouped into 10 groups gets included into a
singe email, not 10 emails

 






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231629
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Cfmail speed issues

2006-01-31 Thread Andrew Stevens
Doesn't CFMX7 Enterprise have 'high speed email delivery'?
I recall some stats... 4 billion emails an hour I think :)

-Original Message-
From: Russ [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 1 February 2006 3:21 PM
To: CF-Talk
Subject: RE: Cfmail speed issues

Not too sure what activemail is, but we use imsMail lite, and haven't had
any issues.  We do use a dedicated mail server that ims forwards it mail to,
but other then that no issues.  

We send mail to an average of 30k users per day (and those go out within a
few hours at the most).  

Russ

 -Original Message-
 From: Jerry Johnson [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 31, 2006 10:53 PM
 To: CF-Talk
 Subject: Cfmail speed issues
 
 I've got a couple of reasonalby large double-opt-in lists I need to
 send email alerts.
 
 10,000 emails at a pop.
 
 I was using the ActiveMail tag to handle this mail blast on our cf5
 box, and it was going out fairly quick.
 
 I have tried to move this blast to our cfmx7 server, and ActiveMail is
 bringing the server down (4 proc, 4 gb, 2 mail servers). When it
 works, it takes more than 15 minutes.
 I have tried to switch back to the built-in cfmail tag, and that just
 brought the systems to their knees. (cf server and mail servers)
 
 How long should it take to spool 10,000 emails (same email to all
 subs)? What is the best I can hope for for speed? What can I do to
 speed this up? Are there other mail systems I should be looking at
 instead?
 
 Thanks for any pointers.
 
 Jerry Johnson
 
 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230921
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFINVOKE with no WSDL?

2006-01-27 Thread Andrew Stevens
WSAD can definitely create WSDL. You could point them to WSAD help, it
contains a bunch of cheat sheets and wizards to help with just that sort of
thing.

Cheers,
AS

-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 25 January 2006 2:32 AM
To: CF-Talk
Subject: CFINVOKE with no WSDL?

We're attempting to work with SOAP-based web services which lack WSDL
files.  The only answer we've gotten for this remarkable stupidity is that
WSAD (WebSphere Application Developer) can't produce WSDL so they didn't do
it.

We do know the methods, parameters, etc.  Can CFINVOKE still be of use or
will we have to degrade back to CFHTTP and raw XML parsing?

Thanks,

Jim Davis





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230654
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Date Formats

2006-01-27 Thread Andrew Stevens
Hi Claude, obviously there's some history to 'createODBCdate' and the
function name says it all. 

I was wondering - now CFMX uses JDBC is there any problems using
createODBCdate with JDBC connections? Is there a better practice,
alternative functions? Or does CF just handle it all? 

Cheers,
AS 

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 25 January 2006 9:54 AM
To: CF-Talk
Subject: Re: Date Formats

 am sure I haven't had that problem with other databases thought.

Actually, it depends on the date.
If the date cannot be interpreted as a valid date in American format, CF 
will assume it is in European and convert it correctly.
Problem arrises when the date format is ambiguous, like 10/12/2005. This 
date is valid in American format, and CF has no way,
nor any reason to supose it could be in European format.
So actually you will only have a problem for the first 12 days of any 
month, except the first of jan, the 2nd of feb, etc.
AND somebody discovers something is wrong, which is not 100% of times ;-)

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230655
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Deflated Web Services can't be consumed on CFMX7?

2006-01-23 Thread Andrew Stevens
Hi I hit a problem today trying to consume a web service in CFMX7.

 

Sorry, I don't have the exact wording, it's something like java.util.zip.Zip
Exception. invalid compression algorithm.

Some investigation revealed the WSDL is compressed with Deflate, not GZIP
which seems more common.

 

Does anyone know of a way to make CF(Axis) work with 'Deflate'?

Or maybe there's a header I could set to stop it being compressed? 

 

Any help would be great.

 

Cheers,

AS



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230213
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Multiple IIS sites on Windows XP

2006-01-04 Thread Andrew Stevens
Thanks Snake, I'd agree with Jim too this should be very handy... now I can
bring more work home with me. D'oh.

I had to try to start two sites... just to see The request is not
supported. I wish.

-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 4 January 2006 2:20 PM
To: CF-Talk
Subject: RE: Multiple IIS sites on Windows XP

 -Original Message-
 From: Matt Robertson [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 03, 2006 5:38 PM
 To: CF-Talk
 Subject: Re: Multiple IIS sites on Windows XP
 
 This is going to be a stupid question I guess, but why would anyone
 need this utility?  I set up IIS and I get one web site.  Fine.  I
 also write code that has, within /Application.cfm, something like
 this:

Of course (*GASP!*) not all of the virtual web sites may be running
ColdFusion applications.  ;^)

Personally I love this tool - it allows me to very closely mirror my
multi-homed production environment on my laptop.

Jim Davis




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228334
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Unable to generate a proxy

2005-12-29 Thread Andrew Stevens
Hi John, I tried it in DW8, the error message was Unable to generate a
proxy. WSDL2Java emitter timed out.

I think that's the extent of it. DW seems to have a built in time limit on
the generator. The WSDL  Java  DW/CF seems to take too long. 

It works in DW8 for a JSP with Axis and as it is PayPal I think you can
assume the WSDL is fine.

IMO the Dreamweaver Web Service CF proxy generator thingy is, um, not so
good. But what's the alternative? I'm not sure. CFEclipse eventually (?).

You might to consider reading the wsdl and hand typing the CFML, there's not
too much to it, if you only want to call a couple of methods. 

Cheers,
AS

-Original Message-
From: John Wilker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 29 December 2005 6:02 AM
To: CF-Talk
Subject: DW: Unable to generate a proxy

In my ever more maddenning attempts to work with PayPals API I tried
plugging the WSDL into DW. This is the first time I've ever triend that and
I get an error about unable to Generate Proxy

Is that something I can remedy or something in the WSDL that ain't kosher?

Here's the WSDL I'm playing with

http://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl

--
John Wilker
Writer/Web Consultant
www.johnwilker.com / www.red-omega.com

The measure of success is not whether you have a tough problem to deal
with,
but whether it's the same problem you had last year.
~John Foster Dulles, Former US Sec. of State.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:227841
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Unable to generate a proxy

2005-12-29 Thread Andrew Stevens
I can also say CF can't handle that WSDL either.

12/29 23:19:18 Error [web-0] - Could not generate stub objects for web
service invocation.Name: http://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl.
WSDL: http://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl.
java.io.IOException: Type {urn:ebay:apis:eBLBaseComponents}Category is
referenced but not defined. 

Yet there must be someone out there using CFMX with PayPal Web Services...

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 29 December 2005 7:30 PM
To: CF-Talk
Subject: RE: Unable to generate a proxy

Hi John, I tried it in DW8, the error message was Unable to generate a
proxy. WSDL2Java emitter timed out.

I think that's the extent of it. DW seems to have a built in time limit on
the generator. The WSDL  Java  DW/CF seems to take too long. 

It works in DW8 for a JSP with Axis and as it is PayPal I think you can
assume the WSDL is fine.

IMO the Dreamweaver Web Service CF proxy generator thingy is, um, not so
good. But what's the alternative? I'm not sure. CFEclipse eventually (?).

You might to consider reading the wsdl and hand typing the CFML, there's not
too much to it, if you only want to call a couple of methods. 

Cheers,
AS

-Original Message-
From: John Wilker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 29 December 2005 6:02 AM
To: CF-Talk
Subject: DW: Unable to generate a proxy

In my ever more maddenning attempts to work with PayPals API I tried
plugging the WSDL into DW. This is the first time I've ever triend that and
I get an error about unable to Generate Proxy

Is that something I can remedy or something in the WSDL that ain't kosher?

Here's the WSDL I'm playing with

http://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl

--
John Wilker
Writer/Web Consultant
www.johnwilker.com / www.red-omega.com

The measure of success is not whether you have a tough problem to deal
with,
but whether it's the same problem you had last year.
~John Foster Dulles, Former US Sec. of State.






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:227845
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: WebService worked in 6.1 but fails with CFMX 7.0

2005-12-13 Thread Andrew Stevens
Hi, those two WSDLs really are quite different. If you're super sure the two
servers are running the exact same code (I'm assuming that's true) then I
think you can say the enhancements in CF7 (ie: newer Axis engine or related
features) are the cause of the wsdl differences. Some can be explained and
are probably of no consequence. ie: [wsdl:documentation] was added.

Without getting into the detail of the WSDL, although all method names are
the same the interface for the webservice has changed so the client code
probably needs to be recompiled against the new wsdl. Unless it's a smart
client that could cope with some changes in the WSDL/interface, but I'm
assuming it's just a VB or .Net client app :) Do you have any control over
the client app to make changes?

Getting into the WSDL there are enough differences in the old and new to
think the client probably wont cope with out being recompiled (at least).
 
- Extra imports in the cf7: import namespace=http://rpc.xml.coldfusion;
- Many types are different ie: UUID is xsd:string versus soapenc:string
- Some names are not in the same case: 'availableTaskCount' vs
'AvailableTaskCount'
- wsdl xml attributes are ordered differently (yeah the order shouldn't
matter but your client app may have (wrongly) relied on it).

Perhaps these points will trigger a response from someone in the know as to
why this occurs, or how to make it work in the CF6.1 style on CF7.

I tried the WSDL validator too (
http://www.mgateway.com/php/mgw/wsdlvalidator.php ) - not bad, but I wasn't
sure exactly what it was validating against, or how to interpret the error.
You could try the Testing Tools at www.ws-i.org, but that's not going to
tell you how compliant your client app is. 

Cheers,
AS

-Original Message-
From: blists [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 13 December 2005 6:37 AM
To: CF-Talk
Subject: Re: WebService worked in 6.1 but fails with CFMX 7.0

Sean,

Here are the two WSDL files in question. They are both identical CFML, but
the WSDL on CF7.0 is different than the one on CF6.1 and no longer works
with our client application or when I try to run it through this tester:
http://www.mgateway.com/scripts/mgwms32.dll. Any idea on what could be
wrong?

Dev Server (CFMX 7)
http://dev.logiforms.com/lfcomponents/lfbridge/logibridge.cfc?wsdl

Live Server
http://www.logiforms.com/lfcomponents/lfbridge/logibridge.cfc?wsdl

Any ideas on what could be wrong?

Brook


At 06:25 PM 12/10/2005, you wrote:
On 12/10/05, blists [EMAIL PROTECTED] wrote:
 We have a working web service that is deployed on CFMX 6.1. Our Dev Server
has CFMX 7.0 and the client that interacts with the webservice now returns
an error. Nothing has been changed. I compared the two WSDL files and they
have quote a few differences.

Perhaps you can post the CFC and the WSDL here so we can debug for you?
--
Sean A Corfield -- http://corfield.org/
Got frameworks?

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226911
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: WebService worked in 6.1 but fails with CFMX 7.0

2005-12-13 Thread Andrew Stevens
It looks like the thread killer has done it again, sorry. 
Did I say something wrong?

-Original Message-
From: Andrew Stevens [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 14 December 2005 12:32 AM
To: CF-Talk
Subject: RE: WebService worked in 6.1 but fails with CFMX 7.0

Hi, those two WSDLs really are quite different. If you're super sure the two
servers are running the exact same code (I'm assuming that's true) then I
think you can say the enhancements in CF7 (ie: newer Axis engine or related
features) are the cause of the wsdl differences. Some can be explained and
are probably of no consequence. ie: [wsdl:documentation] was added.

Without getting into the detail of the WSDL, although all method names are
the same the interface for the webservice has changed so the client code
probably needs to be recompiled against the new wsdl. Unless it's a smart
client that could cope with some changes in the WSDL/interface, but I'm
assuming it's just a VB or .Net client app :) Do you have any control over
the client app to make changes?

Getting into the WSDL there are enough differences in the old and new to
think the client probably wont cope with out being recompiled (at least).
 
- Extra imports in the cf7: import namespace=http://rpc.xml.coldfusion;
- Many types are different ie: UUID is xsd:string versus soapenc:string
- Some names are not in the same case: 'availableTaskCount' vs
'AvailableTaskCount'
- wsdl xml attributes are ordered differently (yeah the order shouldn't
matter but your client app may have (wrongly) relied on it).

Perhaps these points will trigger a response from someone in the know as to
why this occurs, or how to make it work in the CF6.1 style on CF7.

I tried the WSDL validator too (
http://www.mgateway.com/php/mgw/wsdlvalidator.php ) - not bad, but I wasn't
sure exactly what it was validating against, or how to interpret the error.
You could try the Testing Tools at www.ws-i.org, but that's not going to
tell you how compliant your client app is. 

Cheers,
AS

-Original Message-
From: blists [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 13 December 2005 6:37 AM
To: CF-Talk
Subject: Re: WebService worked in 6.1 but fails with CFMX 7.0

Sean,

Here are the two WSDL files in question. They are both identical CFML, but
the WSDL on CF7.0 is different than the one on CF6.1 and no longer works
with our client application or when I try to run it through this tester:
http://www.mgateway.com/scripts/mgwms32.dll. Any idea on what could be
wrong?

Dev Server (CFMX 7)
http://dev.logiforms.com/lfcomponents/lfbridge/logibridge.cfc?wsdl

Live Server
http://www.logiforms.com/lfcomponents/lfbridge/logibridge.cfc?wsdl

Any ideas on what could be wrong?

Brook


At 06:25 PM 12/10/2005, you wrote:
On 12/10/05, blists [EMAIL PROTECTED] wrote:
 We have a working web service that is deployed on CFMX 6.1. Our Dev Server
has CFMX 7.0 and the client that interacts with the webservice now returns
an error. Nothing has been changed. I compared the two WSDL files and they
have quote a few differences.

Perhaps you can post the CFC and the WSDL here so we can debug for you?
--
Sean A Corfield -- http://corfield.org/
Got frameworks?

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood







~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:226995
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFXML issue

2005-12-02 Thread Andrew Stevens
Hi Ken. From the addSOAPRequestHeader doco... 

If you pass XML in the value parameter, ColdFusion ignores the namespace
and name parameters. If you require a namespace, define it within the XML
itself.

So you'll need to do it like this (chuck your ID in there);

cfxml variable=authHeader
tns:AuthenticationHeader xmlns:tns=http://skats.net/services/;
SessionID12345/SessionID
/tns:AuthenticationHeader
/cfxml

cfscript  
vinService =
CreateObject(webservice,http://www.codebump.com/services/zipcodelookup.as
mx?wsdl);

addSOAPRequestHeader(vinService,http://this.is/ignored/,IgnoredName;,
authHeader, true);  

returnStruct = vinService.GetDistanceBetweenZipCodes(zip1 = 91709,zip2 =
90034);   
/cfscript

When running it you'll see Subscription ID is empty in the soap fault only
if you do not add the soap header or include the SessionID element.

I hope this helps... when you get your CF7 server hehehe.

Cheers.

-Original Message-
From: Ken [mailto:[EMAIL PROTECTED] 
Sent: Friday, 2 December 2005 6:16 AM
To: CF-Talk
Subject: Re: CFXML issue

Hi Ade. Actually no. I am trying to create this to pass it as a header for a
soap request. My complete code looks like this:

cfprocessingdirective suppresswhitespace=Yes
cfcontent type=text/xml; charset=utf-16
cfxml variable=creds
tns:AuthenticationHeader id=h_id1
SessionID xsi:type=xsd:stringX/SessionID
/tns:AuthenticationHeader
/cfxml
/cfprocessingdirective
cfscript
vinService = CreateObject(webservice, 
http://www.codebump.com/services/zipcodelookup.asmx?wsdl;);
addSOAPRequestHeader(vinService,http://skats.net/services/;,
AuthenticationHeader, creds, FALSE);
returnStruct = vinService.GetDistanceBetweenZipCodes(zip1 = 91709,zip2 =
90034);
/cfscript

cfdump var=#returnStruct#




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225922
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: interacting with java and return a ColdFusion query

2005-12-02 Thread Andrew Stevens
Yowdy,

I don't think the cfx package provides a query class that you can create in
java and return to CF without using the cfx processRequest/response stuff.

Instead how about returning a Java array of objects or structures? They can
fit the bill sometimes. Here's the list of the conversions;

http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/
wwhelp.htm?href=0379.htm

Also this might help, I haven't tried to create these classes;
http://www.activsoftware.com/mx/undocumentation/query.cfm

Cheers,
AS

-Original Message-
From: George Abraham [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 3 December 2005 1:48 AM
To: CF-Talk
Subject: Re: interacting with java and return a ColdFusion query

Oh yeah, I am familiar with Aaron's tag. That was the basis of the CFX tag
that I had written. Is the CF_Lucene tag available somewhere? I don't have
access to the DRK.

George



On 12/2/05, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
wrote:

 Well,

 I still think you can use cfquery to get at the cotent.  On one of the
 DRK's
 there was a CF_Lucene tag set which did quite a lot with CF and Lucene.

 There are also numerous other sites which mention Lucene and ColdFusion
 working in tandem

 One is Aarons (albeit old!)



http://cephas.net/blog/2003/12/06/indexing_database_content_with_lucene_cold
 fusion.html

 HTH



 -Original Message-
 From: George Abraham [mailto:[EMAIL PROTECTED]
 Sent: 02 December 2005 14:27
 To: CF-Talk
 Subject: Re: interacting with java and return a ColdFusion query

 Hehehe, I did not even think to explain that I wasn't querying just a
 database. The Java set of libraries is Lucene and I am querying the index
 that Lucene has built up for a particular search string. I want to return
 the result that Lucene generates back to CF in the form of a CF query
 object. I have already done this using a CFX tag, but I need to do some
 more
 somersaults within the Java class, so I want to ditch using the CFX tag
 and
 use a class that I can query using CreateObject.

 Thanks,
 George

 On 12/2/05, Robertson-Ravo, Neil (RX) 
 [EMAIL PROTECTED]
 wrote:
 
  I'm lost, what is wrong with cfquery?
 
 
 
  -Original Message-
  From: George Abraham [mailto:[EMAIL PROTECTED]
  Sent: 02 December 2005 14:17
  To: CF-Talk
  Subject: interacting with java and return a ColdFusion query
 
  All,
  I am working with CFMX and a set of Java libraries. I need to code a
 Java
  class that can serve as the liaison between CFMX and Java. This class
 will
  interact with the Java libraries and return the information to CF in the
  form of a CF query (using com.allaire.cfx.Query.) I want to stress that
 I
  am
  not making a Java CFX tag, I am just using com.allaire.cfx.Query.
 However
  I
  looked through this site (
 
 


http://livedocs.macromedia.com/coldfusion/6/CFML_Reference/CFXRef_Java2.htm#
  1142286)
  for the methods available for the Query interface and I don't see any
 way
  to
  actually add a query or to name its columns. This is possible only
 through
  the Request interface. How can I name a CF query and its columns in a
 Java
  class and then return it to CFMX?
 
  Hope that makes sense!
 
  TIA,
  George
 
 
 
 
 



 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225932
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: interacting with java and return a ColdFusion query

2005-12-02 Thread Andrew Stevens
Yowdy,

I don't think the cfx package provides a query class that you can create in
java and return to CF without using the cfx processRequest/response stuff.

Instead how about returning a Java array of objects or structures? They can
fit the bill sometimes. Here's the list of the conversions;

http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/
wwhelp.htm?href=0379.htm

Also this might help, I haven't tried to create these classes;
http://www.activsoftware.com/mx/undocumentation/query.cfm

Cheers,
AS

-Original Message-
 
  -Original Message-
  From: George Abraham [mailto:[EMAIL PROTECTED]
  Sent: 02 December 2005 14:17
  To: CF-Talk
  Subject: interacting with java and return a ColdFusion query
 
  All,
  I am working with CFMX and a set of Java libraries. I need to code a
 Java
  class that can serve as the liaison between CFMX and Java. This class
 will
  interact with the Java libraries and return the information to CF in the
  form of a CF query (using com.allaire.cfx.Query.) I want to stress that
 I
  am
  not making a Java CFX tag, I am just using com.allaire.cfx.Query.
 However
  I
  looked through this site (
 
 


http://livedocs.macromedia.com/coldfusion/6/CFML_Reference/CFXRef_Java2.htm#
  1142286)
  for the methods available for the Query interface and I don't see any
 way
  to
  actually add a query or to name its columns. This is possible only
 through
  the Request interface. How can I name a CF query and its columns in a
 Java
  class and then return it to CFMX?
 
  Hope that makes sense!
 
  TIA,
  George
 
 
 
 
 



 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225934
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: session load balancing [WAS Re: Pros/Cons Session vs Client scope]

2005-11-26 Thread Andrew Stevens
Douglas, can you elaborate on this point?

Cheers,
AS

-Original Message-
From: Douglas Knudsen [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 26 November 2005 4:46 AM
To: CF-Talk
Subject: Re: session load balancing [WAS Re: Pros/Cons Session vs Client
scope]

I'll point out that if you have a CF(JRun) cluster set to use
non-sticky sessions this will kill use of CF Graphing.  AFAIK, there
is no work around.  Just an FYI

DK

On 11/25/05, John Paul Ashenfelter [EMAIL PROTECTED] wrote:
 On 11/23/05, Dave Watts [EMAIL PROTECTED] wrote:
 How do you span sessions across ColdFusion servers if you
 aren't using Enterprise?
   
You don't.
  
   Isn't it all a matter of how you cluster the machines though?
   I mean, if you want to use sessions in a clustered environment,
   you just need to make sure that your load balancer uses sticky
   sessions. Basically, the goal is not to ever toss users between
   servers, but just assign users to a server based on the load
   balancing parameters when they first land on your site.
 
  If you do that, you aren't spanning sessions across CF servers. This
  approach is often referred to as sticky sessions. If you use sticky
  sessions, you don't get failover, only load-balancing. This may or may
not
  be acceptable, depending on your business needs and general server
  stability.

 Furthermore, you get a less powerful version of load-balancing --
 incoming initial user sessions are balanced according to load (or
 whatever balancing scheme is being used) but once the user is *on* a
 server, they're on it for the sessions (thus the sticky). So if a
 server slows down b/c of a runaway process for example, *new* users
 get balanced to the less loaded servers, but the folks on the server
 with the slowdown are stuck.

 This is in contrast to active loadbalancing without sticky sessions
 where the user gets the least loaded server (or whatever is set in the
 balancing rubric) on *every* request.

 As an aside, implementing session-aware clustering can actually
 degrade performance, even when done right. Using files to store
 session for example, is a common approach in both the LAMP stack and
 RubyOnRails for scaling horizontally across N servers -- but your
 chokepoint becomes the SAN or whatever storing the data. Even more
 advanced solutions like memcached (eg LiveJournal and Slashdot) or
 J2EE session clustering (eg CFMX) have problems b/c replicating data
 between multiple nodes takes time when the data is very active.

 It's always a balance of reliability vs performance.

 --
 John Paul Ashenfelter
 CTO/Transitionpoint
 (blog) http://www.ashenfelter.com
 (email) [EMAIL PROTECTED]

 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225322
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: java.awt.Robot Integration using createObject

2005-11-24 Thread Andrew Stevens
Ryan I tried this out, as I suspected it wasn't that strange, just annoying.

It will work if you run your CF Server from the command line. 

You can also tick allow service to interact with desktop in the Log On tab
of the CF Server service properties (windows services).

It sort of makes sense - if a windows service is running on a server, and
there's no user logged in as such, then there's no desktop. But even if
there is a desktop available, you don't want to allow that sort of access by
default to all services. So there's that little tick :)

Cheers.

PS: Now that it works, that's a pretty neat concept. Nice.

-Original Message-
From: Ryan Duckworth [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 24 November 2005 6:48 PM
To: CF-Talk
Subject: java.awt.Robot Integration using createObject

I am getting a very strange result when I try to run some java screen
capture code from coldfusion.  When I simply run the .java file (#2
below)  I get a great .png screen shot stored here:
c:\screenshotFromJava.png

However, when I run the .cfm page (#1 below) using createObject I get
the same size .png file that is completely black.

To test this, compile the .java file below and place the .jar file in
the lib directory, then restart the cf service.

1.  ColdFusion page that calls the JAR
_
cfscript
objMouse = createObject('java','robotScreenShot').init();
objMouse.screenShot(screenshotFromCF.png);
/cfscript

Screen shot created here: c:\screenshotFromCF.png
_

2.  .java file

import java.awt.Robot;
import java.awt.AWTException;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.awt.Dimension;
import java.awt.image.BufferedImage;
import javax.imageio.ImageIO;
import java.io.File;
import java.io.IOException;

public class robotScreenShot {

public static void main(String[] args)
throws AWTException{
screenShot(screenshotFromJava.png);
}

public static void screenShot(String pngFileName)
throws AWTException{
  try {
  Robot r = new Robot();
  String pngPath = c:\\ + pngFileName;
  Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
  Rectangle rect = new Rectangle(0, 0, screenSize.width,
screenSize.height);
  BufferedImage img = r.createScreenCapture(rect);
  ImageIO.write(img, png, new File(pngPath));

  } catch (AWTException e) {
  System.err.println(e);
  } catch (IOException e) {
  System.err.println(e);
  }
}
}

I would really appreciate any help.  Thanks,

Ryan Duckworth
913.486.2611



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225167
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Having a mulit-instance service run under a specific service.

2005-11-09 Thread Andrew Stevens
You can definitely run the services using any user.

I'd check the user has 'full access' to all files and folders from
X:\JRun4\Servername\ and down. That's overkill on the permissions but you
get the drift.

Also have a look in the log files, or start the server instance in console
mode to see what's happening. (Create a .bat with 'jrun -start servername'
etc. Then 'Run As...' on the .bat with your desired user name.)

Cheers.

-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 9 November 2005 2:00 PM
To: CF-Talk
Subject: RE: Having a mulit-instance service run under a specific service.

I can only say that I was able to run multiple instances, of the CF
Developer version, with a Windows domain account.  I didn't have any
problems with restarting the service.

Are there any log entries that show the actual cause?

Does your account have the logon as a service permission?

If you make your account an administrator of your server, does it work?

If you set it back to system, does it work again?

M!ke

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 08, 2005 5:30 PM
To: CF-Talk
Subject: Having a mulit-instance service run under a specific service.

Is there something different to having a multi-instance service run
under a specific user besides local?

I've tried setting this to a different user and I get an error that the
service can not be restarted, it is not responding.  

This is windows 2000 server and CFMX7.01 running in multi-instance
configuration.  I only want one instance to use a specific user at this
time.

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any attachments is for
the sole use of the intended
recipient(s) and may contain confidential and privileged information.
Any unauthorized review, use, disclosure or distribution is prohibited.
If you are not the intended recipient, please contact the sender and
delete any copies of this message. 







~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:223654
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: ColdFusion Reseller Accounts

2005-11-06 Thread Andrew Stevens
Hi Anne, I can't vouch for them, as I've never used them:

http://www.hostnexus.com/solutions/coldfusion.htm

But I have considered one of their CF reseller options... I just couldn't
commit.

Has anyone else tried HostNexus? 

Cheers,
AS

-Original Message-
From: Anne Girardeau [mailto:[EMAIL PROTECTED] 
Sent: Monday, 7 November 2005 1:50 PM
To: CF-Talk
Subject: ColdFusion Reseller Accounts

Anyone know of a good ColdFusion reseller service?  The reason why I ask is
because I'm currently working on a couple of projects that both need
hosting.  Now, I currently have a VPS with Apollo Hosting and could, in
theory, host these new sites on my VPS.  However, I personally don't want to
deal with the hassle and expense of getting an internet merchant account
plus have to worry about manually sending monthly invoices if I can avoid
it. In other words, something relatively inexpensive and automated would be
ideal. But I also want to be able to easily administer and keep track of
accounts. Any information and/or suggestions regarding this would be greatly
appreciated.

Thanks so much,
--Anne



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:223405
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT - MSDE - EM/QA Tools

2005-10-22 Thread Andrew Stevens
Howdy, I just went thru the same exercise.

I installed MSDE straight from SP4 for low hassles. MS have 'Web Data
Administrator' but it just seemed to hang when trying to log in and connect
to the DB.
http://www.microsoft.com/downloads/details.aspx?familyid=C039A798-C57A-419E-
ACBC-2A332CB7F959displaylang=en

I've used Aqua Data Studio before, so I fired that up, it had what I needed
to create databases, tables etc. http://www.aquafold.com/

Cheers,
AS

Subject: OT - MSDE - EM/QA Tools
From: Adrian Lynch [EMAIL PROTECTED]
Date: Sun, 23 Oct 2005 00:48:41 +0100
Thread:
http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=429
11forumid=4#221948

I've just installed MSDE on a local dev machine, I don't have the disk with
EM and QA on and was about to hunt down some alternatives on the web. Doesn
anyone have any recommendations? Web based would be ok too.

Thanks.

Adrian


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221956
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfform alert box

2005-10-15 Thread Andrew Stevens
This unlocked the mystery for me:
http://www.asfusion.com/blog/examples/cfforms/alert.cfm

A truly great site.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:22
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54