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

Reply via email to