[cfaussie] WOT (THE): Ok, it's official, Soccer is a farse

2006-06-26 Thread Chris Dawes










FIFA Referees are poo heads.






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: OT: Web Based DNS service

2006-06-26 Thread Chris Dawes








http://www.dnsmadeeasy.com/s0306/price/dns.html







From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dale
Fraser
Sent: Sunday, 25 June 2006 9:20 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Web Based DNS service







Chris,



Can
you point me to a URL with those details.



I
can’t find the plan your talking about.



Regards

Dale
Fraser













From: cfaussie@googlegroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Chris Dawes
Sent: Sunday, 25 June 2006 2:31 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Web Based DNS service













Don’t use dnspark… 

Try
http://dnsmadeeasy.com – I host over 60
domains with them. You can get all the extras with them too, like backup
e-mail, even outgoing smtp if you want. All for about 

$60
US per year gets you 50 domains up front. Great panel. Five nameservers for
each domain, located around the world.

Anyone use a web
based DNS service to manage domain names. I need to manage about 10-20 domains,
so something that supports multiple domains rather than pay per domain would be
good.



Regards
Dale Fraser


































--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: WOT (THE): Ok, it's official, Soccer is a farse

2006-06-26 Thread M@ Bourke
Soccer?whats that..Forgotten already. Actually I watched the brazil v australia game from munichand the australia v croatia game from an aussie bar in amsterdam awesome atmospherethen back to work today.
I think I got off the soccer train at the right time lol M@On 6/26/06, Chris Dawes [EMAIL PROTECTED]
 wrote:














FIFA Referees are poo heads.














--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] global oracle variable

2006-06-26 Thread Mark Ireland


How do I get an 'Oracle Global Variable' out of Oracle?
This variable is created by a package that I can run with PL/SQL (so it is not an out variable from a procedure)Find lost friends & family online!   Search for free.  

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---



[cfaussie] Web service / Java experts help required.

2006-06-26 Thread Matthew

Hi cfaussie,

I've been on this one a while so any help would be kindly
appreciated I've broken my question down into 3 parts because some
of you may not be arsed to read Question 3 (which is really long) so
maybe if I solve 1 or 2 I'll crack this problem.

=== QUESTION 1 ===
How do I write the 2 lines of Java code below in CF to pass into a web
service?
---
String[] countriesCovered = null;
Attribute[] attributes = null;
-
=== QUESTION 2 ===
I've tried to solve this problem by consuming a simple web service. If
there are any web services experts out there please show yourself, and
show me how to get the code below to work!!!
---
cfscript
ws =
CreateObject(webservice,http://www.weather.gov/forecasts/xml/SOAP_server/ndfdXMLserver.php?wsdl;);
NDFDgenResponse =
ws.NDFDgen(JavaCast('double',38.99),JavaCast('double',-77.99),JavaCast('string','time-series'),
DateFormat('2004-01-01','mm/dd/
hh:ss'),DateFormat('2010-06-26','mm/dd/ hh:ss'));
/cfscript
cfdump var=#NDFDgenResponse#
---
ANd here's the error:
---
Web service operation NDFDgen with parameters {38.99,-77.99,
time-series,01/01/2004 12:00,06/26/2010 12:00} could not be found.
---
I'm certain that the problem here is how I'm passing in parameters.
Weather it be a complex type or a date or whatever, I'm doing
something wrong!
Any ideas... anyone??!?!?!?

=== QUESTION 3 ===
The main problem I'm having is trying to pass complex parameters into a
web service (WS).
Here is the latest error:
--
:::Error:::
Unable to create web service argument class [Ljava.lang.String;.
Error: java.lang.InstantiationException: [Ljava.lang.String;. Often
this is because the web service defines an iabstract/icomplexType
as an input to an operation. You must create an actual instance of
this type in Java.

:::Here's my code:::
cfscript
webservice = CreateObject(webservice,url?wsdl);

countriesCovered.France = JavaCast(string,FR);

result = webservice.doSearch(JavaCast(string,123456),
JavaCast(null,), JavaCast(null,), countriesCovered,
JavaCast(null,));
/cfscript

I've tried so many options (it feels like I can see the top of the
hill :)) but I just can't get doSearch method to work. FYI: I've had
no problems getting strings returned from simple functions (where no
input was required) but it's the complex functions which I can't get
to work (like this doSearch method).

Here's some snippets of the WSDL:
--
:::Snippet 1:::
wsdl:types

schema targetNamespace=soap.ws.web.raileurope.com

import namespace=http://schemas.xmlsoap.org/soap/encoding//

complexType name=ArrayOf_xsd_string

complexContent

restriction base=soapenc:Array

attribute ref=soapenc:arrayType wsdl:arrayType=xsd:string[]/

/restriction

/complexContent

/complexType

complexType name=Attribute

sequence

element name=name nillable=true type=xsd:string/

element name=value nillable=true type=xsd:string/

/sequence

/complexType

complexType name=ArrayOfAttribute

complexContent

restriction base=soapenc:Array

attribute ref=soapenc:arrayType
wsdl:arrayType=impl:Attribute[]/

/restriction

/complexContent

/complexType

 Snippet 2 :::
wsdl:message name=doSearchResponse

wsdl:part name=doSearchReturn type=impl:SearchResult/
/wsdl:message
wsdl:message name=doSearchRequest

wsdl:part name=key type=xsd:string/

wsdl:part name=locale type=xsd:string/

wsdl:part name=style type=xsd:string/

wsdl:part name=countriesCovered type=impl:ArrayOf_xsd_string/

wsdl:part name=attributes type=impl:ArrayOfAttribute/
/wsdl:message

::: Snippet 3 :::
wsdl:portType name=Test

wsdl:operation name=doSearch parameterOrder=key locale style
countriesCovered attributes

wsdl:input message=impl:doSearchRequest name=doSearchRequest/

wsdl:output message=impl:doSearchResponse
name=doSearchResponse/
/wsdl:operation

::: Snippet 4 :::
wsdl:binding name=TestWebServiceSoapBinding type=impl:Test

wsdlsoap:binding style=rpc transport=http://schemas.xmlsoap.
org/soap/http/

wsdl:operation name=doSearch

wsdlsoap:operation soapAction=/

wsdl:input name=doSearchRequest

wsdlsoap:body encodingStyle=http://schemas.xmlsoap.
org/soap/encoding/ namespace=soap.ws.web.raileurope.com
use=encoded/

/wsdl:input

wsdl:output name=doSearchResponse

wsdlsoap:body encodingStyle=http://schemas.xmlsoap.
org/soap/encoding/ namespace=soap.ws.web.raileurope.com
use=encoded/

/wsdl:output

/wsdl:operation


I asked the programmer who wrote the WS to send some sample code.
:::Here is his Java 5.0 code:::
---
String key = null;
String locale = null;
String[] countriesCovered = null;
Attribute[] attributes = null;


key = 123456;
countriesCovered = new String[1];
countriesCovered[0] = FR;


TestService _service = new TestServiceLocator();
Test _ptr = _service.getRailEuropeWebService();


SearchResult result = _ptr.doSearch(key, locale, null,
countriesCovered, attributes);

[cfaussie] [OT] SPAM filter for server

2006-06-26 Thread Taco Fleur
What do people on this list use with their mail server to filter SPAM?

Just after something to run besides MailEnable to filter the spam. Something that works, has been tested and preferably open source. Thanks.-- Taco Fleur - 
http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: [OT] SPAM filter for server

2006-06-26 Thread Chris Velevitch

http://spamassassin.apache.org/

On 6/27/06, Taco Fleur [EMAIL PROTECTED] wrote:

 What do people on this list use with their mail server to filter SPAM?

 Just after something to run besides MailEnable to filter the spam. Something
 that works, has been tested and preferably open source. Thanks.

 --
 Taco Fleur - http://www.pacificfox.com.au
 Web Design, Web development, Graphic Design and Complete Internet Solutions
 an industry leader with commercial IT experience since 1994 …
  



-- 
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: OT:Flex Release

2006-06-26 Thread cfgroupie

What is FDS?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: OT:Flex Release

2006-06-26 Thread Chris Velevitch

Flex Data Services is server connectivity software to allow Flex
applications to transfer data to and from the server.

On 6/27/06, cfgroupie [EMAIL PROTECTED] wrote:

 What is FDS?


 



-- 
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Web service / Java experts help required.

2006-06-26 Thread Andrew Scott

Metthew,

You need to build an array as the WSDL describes that it is looking for a
string array:-) Did I not say this before:-)

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

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Matthew
Sent: Tuesday, 27 June 2006 2:54 PM
To: cfaussie
Subject: [cfaussie] Re: Web service / Java experts help required.


This is crazy! Someone must have come across this problem before.

I've simplified my question, here goes!
::: Here's my code :::
cfscript
webservice  = CreateObject(webservice,dummy?wsdl);
webservice.doBuildQuoteForItinerary(123456,en_US,,1113);
/cfscript

::: Here's the error :::
 Could not perform web service invocation doBuildQuoteForItinerary.
Here is the fault returned when invoking the web service operation:br
preAxisFault faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode: faultString:
com.raileurope.web.ngserver.InternalErrorException:
java.lang.NullPointerException faultActor: faultNode: faultDetail:
{http://xml.apache.org/axis/}hostname:dummy /pre




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---