CF 10 and webservice call

2013-11-21 Thread Matt Williams
I've been having some issues with a new server running CF 10 on Windows Server 2008 R2. At first we couldn't get the web service to register at all. After upgrading to 10.0.12.286680, that now works along with most method calls. However, one method, getSearchResults, will not work. It runs fine

Re: Call of a soap webservice passing headers

2013-02-23 Thread Donnie Bachan (Gmail)
or even with cfhttp like mentionned in this post ( http://blog.brijeshradhika.com/2011/04/consuming-webservice-using-coldfusion.html ), I can't make it work. The documentation of the webservice provides a php example (see below). Anyone of you guys being able to translate into Coldfusion

Call of a soap webservice passing headers

2013-02-22 Thread Stephane Vantroyen
with cfhttp like mentionned in this post (http://blog.brijeshradhika.com/2011/04/consuming-webservice-using-coldfusion.html), I can't make it work. The documentation of the webservice provides a php example (see below). Anyone of you guys being able to translate into Coldfusion code? Thanks

Issue on webservice call (after full gc?)

2013-01-15 Thread Gualtiero Sappa
Hi all, we found a strange issue on webservice call. Scenario: - Windows Server 2003 R2 Enterprise Edition SP2 - IIS 6 - CF multiserver 9,0,0,251028 + chf901.jar - java arguments in jvm.config: java.args=-Xmx4096M -server -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port

Need help with Java webservice stubs

2012-08-16 Thread Jen McVicker
We have a dev server and a live server, both running ColdFusion 9. The ColdFusion versions are the same, the Java versions are the same, the JVM versions are the same. I am trying to connect to an external web service with coldfusion and on dev it works fine. On live, I'm getting the error: Web

Re: Need help with Java webservice stubs

2012-08-16 Thread Russ Michaels
usually that error is because the stubs could not be created. ]re both servers updated to same level with patches etc ? are they both running the same version of Apache axis. This may have been updated by a cf hot fix or update or perhaps someone manually updated axis on your dev server. On

RE: Need help with Java webservice stubs

2012-08-16 Thread Jen McVicker
...@gmail.com http://www.linkedin.com/in/jmcvicker -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Thursday, August 16, 2012 12:56 PM To: cf-talk Subject: Re: Need help with Java webservice stubs usually that error is because the stubs could not be created. ]re both

Re: Webservice returning CFC in a different directory

2012-08-02 Thread Les Schmidt
I know this post is over 8 years old, but it is the only one that was on point to a problem I was having. I now have a solution so am simply updating this in case others stumble upon the same situation. I'm on Coldfusion 9. My set up is exactly like the original poster's: webservices in a

bing route webservice from cf

2011-11-22 Thread Ras Tafari
big up. anyone have any experience hitting the bing routeRequest method from CF? thanks cf-ras ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Webservice not recognized

2011-09-07 Thread marc --
Hi, Abstract: When I make a call to a webservice in a development environment I get a response as expected. Funny thing is, if I make the exact same call to the same template on a different machine (the testing environment) it does not work. Elaboration: when I make a call in my development

Re: Webservice not recognized

2011-09-07 Thread Russ Michaels
...@marcbakker.com wrote: Hi, Abstract: When I make a call to a webservice in a development environment I get a response as expected. Funny thing is, if I make the exact same call to the same template on a different machine (the testing environment) it does not work. Elaboration: when I make

Re: Webservice not recognized

2011-09-07 Thread marc --
Solved! Turned out that all I needed was an Application.cfc in the same folder as the remote component. That Application extends the /Application.cfc and clears the implicit behaviors (onRequest() etc). Marc ~| Order the

A little help working with .NET webservice

2011-05-23 Thread Joshua O'Connor-Rose
I've got a web service that takes an object as a parameter updatedata(org.datacontract.schemas._2004._07.LMSService.UserDTO) generated from a .net webservice How in Coldfusion to I create the UserDTO object so I can call the updatedata webservice method? -Joshua O'Connor-Rose

Re: A little help working with .NET webservice

2011-05-23 Thread Joshua O'Connor-Rose
) generated from a .net webservice How in Coldfusion to I create the UserDTO object so I can call the updatedata webservice method? -Joshua O'Connor-Rose ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe

Re: A little help working with .NET webservice

2011-05-23 Thread Tony Weeg
:02 PM, Joshua O'Connor-Rose joshua.oconnorr...@gmail.com wrote: I've got a web service that takes an object as a parameter updatedata(org.datacontract.schemas._2004._07.LMSService.UserDTO) generated from a .net webservice How in Coldfusion to I create the UserDTO object so I can call

CF 9, WebService, arrays, and objects

2011-05-05 Thread Douglas Knudsen
So, I have this method setup remote com.foo.StateDTO[] function getAllStates() {} 1) if I invoke via web browser via http://myurl/myservice.cfc?wsdlmethod=getAllStates it works a treat 2) if I use cfinvoke method=getAllStates webservice= http://myurl/myservice.cfc?wsdl; I get the below

CF error with .Net webservice

2011-03-30 Thread Tony
; } thats the only method. when the method looks like above i get back what i expect. when it returns a number, no problem. when he makes the same thing return a character (not a number) it bombs cfscript ar = createObject(webservice, http://10.10.12.180/TonyTest/Service1.asmx?wsdl

Re: CF error with .Net webservice

2011-03-30 Thread John M Bliss
makes the same thing return a character (not a number) it bombs cfscript ar = createObject(webservice, http://10.10.12.180/TonyTest/Service1.asmx?wsdl;); inputter = structNew(); inputter.input1 = 50; inputter.input2 = 52; responsez = ar.AddWithObject(inputter

Re: CF error with .Net webservice

2011-03-30 Thread Ras Tafari
();            return s ;        } thats the only method.  when the method looks like above i get back what i expect. when it returns a number, no problem.  when he makes the same thing return a character (not a number) it bombs cfscript        ar = createObject(webservice, http://10.10.12.180

Re: CF error with .Net webservice

2011-03-30 Thread John M Bliss
ar = createObject(webservice, http://10.10.12.180/TonyTest/Service1.asmx?wsdl;); inputter = structNew(); inputter.input1 = 50; inputter.input2 = 52; responsez = ar.AddWithObject(inputter); /cfscript thats my cf code. anyone have any idea why? thanks

Re: CF error with .Net webservice

2011-03-30 Thread Tony
(not a number) it bombs cfscript        ar = createObject(webservice, http://10.10.12.180/TonyTest/Service1.asmx?wsdl;);        inputter = structNew();        inputter.input1 = 50;        inputter.input2 = 52;        responsez = ar.AddWithObject(inputter); /cfscript thats my cf code

Re: CF error with .Net webservice

2011-03-30 Thread Tony
fyi, this is the code im calling it with: cfscript ar = createObject(webservice, http://navtrak580.navtrakcorp.com/eBusinessSuiteWS/AR.asmx?wsdl;); inputter = structNew(); inputter.sUser = x; inputter.sPwd = x; inputter.sCompany = NT

Re: CF error with .Net webservice

2011-03-30 Thread John M Bliss
, this is the code im calling it with: cfscript ar = createObject(webservice, http://navtrak580.navtrakcorp.com/eBusinessSuiteWS/AR.asmx?wsdl;); inputter = structNew(); inputter.sUser = x; inputter.sPwd = x; inputter.sCompany = NT

Re: CF error with .Net webservice

2011-03-30 Thread Ras Tafari
= ar.AR_CustSearch(x, x, NT, Navtrak, , , , , , , , , , , , , , , , , , ); On Wed, Mar 30, 2011 at 2:33 PM, Tony tonyw...@gmail.com wrote: fyi, this is the code im calling it with: cfscript        ar = createObject(webservice, http://navtrak580.navtrakcorp.com/eBusinessSuiteWS

Re: CF error with .Net webservice

2011-03-30 Thread Tony
at 2:33 PM, Tony tonyw...@gmail.com wrote: fyi, this is the code im calling it with: cfscript        ar = createObject(webservice, http://navtrak580.navtrakcorp.com/eBusinessSuiteWS/AR.asmx?wsdl;);        inputter = structNew();        inputter.sUser = x;        inputter.sPwd = x

Re: CF error with .Net webservice

2011-03-30 Thread John M Bliss
= ar.AR_CustSearch(x, x, NT, Navtrak, , , , , , , , , , , , , , , , , , ); On Wed, Mar 30, 2011 at 2:33 PM, Tony tonyw...@gmail.com wrote: fyi, this is the code im calling it with: cfscript ar = createObject(webservice, http://navtrak580.navtrakcorp.com/eBusinessSuiteWS

Re: Application.applicaitonName not avialable in a webservice.

2011-03-12 Thread James Holmes
On 12 March 2011 06:51, Bobby Hartsfield bo...@acoderslife.com wrote: The problem I have run into is that application scope (and thus application.applicationName) is not available from within the webservice. Why not? Is the webservice CFC not part of the same directory structure that has your

RE: Application.applicaitonName not avialable in a webservice.

2011-03-12 Thread Bobby Hartsfield
Ahh! Thanks for jump starting my brain. It is indeed in the directory structure but it looks like someone stuck a rogue (empty) application.cfm in the model. Removing it fixes the issue but breaks other stuff. I'll just relocate the webservice (it shouldn't have been where it is anyway) Thanks

Application.applicaitonName not avialable in a webservice.

2011-03-11 Thread Bobby Hartsfield
it which, in effect, would log them out. It sounded simple enough, especially since I had done it many times. The problem I have run into is that application scope (and thus application.applicationName) is not available from within the webservice. I hardcoded the application name in the webservice

Odd webservice request... Result vs Return

2011-02-18 Thread Bobby Hartsfield
“myMethod”... all of the .NET WSDLs have something like the following. MyMethodResponse xmlns=”http://Integrations/” MyMethodResul … … … /MyMethodResult /MyMethodResponse The result from the CF webservice looks more like: ns1:MyMethodResponse

RE: Odd webservice request... Result vs Return

2011-02-18 Thread Bobby Hartsfield
. .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:bo...@acoderslife.com] Sent: Friday, February 18, 2011 9:20 AM To: cf-talk Subject: Odd webservice request... Result vs Return Hi all, This is a pretty odd request. I actually found

trying to consume webservice w/CF - http header problem

2011-02-14 Thread Caroline Wise
All, I'm trying to consume a document-literal webservice by posting a soap request with cfhttp but I keep getting an error that basically says X-Backside-Transport: FAIL FAIL Connection: close illegal character 'B' at offset 0 However, when I use soapUI to submit the exact same request

Re: trying to consume webservice w/CF - http header problem

2011-02-14 Thread Russ Michaels
a document-literal webservice by posting a soap request with cfhttp but I keep getting an error that basically says X-Backside-Transport: FAIL FAIL Connection: close illegal character 'B' at offset 0 However, when I use soapUI to submit the exact same request it works and I get a good response. So I

Re: trying to consume webservice w/CF - http header problem

2011-02-14 Thread Michael Grant
is sending and see if there is a problem. Russ On Mon, Feb 14, 2011 at 11:42 PM, Caroline Wise caracol...@gmail.com wrote: All, I'm trying to consume a document-literal webservice by posting a soap request with cfhttp but I keep getting an error that basically says X-Backside

Re: trying to consume webservice w/CF - http header problem

2011-02-14 Thread Caroline Wise
caracol...@gmail.com wrote: All, I'm trying to consume a document-literal webservice by posting a soap request with cfhttp but I keep getting an error that basically says X-Backside-Transport: FAIL FAIL Connection: close illegal character 'B' at offset 0 However

Re: trying to consume webservice w/CF - http header problem

2011-02-14 Thread Caroline Wise
: All, I'm trying to consume a document-literal webservice by posting a soap request with cfhttp but I keep getting an error that basically says X-Backside-Transport: FAIL FAIL Connection: close illegal character 'B' at offset 0 However, when I use soapUI to submit

Re: Webservice error after CF 8.01 update

2010-12-23 Thread Mack
Hi Mack, Just wondering if you filed this as a bug. Brook, It's bug 85391. -- Mack ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

RE: Webservice error after CF 8.01 update

2010-12-22 Thread Brook Davies
Hi Mack, Just wondering if you filed this as a bug. My webservice continually throws the duplicate class error message after running for some time. I have resorted now to running the following code every 1 hour to clear the template cache and hopefully avoid this error: !--- login --- cftry

Re: Webservice error after CF 8.01 update

2010-12-13 Thread Mack
Your getting a different error, which is actually the same one I get on my production server. However, I don't have to modify any filenames or ANY code to get this error. I think it happens when there is a cache pop in the template cache. That's my guess also and I think renaming the cfc

RE: Webservice error after CF 8.01 update

2010-12-12 Thread Brook Davies
before an error starts, thats why I think its related to the template cache.. Brook -Original Message- From: Mack [mailto:mrsmith.w...@gmail.com] Sent: December-11-10 10:05 AM To: cf-talk Subject: Re: Webservice error after CF 8.01 update Grrr I've pretty much exhausted all my

Re: Webservice error after CF 8.01 update

2010-12-11 Thread Mack
. create a file to test the web service : cfset ws = createObject(webservice, http://SERVER/wstest/ws.cfc?wsdl;).function1() 3. run the test file once. It should work properly. 4. rename wstest/result/function1Response.cfc (adding 1 at the end of the file works just fine) 5. run the test file

RE: Webservice error after CF 8.01 update

2010-12-10 Thread Brook Davies
An update on this: Since the problem came back, what I ended up doing was reverting to the lower case file names and references used previously and taking a copy of the WSDL generated prior to CF 8.01 and saving it as a standalone WSDL. Then in the webservice CFC, I added component wsdlfile

RE: Webservice error after CF 8.01 update

2010-12-10 Thread Brook Davies
://xml.apache.org/axis/}hostname:AWEB2 ''/pre Grrr I've pretty much exhausted all my options now, this is driving me batty.. Brook -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: December-10-10 11:50 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update

RE: Webservice error after CF 8.01 update

2010-12-09 Thread Brook Davies
error. Anyone else? I think this is a bug, since it only started happening on a webservice that has ran without error for 5 years - after the 8.01 update. coldfusion.xml.rpc.CFCInvocationException: [java.lang.ClassNotFoundException : components.bridge.Cp_startup][java.lang.LinkageError : loader

RE: Webservice error after CF 8.01 update

2010-12-09 Thread Brook Davies
to be cleared every x number of hours in an attempt to avoid this problem? At this point I think I might set up a task that runs every 5 mins, calls the webservice and if the result contains the duplicate class definition string/error, then programmatically clear the template cache ( createObject

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-05 Thread Carl Meyer
Wow very interesting and difficult problem. I am a bit late in reading this detail and have nothing to add over what others have covered. Curious is it fixed and what was to solution? Regards, Carl. Well, its 2am and I am still trying to figure this one out. I've reinstalled CF now about 5

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-05 Thread Carl Meyer
Just noticed the answer in other thread. Interesting solution Mack. Wow very interesting and difficult problem. I am a bit late in reading this detail and have nothing to add over what others have covered. Curious is it fixed and what was to solution? Regards, Carl.

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-04 Thread Mark A. Kruger
: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED] The initial webservice error did not go away after the msvcr71.dll was updated. It was unrelated. For the record, the errors starting happening on our webservice after the 8.01 upgrade and involved the complex return types. The error

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-04 Thread Bobby Hartsfield
, December 03, 2010 10:54 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED] The initial webservice error did not go away after the msvcr71.dll was updated. It was unrelated. For the record, the errors starting happening on our webservice after the 8.01

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-04 Thread Brook Davies
Changing the case of the actual template file names fixed it. Changing the references in the code did not. Brook -Original Message- From: Bobby Hartsfield [mailto:bo...@acoderslife.com] Sent: December-03-10 2:50 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-03 Thread Brook Davies
The initial webservice error did not go away after the msvcr71.dll was updated. It was unrelated. For the record, the errors starting happening on our webservice after the 8.01 upgrade and involved the complex return types. The error was: coldfusion.xml.rpc.CFCInvocationException

Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Mack
On Thu, Dec 2, 2010 at 12:36 AM, Mark A. Kruger mkru...@cfwebtools.com wrote: It's used by the installer - probably to register DLLs and add other stuff to the registry.  I've noticed that CF9 will check and install these libraries if it doesn't find them. ... but it seems like an awfully low

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Mark A. Kruger
-Original Message- From: Mack [mailto:mrsmith.w...@gmail.com] Sent: Thursday, December 02, 2010 5:42 AM To: cf-talk Subject: Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED] On Thu, Dec 2, 2010 at 12:36 AM, Mark A. Kruger mkru...@cfwebtools.com wrote: It's used

Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Mack
On Thu, Dec 2, 2010 at 3:47 PM, Mark A. Kruger mkru...@cfwebtools.com wrote: Mack, Thanks for that info so copying to the /bin directory does the trick?  I would think you would have to un register and re register nice to know. Mark, When loading a DLL Windows searches first in

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Brook Davies
Yeah, I wasn't sure if you need to copy it into the bin directory or just update the version in system32. Thanks again Mack. Brook ~| Order the Adobe Coldfusion Anthology now!

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Bobby Hartsfield
So did the initial webservice error go away as well? .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: Thursday, December 02, 2010 10:35 AM To: cf-talk Subject: RE: Webservice error after CF

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Brook Davies
Davies [mailto:cft...@logiforms.com] Sent: November-30-10 8:59 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll chkDsk says there are no bad blocks.. I'm doing a defrag aswell -Original Message

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Jochem van Dieten
On Wed, Dec 1, 2010 at 11:34 AM, Brook Davies wrote: If I open a command prompt and go to 'c:\coldfusion8\runtime\bin\' and run any of executables directly (like sniffer.exe or xmlscript.exe - I get the same error Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll. So does the dll

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Azadi Saryev
] Sent: November-30-10 8:59 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll chkDsk says there are no bad blocks.. I'm doing a defrag aswell -Original Message- From: Brook Davies

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Brook Davies
out to the console. Its bizarre right? Brook -Original Message- From: Jochem van Dieten [mailto:joch...@gmail.com] Sent: December-01-10 4:18 AM To: cf-talk Subject: Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Mark A. Kruger
AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Hi Jochem, The dll does exist where it is supposed to. Its 3,813,376 KB in size. I've reinstalled CF8 about 6 or 7 times now, to various locations

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Brook Davies
\jre\bin\ and run java -version and it reports '1.6.0_04' Everything is 32bit... Brook -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: December-01-10 6:53 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Mark A. Kruger
...@logiforms.com] Sent: Wednesday, December 01, 2010 9:09 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Nope, no compression Mark. The really strange thing is that everything was running fine, until

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Brook Davies
Yeah, a full reinstall to a new partition didn't work (G:\coldfusion8). Same error! -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: December-01-10 7:22 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Mark A. Kruger
[mailto:cft...@logiforms.com] Sent: Wednesday, December 01, 2010 9:39 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Yeah, a full reinstall to a new partition didn't work (G:\coldfusion8). Same error

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Brook Davies
, but updating this dll resolved the problem. Maybe Mack can comment further on the resolution. Thank you for everyones responses and suggestions!! Brook -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: December-01-10 8:20 AM To: cf-talk Subject: RE: Webservice error

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Mark A. Kruger
PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED] Hallelujah praise the lord. Thanks to Mack who was kind enough to take a look at my server, we're back in business. Turns out an older version of msvcr71.dll had somehow found its way onto the system

Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Russ Michaels
-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: Wednesday, December 01, 2010 1:40 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Mark A. Kruger
) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Wednesday, December 01, 2010 4:27 PM To: cf-talk Subject: Re: Webservice error after CF 8.01 update CF FAILS TO START

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Leigh
... but it seems like an awfully low level OS problem to be affecting a Java ap eh? I noticed the bug database does mention problems with java 1.6/msvcr71.dll and custom loaders http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6509291

Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Dave Watts
that is certainly odd, that is the microsoft visual c runtime file, how would it affect ColdFusion which runs on Java ? The JVM itself is loaded as a native DLL - jvm.dll. Java requires a native bootstrap to run in the first place. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

RE: Webservice error after CF 8.01 update

2010-11-30 Thread Brook Davies
/bridge/Cp_registerquot;] faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/}hostname:YOURMAMA2 ''/pre Brook -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: November-24-10 4:49 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update Just

Re: Webservice error after CF 8.01 update

2010-11-30 Thread Russ Michaels
/}hostname:YOURMAMA2http://xml.apache.org/axis/%7Dhostname:YOURMAMA2 ''/pre Brook -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: November-24-10 4:49 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update Just an update on this. Clearing

RE: Webservice error after CF 8.01 update

2010-11-30 Thread Brook Davies
I've installed cumulative hot fix 4... -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: November-30-10 4:07 PM To: cf-talk Subject: Re: Webservice error after CF 8.01 update have you applied all the updates and hotfixes for 8,0,1 On Tue, Nov 30, 2010 at 11

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
: Webservice error after CF 8.01 update I've installed cumulative hot fix 4... -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: November-30-10 4:07 PM To: cf-talk Subject: Re: Webservice error after CF 8.01 update have you applied all the updates and hotfixes for 8,0,1

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
] Sent: Tuesday, November 30, 2010 7:53 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll I deleted all the class files clicked 'clear template cache now' in the cfadmin. The CF server hung so I rebooted

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
...@cfwebtools.com] Sent: November-30-10 6:05 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll What's the path look like in the JVM.config file? Paste the top part of the file for us :) Mark A. Kruger, MCSE, CFG

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: Tuesday, November 30, 2010 8:19 PMsee a To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Its plain jane: # # VM configuration # # Where

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
this before.. I don't know where else to look... but for the windows 2003 install CD... which I hope I don't need to do... Brook -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: November-30-10 6:27 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
-Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: Tuesday, November 30, 2010 8:34 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Yeah, its really weird. I've tried a couple

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
, 2010 8:34 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Yeah, its really weird. I've tried a couple different JVM's now and I get the same error every time. The coldfusion-out.log, the only log

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Wil Genovese
] Sent: November-30-10 6:27 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Looks default to me Brook... what's in your /runtime/logs/*-out.log (cfusion-out.log usually). Is that were you got

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Dave Watts
I deleted all the class files clicked 'clear template cache now' in the cfadmin. The CF server hung so I rebooted only to find that CF 8.01 would no longer start. The only thing in the log Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll. I tried a different JVM and checked to

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
run java - version from a command prompt and get a result. Java appears to be installed and functional... Brook -Original Message- From: Wil Genovese [mailto:jugg...@trunkful.com] Sent: November-30-10 7:31 PM To: cf-talk Subject: Re: Webservice error after CF 8.01 update CF FAILS TO START

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Dave Watts
I've never seen anything like this before. I don't know what it could be. I think I'm gonna have to do a complete re-install of the OS. Cause I have no idea. BTW, I can run java - version from a command prompt and get a result. Java appears to be installed and functional... Running java

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll I deleted all the class files clicked 'clear template cache now' in the cfadmin. The CF server hung so I rebooted only to find that CF 8.01 would no longer start. The only thing

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
? I'll try anything! Brook -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: November-30-10 8:01 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Oooh... .good

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
. But I have tried setting this to the version that ships with CF and that doesn't work either... Brook -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: November-30-10 7:49 PM To: cf-talk Subject: Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: Tuesday, November 30, 2010 10:08 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Dave Watts
I have tried running CF as the administrator account and I get the same error (thats the account I am logged in as). The JAVA path environment variable is actually pointing to the JVM I just installed on a separate drive to see if that would work over the JVM included with CF. Its 1.6.0_21.

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Dave Watts
Brook ok, maybe your CF files are corrupt or in a bad spot on the disk...Can you run a chkdsk? Or maybe even a defrag would relocate the files in a way that would repair them (works occasionally). I'd be interested to know if just a regular check disk shows any errors. The duplicate class

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
Davies [mailto:cft...@logiforms.com] Sent: Tuesday, November 30, 2010 8:19 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Its plain jane: # # VM configuration # # Where to find JVM, if {java.home}/jre

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Can I see the rest of your JVM.config file? Also... have you tried commenting it out? Perhaps you have a JAVA_HOME set. Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
: November-30-10 8:27 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Can I see the rest of your JVM.config file? Also... have you tried commenting it out? Perhaps you have a JAVA_HOME set. Mark

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: November-30-10 8:23 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Brook ok, maybe your CF files are corrupt or in a bad spot on the disk

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
chkDsk says there are no bad blocks.. I'm doing a defrag aswell -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: November-30-10 8:52 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime

Webservice error after CF 8.01 update

2010-11-24 Thread Brook Davies
Hello, We recently updated to CF 8.01. Now we're getting this intermittent error on a webservice call that seems to be related to the custom return type: ?xml version=1.0 encoding=UTF-8?soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; xmlns:xsd=http://www.w3.org

RE: Webservice error after CF 8.01 update

2010-11-24 Thread Brook Davies
(although I thought I had cleared all class files during the upgrade. Brook -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: November-24-10 11:57 AM To: cf-talk Subject: Webservice error after CF 8.01 update Hello, We recently updated to CF 8.01. Now we're

Trying to create a Webservice for SAP Client

2010-11-02 Thread Matthew Friedman
I somewhat new to webservices (ie creating them) not consuming them... We need to create a webservice for an SAP intergrtaion that will send us an XML file and we will return an a packet of information that will tell them if it is success and provide a url to open a new window or some error

Re: Trying to create a Webservice for SAP Client [spamtrap bayes][spamtrap heur]

2010-11-02 Thread andy
them) not consuming them... We need to create a webservice for an SAP intergrtaion that will send us an XML file and we will return an a packet of information that will tell them if it is success and provide a url to open a new window or some error code on why it failed. I created

  1   2   3   4   5   6   7   8   9   >