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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340249
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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
cfinvoke 
component=cfide.adminapi.administrator 
method=login
adminPassword=
adminUsername=admin
cflog file=wsCACHE text=Log in successful
cfcatch
cflog file=wsCACHE text=Error logging in to CFADMIN.
#cfcatch.message#
cfabort
/cfcatch
/cftry


!--- release templates from template cache ---
cfset filepath = 'C:\Inetpub\wwwroot\www.yourmamassofat.com\cmp\bridge\'
cfset tpllist = ''
cfset tpllist = listAppend(tpllist, filepath  'cp_startup.cfc')
cfset tpllist = listAppend(tpllist, filepath  'cp_register.cfc')
cfset tpllist = listAppend(tpllist, filepath  'cp_createTask.cfc')
cfset tpllist = listAppend(tpllist, filepath  'cp_deleteTask.cfc')
cfset tpllist = listAppend(tpllist, filepath  'cp_getFieldList.cfc')
cfset tpllist = listAppend(tpllist, filepath 
'cp_getFieldListandfilters.cfc')
cfset tpllist = listAppend(tpllist, filepath  'cp_uninstallBridge.cfc')
cfset tpllist = listAppend(tpllist, filepath  'cp_updateTask.cfc')
cfset tpllist = listAppend(tpllist, filepath  'bridge.cfc')

cftry
cfinvoke 
component=cfide.adminapi.runtime 
method=clearTrustedCache 
templateList=#tpllist#
!--- log failure clearing template cache ---
cfcatch
cflog file=wsCACHE text=Errror clearing template cache
via adminAPI. #cfcatch.message#
/cfcatch
/cftry

!--- log success ---
cflog file=wsCACHE text=Template Cache cleared

!--- logout ---
cftry
cfinvoke 
component=cfide.adminapi.administrator 
method=logout
adminPassword=
adminUsername=admin
templateList=#tpllist#
cfcatch
cflog file=wsCACHE text=Error logging out of CFADMIN
/cfcatch
/cftry


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 options now, this is driving me
 batty..

Brook,

I think this is a bug in CF. I've made a small testcase on which I can
reproduce the error all the time:
http://dl.dropbox.com/u/15688335/wstest.zip

1. Put the files in a wstest folder in your root.
2. 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. It should complain about function1Response.cfc
not being found.
6. rename the cfc back to function1Response.cfc
7. run the test file. On my server (9.0.1) it alternates between
'java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: wstest/result/Function1Response' and
'java.lang.ClassNotFoundException :
wstest.result.Function1Response][java.lang.NullPointerException :
null'

The error is cleared temporarily by:
- changing ws.cfc (adding spaces at the start for example);
- using the clearTrustedCache function like in your code.

If you can duplicate the error I will log this as a bug with Adobe.

-- 
Mack



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340212
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 does a cache pop so
the bug can be duplicated quickly.

-- 
Mack

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340026
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Webservice error after CF 8.01 update

2010-12-12 Thread Brook Davies

Hi Mack,

On CF 8.01 I get this error when following the steps:

[coldfusion.runtime.UDFMethod$InvalidReturnTypeException : The value
returned from the function1 function is not of type
wstest.result.function1Response.]

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. Because it works for a while, some times a day or so, and
then stops. If I increase the template cache size it seems to work for
longer 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 options now, this is driving me
 batty..

Brook,

I think this is a bug in CF. I've made a small testcase on which I can
reproduce the error all the time:
http://dl.dropbox.com/u/15688335/wstest.zip

1. Put the files in a wstest folder in your root.
2. 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. It should complain about function1Response.cfc
not being found.
6. rename the cfc back to function1Response.cfc
7. run the test file. On my server (9.0.1) it alternates between
'java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: wstest/result/Function1Response' and
'java.lang.ClassNotFoundException :
wstest.result.Function1Response][java.lang.NullPointerException :
null'

The error is cleared temporarily by:
- changing ws.cfc (adding spaces at the start for example);
- using the clearTrustedCache function like in your code.

If you can duplicate the error I will log this as a bug with Adobe.

-- 
Mack



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340025
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Webservice error after CF 8.01 update

2010-12-11 Thread Mack

 Grrr I've pretty much exhausted all my options now, this is driving me
 batty..

Brook,

I think this is a bug in CF. I've made a small testcase on which I can
reproduce the error all the time:
http://dl.dropbox.com/u/15688335/wstest.zip

1. Put the files in a wstest folder in your root.
2. 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. It should complain about function1Response.cfc
not being found.
6. rename the cfc back to function1Response.cfc
7. run the test file. On my server (9.0.1) it alternates between
'java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: wstest/result/Function1Response' and
'java.lang.ClassNotFoundException :
wstest.result.Function1Response][java.lang.NullPointerException :
null'

The error is cleared temporarily by:
- changing ws.cfc (adding spaces at the start for example);
- using the clearTrustedCache function like in your code.

If you can duplicate the error I will log this as a bug with Adobe.

-- 
Mack

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340010
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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=myOriginal.wsdl, so
that it would use my original 'static' WSDL. So far this is working, it
remains to be seen if the problem will rear its ugly head again. If it does,
I'm sure it will happen at 3am Sunday morning ;)

Brook

-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: December-09-10 10:07 AM
To: cf-talk
Subject: RE: Webservice error after CF 8.01 update


Just to put this out there, the problem with the duplicate class definition
error is back again. It ran fine for days and all of a sudden reared its
ugly head out of the blue. No server restart, nothing. I don't want caused
it to start happening again. 

Bobby mentioned he was having the same 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 (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

My customers are up in arms, but we don't have a good solution for this

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 TO START!
[FIXED]


That is exactly what we have pushed to production today to attempt to
resolve this (which is the only place it happens). The WSDL always title
cases the name. I read that displayName would override the case but it
didn't seem to work. Finally we just gave in and changed all references to
it to match the WSDL.

I guess time will tell if it resolved the issue. It gives me hope that it
seems to have resolved your problem.

Thanks 
 
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: Friday, 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 upgrade and involved the complex return types.
The error was:

coldfusion.xml.rpc.CFCInvocationException: [java.lang.ClassNotFoundException
: components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

The error would go away after a restart and clearing out all of the
generated class files. But it would then start happening again out of the
blue.

I first tried making sure that the references to the returntypes in the code
were all the same case. This did not resolve it. Finally I renamed all of
the complex return type definitions to begin with an upper case C (from
'cp_startup.cfc' to 'Cp_startup.cfc'). After rebooting and clearing the
cache the problem seems to have been resolved.

Brook


-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com] 
Sent: December-02-10 2:27 PM
To: cf-talk
Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START!
[FIXED]


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 8.01 update CF FAILS TO START!
[FIXED]


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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339998
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Webservice error after CF 8.01 update

2010-12-10 Thread Brook Davies

Well, I didn't have to wait til 3am Sunday morning. I'm getting this error
again...

The fault returned when invoking the web service operation is:br
preAxisFault faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
[java.lang.ClassNotFoundException :
components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
definition for name: quot;components/bridge/Cp_startupquot;] faultActor:
faultNode: faultDetail: {http://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


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=myOriginal.wsdl, so
that it would use my original 'static' WSDL. So far this is working, it
remains to be seen if the problem will rear its ugly head again. If it does,
I'm sure it will happen at 3am Sunday morning ;)

Brook

-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: December-09-10 10:07 AM
To: cf-talk
Subject: RE: Webservice error after CF 8.01 update


Just to put this out there, the problem with the duplicate class definition
error is back again. It ran fine for days and all of a sudden reared its
ugly head out of the blue. No server restart, nothing. I don't want caused
it to start happening again. 

Bobby mentioned he was having the same 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 (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

My customers are up in arms, but we don't have a good solution for this

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 TO START!
[FIXED]


That is exactly what we have pushed to production today to attempt to
resolve this (which is the only place it happens). The WSDL always title
cases the name. I read that displayName would override the case but it
didn't seem to work. Finally we just gave in and changed all references to
it to match the WSDL.

I guess time will tell if it resolved the issue. It gives me hope that it
seems to have resolved your problem.

Thanks 
 
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: Friday, 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 upgrade and involved the complex return types.
The error was:

coldfusion.xml.rpc.CFCInvocationException: [java.lang.ClassNotFoundException
: components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

The error would go away after a restart and clearing out all of the
generated class files. But it would then start happening again out of the
blue.

I first tried making sure that the references to the returntypes in the code
were all the same case. This did not resolve it. Finally I renamed all of
the complex return type definitions to begin with an upper case C (from
'cp_startup.cfc' to 'Cp_startup.cfc'). After rebooting and clearing the
cache the problem seems to have been resolved.

Brook


-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com] 
Sent: December-02-10 2:27 PM
To: cf-talk
Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START!
[FIXED]


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 8.01 update CF FAILS TO START!
[FIXED]


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

RE: Webservice error after CF 8.01 update

2010-12-09 Thread Brook Davies

Just to put this out there, the problem with the duplicate class definition
error is back again. It ran fine for days and all of a sudden reared its
ugly head out of the blue. No server restart, nothing. I don't want caused
it to start happening again. 

Bobby mentioned he was having the same 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 (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

My customers are up in arms, but we don't have a good solution for this

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 TO START!
[FIXED]


That is exactly what we have pushed to production today to attempt to
resolve this (which is the only place it happens). The WSDL always title
cases the name. I read that displayName would override the case but it
didn't seem to work. Finally we just gave in and changed all references to
it to match the WSDL.

I guess time will tell if it resolved the issue. It gives me hope that it
seems to have resolved your problem.

Thanks 
 
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: Friday, 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 upgrade and involved the complex return types.
The error was:

coldfusion.xml.rpc.CFCInvocationException: [java.lang.ClassNotFoundException
: components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

The error would go away after a restart and clearing out all of the
generated class files. But it would then start happening again out of the
blue.

I first tried making sure that the references to the returntypes in the code
were all the same case. This did not resolve it. Finally I renamed all of
the complex return type definitions to begin with an upper case C (from
'cp_startup.cfc' to 'Cp_startup.cfc'). After rebooting and clearing the
cache the problem seems to have been resolved.

Brook


-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com] 
Sent: December-02-10 2:27 PM
To: cf-talk
Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START!
[FIXED]


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 8.01 update CF FAILS TO START!
[FIXED]


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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339938
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Webservice error after CF 8.01 update

2010-12-09 Thread Brook Davies

I should mention, that clearing the template cache (via the cfadmin) appears
to resolve the problem. Note, I also manually deleted the cfclasses/ and
cfc-skeleton/ files before clicking 'clear template cache'. Not sure if I
*needed* that step.  So what, should I schedule the template cache 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(component,cfide.adminapi.administrator).login(ohnoyoudont
);
createObject(component,cfide.adminapi.runtime).clearTrustedCache();

*Would this even work to clear the template cache???*

). Its hella ugly, but its hack/patch..

Brook




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339940
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 times, I get the same error (with zero details!) everytime.
I've tried installing to a new partition - same error. I've logged on with a
new admin account and installed from there, same error. I've tried multiple
JVMs, same thing.

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.

Theres nothing in any logs. I don't know what else to do. How can I get a
more detailed error message or insight into what is happening?

Could this permissions related? I've tried giving 'everyone' full access to
the CF directory. Running the service under an admin account - all with no
luck...

Brook


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339792
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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.
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339793
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

2010-12-04 Thread Mark A. Kruger

Is this a .NET service?

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com



-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: Friday, December 03, 2010 9: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 upgrade and involved the complex return types.
The error was:

coldfusion.xml.rpc.CFCInvocationException: [java.lang.ClassNotFoundException
: components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

The error would go away after a restart and clearing out all of the
generated class files. But it would then start happening again out of the
blue.

I first tried making sure that the references to the returntypes in the code
were all the same case. This did not resolve it. Finally I renamed all of
the complex return type definitions to begin with an upper case C (from
'cp_startup.cfc' to 'Cp_startup.cfc'). After rebooting and clearing the
cache the problem seems to have been resolved.

Brook


-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com] 
Sent: December-02-10 2:27 PM
To: cf-talk
Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START!
[FIXED]


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 8.01 update CF FAILS TO START!
[FIXED]


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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339771
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

2010-12-04 Thread Bobby Hartsfield

That is exactly what we have pushed to production today to attempt to
resolve this (which is the only place it happens). The WSDL always title
cases the name. I read that displayName would override the case but it
didn't seem to work. Finally we just gave in and changed all references to
it to match the WSDL.

I guess time will tell if it resolved the issue. It gives me hope that it
seems to have resolved your problem.

Thanks 
 
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: Friday, 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 upgrade and involved the complex return types.
The error was:

coldfusion.xml.rpc.CFCInvocationException: [java.lang.ClassNotFoundException
: components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

The error would go away after a restart and clearing out all of the
generated class files. But it would then start happening again out of the
blue.

I first tried making sure that the references to the returntypes in the code
were all the same case. This did not resolve it. Finally I renamed all of
the complex return type definitions to begin with an upper case C (from
'cp_startup.cfc' to 'Cp_startup.cfc'). After rebooting and clearing the
cache the problem seems to have been resolved.

Brook


-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com] 
Sent: December-02-10 2:27 PM
To: cf-talk
Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START!
[FIXED]


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 8.01 update CF FAILS TO START!
[FIXED]


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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339777
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 TO START!
[FIXED]


That is exactly what we have pushed to production today to attempt to
resolve this (which is the only place it happens). The WSDL always title
cases the name. I read that displayName would override the case but it
didn't seem to work. Finally we just gave in and changed all references to
it to match the WSDL.

I guess time will tell if it resolved the issue. It gives me hope that it
seems to have resolved your problem.

Thanks 
 
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: Friday, 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 upgrade and involved the complex return types.
The error was:

coldfusion.xml.rpc.CFCInvocationException: [java.lang.ClassNotFoundException
: components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

The error would go away after a restart and clearing out all of the
generated class files. But it would then start happening again out of the
blue.

I first tried making sure that the references to the returntypes in the code
were all the same case. This did not resolve it. Finally I renamed all of
the complex return type definitions to begin with an upper case C (from
'cp_startup.cfc' to 'Cp_startup.cfc'). After rebooting and clearing the
cache the problem seems to have been resolved.

Brook


-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com] 
Sent: December-02-10 2:27 PM
To: cf-talk
Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START!
[FIXED]


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 8.01 update CF FAILS TO START!
[FIXED]


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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339788
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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: [java.lang.ClassNotFoundException
: components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: components/bridge/Cp_startup]

The error would go away after a restart and clearing out all of the
generated class files. But it would then start happening again out of the
blue.

I first tried making sure that the references to the returntypes in the code
were all the same case. This did not resolve it. Finally I renamed all of
the complex return type definitions to begin with an upper case C (from
'cp_startup.cfc' to 'Cp_startup.cfc'). After rebooting and clearing the
cache the problem seems to have been resolved.

Brook


-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com] 
Sent: December-02-10 2:27 PM
To: cf-talk
Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START!
[FIXED]


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 8.01 update CF FAILS TO START!
[FIXED]


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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339735
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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
 level OS problem to be affecting a Java ap eh?

Dave is correct here, jvm.dll has a dependency on msvcr71.dll. In this
case jrun.exe would terminate immediately after msvcr71.dll was loaded
and write an error to the log file about not being able to load
jvm.dll. The fix was to copy a newer version of msvcr71.dll to
runtime\bin so CF used that and leave the older dll in system32.

-- 
Mack

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339715
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

2010-12-02 Thread Mark A. Kruger

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

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com



-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 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
 level OS problem to be affecting a Java ap eh?

Dave is correct here, jvm.dll has a dependency on msvcr71.dll. In this
case jrun.exe would terminate immediately after msvcr71.dll was loaded
and write an error to the log file about not being able to load
jvm.dll. The fix was to copy a newer version of msvcr71.dll to
runtime\bin so CF used that and leave the older dll in system32.

-- 
Mack



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339717
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 the current directory
and then in the system directories I think.

-- 
Mack

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339718
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339719
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 8.01 update CF FAILS TO START!
[FIXED]


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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339726
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

Well, its 2am and I am still trying to figure this one out. I've reinstalled
CF now about 5 times, I get the same error (with zero details!) everytime.
I've tried installing to a new partition - same error. I've logged on with a
new admin account and installed from there, same error. I've tried multiple
JVMs, same thing.

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.

Theres nothing in any logs. I don't know what else to do. How can I get a
more detailed error message or insight into what is happening?

Could this permissions related? I've tried giving 'everyone' full access to
the CF directory. Running the service under an admin account - all with no
luck...

Brook



-Original Message-
From: Brook 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-
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/jre\bin\server\jvm.dll


No I/O errors in the logs. The duplicate class file issue also happened on
two servers (after the 8.01 update) so I don't think thats I/O related. I am
leaning that way aswell though, since this is just a bit to bizarre...

I'll run chkdsk and report back..

Brook






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339673
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 exist on the filesystem? What is the md5 and file size
of the dll? Do you have some sort of antivirus with on-access scans
installed on the system?


 Theres nothing in any logs. I don't know what else to do. How can I get a
 more detailed error message or insight into what is happening?

How are you starting CF? Have you tried bypassing the service and just
starting it from the command line with jrun.exe -start cfusion? What
is the output from the command set?

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339675
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

when you tried other JVMs, where did you install them?
try installing one into C:\Java or some such directory - not into CF8's 
jre folder and not into Program Files - and changing your java.home in 
jvm.config to point to the new jre location.

(make sure you download and install the JDK, not just JRE - jdk includes 
the /server directory; jre only has /client)

and, as has been suggested already, triple-check that all the parts (OS, 
CF and JVM) run in same bit mode (all 32-bit or all 64-bit)

Azadi

On 01/12/2010 18:34 , Brook Davies wrote:
 Well, its 2am and I am still trying to figure this one out. I've reinstalled
 CF now about 5 times, I get the same error (with zero details!) everytime.
 I've tried installing to a new partition - same error. I've logged on with a
 new admin account and installed from there, same error. I've tried multiple
 JVMs, same thing.

 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.

 Theres nothing in any logs. I don't know what else to do. How can I get a
 more detailed error message or insight into what is happening?

 Could this permissions related? I've tried giving 'everyone' full access to
 the CF directory. Running the service under an admin account - all with no
 luck...

 Brook



 -Original Message-
 From: Brook 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-
 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/jre\bin\server\jvm.dll


 No I/O errors in the logs. The duplicate class file issue also happened on
 two servers (after the 8.01 update) so I don't think thats I/O related. I am
 leaning that way aswell though, since this is just a bit to bizarre...

 I'll run chkdsk and report back..

 Brook






 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339676
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

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 always with the
exact same error. The dll is virus free.

I've tried starting CF directly and I get the exact same error and that
error alone printed 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


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 exist on the filesystem? What is the md5 and file size
of the dll? Do you have some sort of antivirus with on-access scans
installed on the system?


 Theres nothing in any logs. I don't know what else to do. How can I get a
 more detailed error message or insight into what is happening?

How are you starting CF? Have you tried bypassing the service and just
starting it from the command line with jrun.exe -start cfusion? What
is the output from the command set?

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339677
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

Brook,

Any compression on the file system?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-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 8:46 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 always with the
exact same error. The dll is virus free.

I've tried starting CF directly and I get the exact same error and that
error alone printed 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


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 exist on the filesystem? What is the md5 and file size
of the dll? Do you have some sort of antivirus with on-access scans
installed on the system?


 Theres nothing in any logs. I don't know what else to do. How can I get a
 more detailed error message or insight into what is happening?

How are you starting CF? Have you tried bypassing the service and just
starting it from the command line with jrun.exe -start cfusion? What
is the output from the command set?

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339678
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

Nope, no compression Mark. The really strange thing is that everything was
running fine, until that class file issue. And after deleting the cf
generated class files and then clicking 'clear template cache' in the
cfadmin, upon rebooting this mysterious error has been all I have been able
to get when trying to run CF...

I have the keyTool GUI program on this server and it has a dump of all the
Java paths and configurations - they match exactly our other web server that
is running CF8 with the exact same config just fine.

Also, I can open a command prompt and go to c:\coldfusion8\runtime\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: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

Any compression on the file system?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-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 8:46 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 always with the
exact same error. The dll is virus free.

I've tried starting CF directly and I get the exact same error and that
error alone printed 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


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 exist on the filesystem? What is the md5 and file size
of the dll? Do you have some sort of antivirus with on-access scans
installed on the system?


 Theres nothing in any logs. I don't know what else to do. How can I get a
 more detailed error message or insight into what is happening?

How are you starting CF? Have you tried bypassing the service and just
starting it from the command line with jrun.exe -start cfusion? What
is the output from the command set?

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/







~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339679
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

Brook,

And a full reinstall to a different directory (c:\coldfusion8_new or
something) didn't work?

Mark A. Kruger, MCSE, CFG
(402) 408-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 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 that class file issue. And after deleting the cf
generated class files and then clicking 'clear template cache' in the
cfadmin, upon rebooting this mysterious error has been all I have been able
to get when trying to run CF...

I have the keyTool GUI program on this server and it has a dump of all the
Java paths and configurations - they match exactly our other web server that
is running CF8 with the exact same config just fine.

Also, I can open a command prompt and go to c:\coldfusion8\runtime\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: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

Any compression on the file system?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-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 8:46 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 always with the
exact same error. The dll is virus free.

I've tried starting CF directly and I get the exact same error and that
error alone printed 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


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 exist on the filesystem? What is the md5 and file size
of the dll? Do you have some sort of antivirus with on-access scans
installed on the system?


 Theres nothing in any logs. I don't know what else to do. How can I get a
 more detailed error message or insight into what is happening?

How are you starting CF? Have you tried bypassing the service and just
starting it from the command line with jrun.exe -start cfusion? What
is the output from the command set?

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/









~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339680
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

And a full reinstall to a different directory (c:\coldfusion8_new or
something) didn't work?

Mark A. Kruger, MCSE, CFG
(402) 408-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 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 that class file issue. And after deleting the cf
generated class files and then clicking 'clear template cache' in the
cfadmin, upon rebooting this mysterious error has been all I have been able
to get when trying to run CF...

I have the keyTool GUI program on this server and it has a dump of all the
Java paths and configurations - they match exactly our other web server that
is running CF8 with the exact same config just fine.

Also, I can open a command prompt and go to c:\coldfusion8\runtime\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: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

Any compression on the file system?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-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 8:46 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 always with the
exact same error. The dll is virus free.

I've tried starting CF directly and I get the exact same error and that
error alone printed 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


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 exist on the filesystem? What is the md5 and file size
of the dll? Do you have some sort of antivirus with on-access scans
installed on the system?


 Theres nothing in any logs. I don't know what else to do. How can I get a
 more detailed error message or insight into what is happening?

How are you starting CF? Have you tried bypassing the service and just
starting it from the command line with jrun.exe -start cfusion? What
is the output from the command set?

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/











~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339681
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

Brook,

Tell me everything about the OS - ignoring any information about JVM's etc.
What exact version of windows are you running? Is it a VPS? Is it on a
domain? What are the environmental variables? Is your login as an admin?
What is the service pack level gotta be something else going on outside
of CF at this point - don't you think?

What was your process for uninstalling CF? For reinstalling?

-Mark

Mark A. Kruger, MCSE, CFG
(402) 408-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 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!

-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:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

And a full reinstall to a different directory (c:\coldfusion8_new or
something) didn't work?

Mark A. Kruger, MCSE, CFG
(402) 408-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 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 that class file issue. And after deleting the cf
generated class files and then clicking 'clear template cache' in the
cfadmin, upon rebooting this mysterious error has been all I have been able
to get when trying to run CF...

I have the keyTool GUI program on this server and it has a dump of all the
Java paths and configurations - they match exactly our other web server that
is running CF8 with the exact same config just fine.

Also, I can open a command prompt and go to c:\coldfusion8\runtime\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: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

Any compression on the file system?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-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 8:46 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 always with the
exact same error. The dll is virus free.

I've tried starting CF directly and I get the exact same error and that
error alone printed 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


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 exist on the filesystem? What is the md5 and file size
of the dll? Do you have some sort of antivirus with on-access scans
installed on the system?


 Theres nothing in any logs. I don't know what else to do. How can I get a
 more detailed error message or insight into what is happening?

How are you starting CF? Have you tried bypassing the service and just
starting it from the command line with jrun.exe -start cfusion? What
is the output from the command set?

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/













~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339683
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

2010-12-01 Thread Brook Davies

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 and was causing all of
the problems. 

I don't know why it just started all of sudden, 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 after CF 8.01 update CF FAILS TO START! Error
loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

Tell me everything about the OS - ignoring any information about JVM's etc.
What exact version of windows are you running? Is it a VPS? Is it on a
domain? What are the environmental variables? Is your login as an admin?
What is the service pack level gotta be something else going on outside
of CF at this point - don't you think?

What was your process for uninstalling CF? For reinstalling?

-Mark

Mark A. Kruger, MCSE, CFG
(402) 408-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 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!

-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:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

And a full reinstall to a different directory (c:\coldfusion8_new or
something) didn't work?

Mark A. Kruger, MCSE, CFG
(402) 408-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 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 that class file issue. And after deleting the cf
generated class files and then clicking 'clear template cache' in the
cfadmin, upon rebooting this mysterious error has been all I have been able
to get when trying to run CF...

I have the keyTool GUI program on this server and it has a dump of all the
Java paths and configurations - they match exactly our other web server that
is running CF8 with the exact same config just fine.

Also, I can open a command prompt and go to c:\coldfusion8\runtime\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: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

Any compression on the file system?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-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 8:46 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 always with the
exact same error. The dll is virus free.

I've tried starting CF directly and I get the exact same error and that
error alone printed 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


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 exist on the filesystem? What is the md5 and file size
of the dll? Do you have some sort of antivirus with on-access scans
installed on the system?


 Theres nothing in any logs. I don't know what else to do. How can I get a
 more detailed error message or insight into what is happening?

How are you starting CF? Have you tried bypassing the service and just
starting

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

2010-12-01 Thread Mark A. Kruger

Wow... now that's obscure gotta blog that one.

Mark A. Kruger, MCSE, CFG
(402) 408-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!
[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 and was causing all of
the problems. 

I don't know why it just started all of sudden, 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 after CF 8.01 update CF FAILS TO START! Error
loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

Tell me everything about the OS - ignoring any information about JVM's etc.
What exact version of windows are you running? Is it a VPS? Is it on a
domain? What are the environmental variables? Is your login as an admin?
What is the service pack level gotta be something else going on outside
of CF at this point - don't you think?

What was your process for uninstalling CF? For reinstalling?

-Mark

Mark A. Kruger, MCSE, CFG
(402) 408-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 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!

-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:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

And a full reinstall to a different directory (c:\coldfusion8_new or
something) didn't work?

Mark A. Kruger, MCSE, CFG
(402) 408-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 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 that class file issue. And after deleting the cf
generated class files and then clicking 'clear template cache' in the
cfadmin, upon rebooting this mysterious error has been all I have been able
to get when trying to run CF...

I have the keyTool GUI program on this server and it has a dump of all the
Java paths and configurations - they match exactly our other web server that
is running CF8 with the exact same config just fine.

Also, I can open a command prompt and go to c:\coldfusion8\runtime\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: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Brook,

Any compression on the file system?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-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 8:46 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 always with the
exact same error. The dll is virus free.

I've tried starting CF directly and I get the exact same error and that
error alone printed 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


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

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

2010-12-01 Thread Russ Michaels

that is certainly odd, that is the microsoft visual c runtime file, how
would it affect ColdFusion which runs on Java ?

Russ

On Wed, Dec 1, 2010 at 10:15 PM, Mark A. Kruger mkru...@cfwebtools.comwrote:


 Wow... now that's obscure gotta blog that one.

 Mark A. Kruger, MCSE, CFG
 (402) 408-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!
 [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 and was causing all
 of
 the problems.

 I don't know why it just started all of sudden, 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 after CF 8.01 update CF FAILS TO START! Error
 loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


 Brook,

 Tell me everything about the OS - ignoring any information about JVM's etc.
 What exact version of windows are you running? Is it a VPS? Is it on a
 domain? What are the environmental variables? Is your login as an admin?
 What is the service pack level gotta be something else going on outside
 of CF at this point - don't you think?

 What was your process for uninstalling CF? For reinstalling?

 -Mark

 Mark A. Kruger, MCSE, CFG
 (402) 408-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 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!

 -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:/ColdFusion8/runtime/jre\bin\server\jvm.dll


 Brook,

 And a full reinstall to a different directory (c:\coldfusion8_new or
 something) didn't work?

 Mark A. Kruger, MCSE, CFG
 (402) 408-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 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 that class file issue. And after deleting the cf
 generated class files and then clicking 'clear template cache' in the
 cfadmin, upon rebooting this mysterious error has been all I have been able
 to get when trying to run CF...

 I have the keyTool GUI program on this server and it has a dump of all the
 Java paths and configurations - they match exactly our other web server
 that
 is running CF8 with the exact same config just fine.

 Also, I can open a command prompt and go to c:\coldfusion8\runtime\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: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


 Brook,

 Any compression on the file system?

 -mark


 Mark A. Kruger, MCSE, CFG
 (402) 408-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 8:46 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 always with
 the
 exact same error. The dll is virus free.

 I've tried starting CF directly and I get the exact same error and that
 error alone printed 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

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

2010-12-01 Thread Mark A. Kruger

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
level OS problem to be affecting a Java ap eh?

Mark A. Kruger, MCSE, CFG
(402) 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!
[FIXED]


that is certainly odd, that is the microsoft visual c runtime file, how
would it affect ColdFusion which runs on Java ?

Russ



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339711
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6509739




  

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339712
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339713
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Webservice error after CF 8.01 update

2010-11-30 Thread Brook Davies

I am getting this error again, now with a different custom return type
class. This error is making our web service unusable. Has any one
encountered this:

The fault returned when invoking the web service operation is:br
preAxisFault faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
[java.lang.ClassNotFoundException :
components.bridge.Cp_register][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
definition for name: quot;components/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 an update on this. Clearing the generated class files and the
cfcskeletons classes did not resolve the issue. Restarting the server did. 

However, I don't trust it will continue working since it has been
intermittent. Fingers crossed it was a left over class file prior to
upgrading to 8.01 (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 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/2001/XMLSchema;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

 soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
[java.lang.ClassNotFoundException :
components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

 /soapenv:Body

/soapenv:Envelope

 

 

The problem is described in good detail here:

http://blog.coldfusionpowered.com/?p=28

 

Clearing the cfc skeletons worked once, but does not work anymore. All
referenced to custom return types use the same case. 

 

Has anyone else seen this? Google turned up nothing...








~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339644
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Webservice error after CF 8.01 update

2010-11-30 Thread Russ Michaels

have you applied all the updates and hotfixes for 8,0,1

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:
 {http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schemas.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;] faultActor:
 faultNode: faultDetail: 
 {http://xml.apache.org/axis/}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 the generated class files and the
 cfcskeletons classes did not resolve the issue. Restarting the server did.

 However, I don't trust it will continue working since it has been
 intermittent. Fingers crossed it was a left over class file prior to
 upgrading to 8.01 (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 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/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

  soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
 definition for name:
 quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
 xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

  /soapenv:Body

 /soapenv:Envelope





 The problem is described in good detail here:

 http://blog.coldfusionpowered.com/?p=28



 Clearing the cfc skeletons worked once, but does not work anymore. All
 referenced to custom return types use the same case.



 Has anyone else seen this? Google turned up nothing...








 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339647
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
faultActor:
 faultNode: faultDetail:
{http://xml.apache.org/axis/}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 the generated class files and the
 cfcskeletons classes did not resolve the issue. Restarting the server did.

 However, I don't trust it will continue working since it has been
 intermittent. Fingers crossed it was a left over class file prior to
 upgrading to 8.01 (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 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/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

  soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
 definition for name:
 quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
 xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

  /soapenv:Body

 /soapenv:Envelope





 The problem is described in good detail here:

 http://blog.coldfusionpowered.com/?p=28



 Clearing the cfc skeletons worked once, but does not work anymore. All
 referenced to custom return types use the same case.



 Has anyone else seen this? Google turned up nothing...








 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339649
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
faultActor:
 faultNode: faultDetail:
{http://xml.apache.org/axis/}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 the generated class files and the
 cfcskeletons classes did not resolve the issue. Restarting the server did.

 However, I don't trust it will continue working since it has been
 intermittent. Fingers crossed it was a left over class file prior to
 upgrading to 8.01 (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 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/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

  soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
 definition for name:
 quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
 xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

  /soapenv:Body

 /soapenv:Envelope





 The problem is described in good detail here:

 http://blog.coldfusionpowered.com/?p=28



 Clearing the cfc skeletons worked once, but does not work anymore. All
 referenced to custom return types use the same case.



 Has anyone else seen this? Google turned up nothing...








 





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339650
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

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
(402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
faultActor:
 faultNode: faultDetail:
{http://xml.apache.org/axis/}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 the generated class files and the
 cfcskeletons classes did not resolve the issue. Restarting the server did.

 However, I don't trust it will continue working since it has been
 intermittent. Fingers crossed it was a left over class file prior to
 upgrading to 8.01 (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 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/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

  soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
 definition for name:
 quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
 xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

  /soapenv:Body

 /soapenv:Envelope





 The problem is described in good detail here:

 http://blog.coldfusionpowered.com/?p=28



 Clearing the cfc skeletons worked once, but does not work anymore. All
 referenced to custom return types use the same case.



 Has anyone else seen this? Google turned up nothing...








 







~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339651
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

Its plain jane:

#
# VM configuration
#
# Where to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:/ColdFusion8/runtime/jre


---

Brook


-Original Message-
From: Mark A. Kruger [mailto:mkru...@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
(402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
faultActor:
 faultNode: faultDetail:
{http://xml.apache.org/axis/}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 the generated class files and the
 cfcskeletons classes did not resolve the issue. Restarting the server did.

 However, I don't trust it will continue working since it has been
 intermittent. Fingers crossed it was a left over class file prior to
 upgrading to 8.01 (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 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/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

  soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
 definition for name:
 quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
 xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

  /soapenv:Body

 /soapenv:Envelope





 The problem is described in good detail here:

 http://blog.coldfusionpowered.com/?p=28



 Clearing the cfc skeletons worked once, but does not work anymore. All
 referenced to custom return types use the same case.



 Has anyone else seen

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

Looks default to me Brook... what's in your /runtime/logs/*-out.log
(cfusion-out.log usually). Is that were you got the Error loading error?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 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 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 to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:/ColdFusion8/runtime/jre


---

Brook


-Original Message-
From: Mark A. Kruger [mailto:mkru...@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
(402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
faultActor:
 faultNode: faultDetail:
{http://xml.apache.org/axis/}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 the generated class files and the
 cfcskeletons classes did not resolve the issue. Restarting the server did.

 However, I don't trust it will continue working since it has been
 intermittent. Fingers crossed it was a left over class file prior to
 upgrading to 8.01 (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 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/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

  soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_startup][java.lang.LinkageError : loader (instance

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

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 with
anything in it only has the one line error message Error
loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll.

Like I said also, I just reinstalled CF8 and am still getting this error. 

I've tried everything I can think of

These problems all started when I deleted the contents of the cfclasses
directory and cleared the template cache on the server. That hung the server
and on restart its just not working. I've never seen anything like 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 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 the Error loading error?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 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 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 to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:/ColdFusion8/runtime/jre


---

Brook


-Original Message-
From: Mark A. Kruger [mailto:mkru...@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
(402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
faultActor:
 faultNode: faultDetail:
{http://xml.apache.org/axis/}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 the generated class files and the
 cfcskeletons classes did not resolve the issue. Restarting the server did.

 However, I don't trust it will continue working since it has been

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

Path looks weird... try a java path instead double backslashes...

C:\\coldfusion8\\runtime\\bin  maybe all the way to the jvm dir...
\\bin\\server...

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 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 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 with
anything in it only has the one line error message Error
loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll.

Like I said also, I just reinstalled CF8 and am still getting this error. 

I've tried everything I can think of

These problems all started when I deleted the contents of the cfclasses
directory and cleared the template cache on the server. That hung the server
and on restart its just not working. I've never seen anything like 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 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 the Error loading error?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 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 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 to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:/ColdFusion8/runtime/jre


---

Brook


-Original Message-
From: Mark A. Kruger [mailto:mkru...@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
(402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge

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

Also check case sensitivity weird I know but sometimes... :)

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 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 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 with
anything in it only has the one line error message Error
loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll.

Like I said also, I just reinstalled CF8 and am still getting this error. 

I've tried everything I can think of

These problems all started when I deleted the contents of the cfclasses
directory and cleared the template cache on the server. That hung the server
and on restart its just not working. I've never seen anything like 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 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 the Error loading error?

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 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 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 to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:/ColdFusion8/runtime/jre


---

Brook


-Original Message-
From: Mark A. Kruger [mailto:mkru...@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
(402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
faultActor:
 faultNode: faultDetail:
{http://xml.apache.org/axis

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

Are you sure you installed the correct update?  

When you reinstalled CF8 did you apply the update again? 

Did you try to start CF before applying the update after the reinstall?
 


Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well. 

On Nov 30, 2010, at 8:34 PM, Brook Davies wrote:

 
 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 with
 anything in it only has the one line error message Error
 loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll.
 
 Like I said also, I just reinstalled CF8 and am still getting this error. 
 
 I've tried everything I can think of
 
 These problems all started when I deleted the contents of the cfclasses
 directory and cleared the template cache on the server. That hung the server
 and on restart its just not working. I've never seen anything like 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 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 the Error loading error?
 
 -mark
 
 
 Mark A. Kruger, MCSE, CFG
 (402) 408-3733 ext 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 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 to find JVM, if {java.home}/jre exists then that JVM is used
 # if not then it must be the path to the JRE itself
 java.home=C:/ColdFusion8/runtime/jre
 
 
 ---
 
 Brook
 
 
 -Original Message-
 From: Mark A. Kruger [mailto:mkru...@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
 (402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
 corrupt. Same error (different path) with a different JVM. 
 
 I tried everything I could think of and eventually decided to re-install
 CF8. I'm getting the exact same error after the re-install. CF will not
 start. The error message is the same as above. 
 
 I've never had this happen before, to this extent. I don't know what it
 could be. This server has ran fine for years..
 
 Anybody have any pointers on where to look?
 
 Brook
 
 
 -Original Message-
 From: Brook Davies [mailto:cft...@logiforms.com] 
 Sent: November-30-10 5:14 PM
 To: cf-talk
 Subject: RE: 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
 
 On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:
 
 
 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:
 
 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:
 
 {http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
 as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
 of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
 faultActor:
 faultNode

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 make sure the jvm.config file was not
 corrupt. Same error (different path) with a different JVM.

 I tried everything I could think of and eventually decided to re-install
 CF8. I'm getting the exact same error after the re-install. CF will not
 start. The error message is the same as above.

 I've never had this happen before, to this extent. I don't know what it
 could be. This server has ran fine for years..

 Anybody have any pointers on where to look?

My guess is that you have the following:

- a 64-bit system,
- a 32-bit version of CF with a 32-bit jvm.dll,
- a 64-bit JVM installed elsewhere that's in the path, and that's
trying to interact with the 32-bit DLL.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339658
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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: Tried all path combinations under the sun - no dice

Will: I've tried both ways now, with and without the 8.01 updater.

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...

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! Error
loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


Are you sure you installed the correct update?  

When you reinstalled CF8 did you apply the update again? 

Did you try to start CF before applying the update after the reinstall?
 


Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well. 

On Nov 30, 2010, at 8:34 PM, Brook Davies wrote:

 
 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 with
 anything in it only has the one line error message Error
 loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll.
 
 Like I said also, I just reinstalled CF8 and am still getting this error. 
 
 I've tried everything I can think of
 
 These problems all started when I deleted the contents of the cfclasses
 directory and cleared the template cache on the server. That hung the
server
 and on restart its just not working. I've never seen anything like 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 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 the Error loading error?
 
 -mark
 
 
 Mark A. Kruger, MCSE, CFG
 (402) 408-3733 ext 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 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 to find JVM, if {java.home}/jre exists then that JVM is used
 # if not then it must be the path to the JRE itself
 java.home=C:/ColdFusion8/runtime/jre
 
 
 ---
 
 Brook
 
 
 -Original Message-
 From: Mark A. Kruger [mailto:mkru...@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
 (402) 408-3733 ext 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 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 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 make sure the jvm.config file was
not
 corrupt. Same error (different path) with a different JVM. 
 
 I tried everything I could think of and eventually decided to re-install
 CF8. I'm getting the exact same error after the re-install. CF will not
 start. The error message is the same as above. 
 
 I've never had this happen before, to this extent. I don't know what it
 could be. This server has ran fine for years..
 
 Anybody have any pointers on where to look?
 
 Brook
 
 
 -Original Message-
 From: Brook Davies [mailto:cft...@logiforms.com] 
 Sent: November-30-10 5:14 PM
 To: cf-talk
 Subject: RE: 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
 
 On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com
wrote:
 
 
 I am getting this error again, now with a different custom return

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 -version indicates that the user context in which
you're logged in has the proper environment variables, etc, set up. It
doesn't tell you anything about how CF will run Java, unless you've
logged in as the same user account that CF uses.

What version of Java does it say you have?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339661
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

Oooh... .good thought.

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com



-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Tuesday, November 30, 2010 9:39 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 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 make sure the jvm.config file was
not
 corrupt. Same error (different path) with a different JVM.

 I tried everything I could think of and eventually decided to re-install
 CF8. I'm getting the exact same error after the re-install. CF will not
 start. The error message is the same as above.

 I've never had this happen before, to this extent. I don't know what it
 could be. This server has ran fine for years..

 Anybody have any pointers on where to look?

My guess is that you have the following:

- a 64-bit system,
- a 32-bit version of CF with a 32-bit jvm.dll,
- a 64-bit JVM installed elsewhere that's in the path, and that's
trying to interact with the 32-bit DLL.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339662
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 don't think thats the case because this problem started on a machine (all
32 bit, jvm and cf...) that was working perfectly for a long time. Then, as
mentioned, I had some duplicate class name errors, cleared the cfclasses and
the template cache via the cfadmin, the server hung, and on a reboot I can
no longer start CF. I've reinstalled CF and a new JVM and I get the same 1
line error every time. 

I really don't want to spend all night (going downtown to the colo)
re-installing the OS and CF and setting up all the crap on this server, but
it looks like I may have to.

Any other ideas? 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 thought.

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com



-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Tuesday, November 30, 2010 9:39 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 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 make sure the jvm.config file was
not
 corrupt. Same error (different path) with a different JVM.

 I tried everything I could think of and eventually decided to re-install
 CF8. I'm getting the exact same error after the re-install. CF will not
 start. The error message is the same as above.

 I've never had this happen before, to this extent. I don't know what it
 could be. This server has ran fine for years..

 Anybody have any pointers on where to look?

My guess is that you have the following:

- a 64-bit system,
- a 32-bit version of CF with a 32-bit jvm.dll,
- a 64-bit JVM installed elsewhere that's in the path, and that's
trying to interact with the 32-bit DLL.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339663
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 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.

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:/ColdFusion8/runtime/jre\bin\server\jvm.dll


 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 -version indicates that the user context in which
you're logged in has the proper environment variables, etc, set up. It
doesn't tell you anything about how CF will run Java, unless you've
logged in as the same user account that CF uses.

What version of Java does it say you have?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339664
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

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 name
makes me think of goofy i/o stuff. What do you think Dave?  

What do the windows logs show... any i/o type errors?  The error you are
getting is definitely really early on in the bootstrap - like when the JVM
is first tapped not much to go on eh?


Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 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: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


I don't think thats the case because this problem started on a machine (all
32 bit, jvm and cf...) that was working perfectly for a long time. Then, as
mentioned, I had some duplicate class name errors, cleared the cfclasses and
the template cache via the cfadmin, the server hung, and on a reboot I can
no longer start CF. I've reinstalled CF and a new JVM and I get the same 1
line error every time. 

I really don't want to spend all night (going downtown to the colo)
re-installing the OS and CF and setting up all the crap on this server, but
it looks like I may have to.

Any other ideas? 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 thought.

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com



-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Tuesday, November 30, 2010 9:39 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 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 make sure the jvm.config file was
not
 corrupt. Same error (different path) with a different JVM.

 I tried everything I could think of and eventually decided to re-install
 CF8. I'm getting the exact same error after the re-install. CF will not
 start. The error message is the same as above.

 I've never had this happen before, to this extent. I don't know what it
 could be. This server has ran fine for years..

 Anybody have any pointers on where to look?

My guess is that you have the following:

- a 64-bit system,
- a 32-bit version of CF with a 32-bit jvm.dll,
- a 64-bit JVM installed elsewhere that's in the path, and that's
trying to interact with the 32-bit DLL.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.







~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339665
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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.

 But I have tried setting this to the version that ships with CF and that
 doesn't work either...

Remove all other versions of Java, make sure their environment
variables are removed, and restart CF.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339666
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 name
 makes me think of goofy i/o stuff. What do you think Dave?

I think it's possible, but every Error loading ... jvm.dll I've seen
or heard of was caused by a mismatch between JVMs.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339667
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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

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
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 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 exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:/ColdFusion8/runtime/jre


---

Brook


-Original Message-
From: Mark A. Kruger [mailto:mkru...@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
(402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
faultActor:
 faultNode: faultDetail:
{http://xml.apache.org/axis/}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 the generated class files and the
 cfcskeletons classes did not resolve the issue. Restarting the server did.

 However, I don't trust it will continue working since it has been
 intermittent. Fingers crossed it was a left over class file prior to
 upgrading to 8.01 (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 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/2001/XMLSchema;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

  soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
 coldfusion/xml/rpc/SkeletonClassLoader

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

The JVM config I have is the default that comes with CF cause I just did a
re-install. I am trying to uninstall other JVMS and restart CF and see if
that helps. 



-Original Message-
From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] 
Sent: 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 A. Kruger, MCSE, CFG
(402) 408-3733 ext 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 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 exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:/ColdFusion8/runtime/jre


---

Brook


-Original Message-
From: Mark A. Kruger [mailto:mkru...@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
(402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionhttp://schem
as.xmlsoap.org/soap/envelope/%7DServer.userException
 faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException:
 [java.lang.ClassNotFoundException :
 components.bridge.Cp_register][java.lang.LinkageError : loader (instance
of
 coldfusion/xml/rpc/SkeletonClassLoader): attempted duplicate class
 definition for name: quot;components/bridge/Cp_registerquot;]
faultActor:
 faultNode: faultDetail:
{http://xml.apache.org/axis/}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 the generated class files and the
 cfcskeletons classes did not resolve the issue. Restarting the server did.

 However, I don't trust it will continue working since it has been
 intermittent. Fingers crossed it was a left over class file prior to
 upgrading to 8.01 (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 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

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

Well, I've removed the extra JVM's and rebooted. Same Error. The jvm.config
file is below - its the default...this is so weird..

#
# VM configuration
#
# Where to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:/ColdFusion8/runtime/jre
#
# If no java.home is specified a VM is located by looking in these places in
this
# order:
#
#  1) bin directory for java.dll (windows) or lib/ARCH/libjava.so (unix)
#  2) ../jre
#  3) registry (windows only)
#  4) JAVA_HOME env var plus jre (ie $JAVA_HOME/jre)
#

# Arguments to VM
java.args=-server -Xmx512m -Dsun.io.useCanonCaches=false
-XX:MaxPermSize=192m -XX:+UseParallelGC
-Dcoldfusion.rootDir={application.home}/../
-Dcoldfusion.classPath={application.home}/../lib/updates,{application.home}/
../lib,{application.home}/../gateway/lib/,{application.home}/../wwwroot/WEB-
INF/cfform/jars -Dcoldfusion.libPath={application.home}/../lib

#
# commas will be converted to platform specific separator and the result
will be passed
# as -Djava.ext.dirs= to the VM
java.ext.dirs={jre.home}/lib/ext

#
# where to find shared libraries
java.library.path={application.home}/../lib,{application.home}/../jintegra/b
in,{application.home}/../jintegra/bin/international
system.path.first=false

#
# set the current working directory - useful for Windows to control
# the default search path used when loading DLLs since it comes
# before system directory, windows directory and PATH
java.user.dir={application.home}/../../lib

# JVM classpath
java.class.path={application.home}/servers/lib,{application.home}/../lib/mac
romedia_drivers.jar,{application.home}/lib/cfmx_mbean.jar,{application.home}
/lib

-Original Message-
From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] 
Sent: 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 A. Kruger, MCSE, CFG
(402) 408-3733 ext 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 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 exists then that JVM is used
# if not then it must be the path to the JRE itself
java.home=C:/ColdFusion8/runtime/jre


---

Brook


-Original Message-
From: Mark A. Kruger [mailto:mkru...@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
(402) 408-3733 ext 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 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 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 make sure the jvm.config file was not
corrupt. Same error (different path) with a different JVM. 

I tried everything I could think of and eventually decided to re-install
CF8. I'm getting the exact same error after the re-install. CF will not
start. The error message is the same as above. 

I've never had this happen before, to this extent. I don't know what it
could be. This server has ran fine for years..

Anybody have any pointers on where to look?

Brook


-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: November-30-10 5:14 PM
To: cf-talk
Subject: RE: 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

On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies cft...@logiforms.com wrote:


 I am getting this error again, now with a different custom return type
 class. This error is making our web service unusable. Has any one
 encountered this:

 The fault returned when invoking the web service operation is:br
 preAxisFault faultCode:

{http://schemas.xmlsoap.org

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

No I/O errors in the logs. The duplicate class file issue also happened on
two servers (after the 8.01 update) so I don't think thats I/O related. I am
leaning that way aswell though, since this is just a bit to bizarre...

I'll run chkdsk and report back..

Brook

-Original Message-
From: 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...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 name
makes me think of goofy i/o stuff. What do you think Dave?  

What do the windows logs show... any i/o type errors?  The error you are
getting is definitely really early on in the bootstrap - like when the JVM
is first tapped not much to go on eh?


Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 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: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll


I don't think thats the case because this problem started on a machine (all
32 bit, jvm and cf...) that was working perfectly for a long time. Then, as
mentioned, I had some duplicate class name errors, cleared the cfclasses and
the template cache via the cfadmin, the server hung, and on a reboot I can
no longer start CF. I've reinstalled CF and a new JVM and I get the same 1
line error every time. 

I really don't want to spend all night (going downtown to the colo)
re-installing the OS and CF and setting up all the crap on this server, but
it looks like I may have to.

Any other ideas? 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 thought.

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com



-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Tuesday, November 30, 2010 9:39 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 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 make sure the jvm.config file was
not
 corrupt. Same error (different path) with a different JVM.

 I tried everything I could think of and eventually decided to re-install
 CF8. I'm getting the exact same error after the re-install. CF will not
 start. The error message is the same as above.

 I've never had this happen before, to this extent. I don't know what it
 could be. This server has ran fine for years..

 Anybody have any pointers on where to look?

My guess is that you have the following:

- a 64-bit system,
- a 32-bit version of CF with a 32-bit jvm.dll,
- a 64-bit JVM installed elsewhere that's in the path, and that's
trying to interact with the 32-bit DLL.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.









~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339671
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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/jre\bin\server\jvm.dll


No I/O errors in the logs. The duplicate class file issue also happened on
two servers (after the 8.01 update) so I don't think thats I/O related. I am
leaning that way aswell though, since this is just a bit to bizarre...

I'll run chkdsk and report back..

Brook




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339672
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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/2001/XMLSchema;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

 soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
[java.lang.ClassNotFoundException :
components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

 /soapenv:Body

/soapenv:Envelope

 

 

The problem is described in good detail here:

http://blog.coldfusionpowered.com/?p=28

 

Clearing the cfc skeletons worked once, but does not work anymore. All
referenced to custom return types use the same case. 

 

Has anyone else seen this? Google turned up nothing...




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339515
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Webservice error after CF 8.01 update

2010-11-24 Thread Brook Davies

Just an update on this. Clearing the generated class files and the
cfcskeletons classes did not resolve the issue. Restarting the server did. 

However, I don't trust it will continue working since it has been
intermittent. Fingers crossed it was a left over class file prior to
upgrading to 8.01 (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 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/2001/XMLSchema;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

 soapenv:Body

  soapenv:Fault

   faultcodesoapenv:Server.userException/faultcode

   faultstringcoldfusion.xml.rpc.CFCInvocationException:
[java.lang.ClassNotFoundException :
components.bridge.Cp_startup][java.lang.LinkageError : loader (instance of
coldfusion/xml/rpc/SkeletonClassLoader): attempted  duplicate class
definition for name: quot;components/bridge/Cp_startupquot;]/faultstring

   detail

ns1:hostname
xmlns:ns1=http://xml.apache.org/axis/;YOURMAMA/ns1:hostname

   /detail

  /soapenv:Fault

 /soapenv:Body

/soapenv:Envelope

 

 

The problem is described in good detail here:

http://blog.coldfusionpowered.com/?p=28

 

Clearing the cfc skeletons worked once, but does not work anymore. All
referenced to custom return types use the same case. 

 

Has anyone else seen this? Google turned up nothing...






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339522
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Webservice error

2009-10-01 Thread ch g

I am redirecting to another URL using cflocation in my webservice, then i am 
getting this error, if i comment the cflocation tag then its working fine. Any 
help or suggestions will be appreciated lot.

 Cannot perform web service invocation login.
The fault returned when invoking the web service operation is:

AxisFault
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
 faultSubcode: 
 faultString: coldfusion.xml.rpc.CFCInvocationException: 
[coldfusion.runtime.AbortException : null]
 faultActor: 
 faultNode: 
 faultDetail: 

{http://xml.apache.org/axis/}stackTrace:coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.runtime.AbortException : null]
at 
coldfusion.xml.rpc.CFComponentSkeleton.__createCFCInvocationException(CFComponentSkeleton.java:723)
at 
coldfusion.xml.rpc.CFComponentSkeleton.__invoke(CFComponentSkeleton.java:670)
at InvokeServices.login(E:\ecodes_Dev\InvokeServices.cfc)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:388)
at org.apache.axis.provider... ''

Thanks
chr 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326808
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Webservice Error

2009-02-28 Thread Robert Rawlins

Chaps,

 

Trying to invoke the NOAA webservice using cfinvoke but getting a pretty
useless exception thrown back at me, you'll be able to see the WSDL document
in the code so you can examine it, I cant see anything wrong with my request
data.

 

cfinvoke method=NDFDgenByDay
webservice=http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl;
refreshWSDL=true returnVariable=VARIABLES.Forecast

  cfinvokeargument name=latitude value=50.797816 /

  cfinvokeargument name=longitude value=-1.10623 /

  cfinvokeargument name=startDate value=2008-03-01 /

  cfinvokeargument name=numDays value=7 /   

  cfinvokeargument name=format value=24 hourly /

/cfinvoke

 

cfdump var=#VARIABLES.Forecast# /

 


Cannot perform web service invocation NDFDgenByDay.

 

The fault returned when invoking the web service operation is:

AxisFault

 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException

 faultSubcode: 

 faultString: java.lang.ClassCastException: org.apache.axis.message.Text
cannot be cast to org.apache.axis.message.MessageElement

 faultActor: 

 faultNode: 

 faultDetail: 

 
{http://xml.apache.org/axis/}stackTrace:java.lang.ClassCastException:
org.apache.axis.message.Text cannot be cast to
org.apache.axis.message.MessageElement

at
org.apache.axis.message.SOAPFaultBuilder.onEndChild(SOAPFaultBuilder.java:29
9)

at
org.apache.axis.encoding.DeserializationContext.endElement(DeserializationCo
ntext.java:1090)

at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown
Source)

at
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown
Source)

at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatc
her.dispatch(Unknown Source)

at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
Source)

at org.apache.xerces.parsers.XML11Configurat... ''


 



The error occurred in C:\inetpub\workspace\www.yourblue.co.uk version
3\View\Reports\weather\weather_test.cfm: line 6


4 : cfinvokeargument name=startDate value=2008-03-01 / 

5 : cfinvokeargument name=numDays value=7 / 

6 : cfinvokeargument name=format value=24 hourly /

7 : /cfinvoke

8 : 



 

 

If I'm honest I've always had issues with coldfusion webservices, they seem
to be very good at consuming themselves but whenever trying to use CF to
consume another service, or another language to consume one of my own
services they always seem to misbahave L

 

Any ideas on this would really be appreciate,

 

Rob



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319943
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Simple Webservice error under CF V8

2009-02-14 Thread Andy Ousterhout

Can anyone help me understand why the following simple code is throwiing an 
error.  I get this error:

Detail  The fault returned when invoking the web service operation 
is:br pre'' java.lang.NullPointerException/pre
Message Cannot perform web service invocation authenticate. 

when this routine routine:
cfset ws = CreateObject(webservice, 
http://localhost/opensource/QBWC_Shell.cfc;) /
cfset ret = ws.clientVersion(strVersion=2.0.0.135) /

cfset soapresp = GetSOAPResponse(ws)
h2SOAP Response for clientVersion/h2
cfdump var=#soapresp#

cfset ret = ws.authenticate(strUserName=User, strPassword=PW) /

cfset soapresp = GetSOAPResponse(ws)
h2SOAP Response for authenticate/h2
cfdump var=#soapresp#

Calls this WebService:
CFCOMPONENT style=RPC namespace=http://developer.intuit.com/;

 cffunction access=remote name=clientVersion returntype=String
cfargument name=strVersion type=string required=yes
  
cfreturn O:2.0.0.135
 /cffunction
 
cffunction access=remote name=authenticate returntype=array
cfargument name=strUserName type=string required=yes 
cfargument name=strPassword type=string required=yes 

cfset var aryReturn = arrayNew(1) /

cfset arrayAppend(aryReturn, ) 
cfset arrayAppend(aryReturn, nvu)  
cfreturn aryReturn
 /cffunction
/CFCOMPONENT


Any help much appreciated. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319323
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Simple Webservice error under CF V8

2009-02-14 Thread Andy Ousterhout

Ok, I've traced the issue down to trying to return an array.  How do I do this 
under V8?  I had no issues with 7.5.

Andy 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319324
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Intermittent webservice error

2008-12-05 Thread adrian lynch
We have an error that comes and goes when calling various methods in a web 
service.

Web service parameter name in0 cannot be found in the provided parameters 
{session_token,public_file_id,return_format}

The arguments between the { and } change depending on the method.

The WS is on CF8.0.1. It's being called from two other CF apps, one on CF8.0.1, 
the other CF7.

Here are two calls to the method:

cfinvoke webservice=pathToWSDL returnvariable=returnVar method=method1
cfinvokeargument name=arg1 value=value1
/cfinvoke

cfinvoke webservice=pathToWSDL returnvariable=returnVar method=method2
cfinvokeargument name=arg1 value=value1
cfinvokeargument name=arg2 value=value2
cfinvokeargument name=arg3 value=value3
/cfinvoke

method1 looks like this:

cffunction name=getSessionTokenSeed access=remote returntype=string 
output=false

cfargument name=arg1 type=GUID

!--- Logic here ---

cfreturn a string

/cffunction

method2 is similar and also has an argument of type GUID.

The WDSL can be found here:

http://bv-01.bubblevault.com/wsdl.xml

Any pointers? I'm about to dumb-down the argument types to strings to see if 
that helps but I think I'd like to leave them as GUID if I can.

Thanks.

Adrian 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316320
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Webservice error

2006-10-02 Thread Peter Booth
Hi 

I'm trying to invoke an external webservice from a site I'm developing. I've 
tested this locally and everything works fine. However, when this is 
transferred to the live server I get the error below:

coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler: 
Found 12 semantic errors compiling 
C:/CFusionMX/stubs/WS1125258580/com/adgistics/webservices/SpecificationsSoapStub.java:

   109. cachedSerQNames.add(qName);

*** Error: No method named add was found in type java/util/Vector. However, 
there is an accessible method addElement whose name closely matches the name 
add.
..
..
..more of the same

If anyone has any suggestions/comments I'd be really grateful as this is beyond 
the scope of my cf knowledge.

~|
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:254977
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Webservice error

2006-10-02 Thread Jake Churchill
It appears that the server is attempting to add an element to the cached 
queries vector but is having a hard time calling the correct method to 
add it.  Is SpecificationsSoapStub.java yours or the servers?

Peter Booth wrote:
 Hi 

 I'm trying to invoke an external webservice from a site I'm developing. I've 
 tested this locally and everything works fine. However, when this is 
 transferred to the live server I get the error below:

 coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler: 
 Found 12 semantic errors compiling 
 C:/CFusionMX/stubs/WS1125258580/com/adgistics/webservices/SpecificationsSoapStub.java:

109. cachedSerQNames.add(qName);
 
 *** Error: No method named add was found in type java/util/Vector. 
 However, there is an accessible method addElement whose name closely 
 matches the name add.
 ..
 ..
 ..more of the same

 If anyone has any suggestions/comments I'd be really grateful as this is 
 beyond the scope of my cf knowledge.

 

~|
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:254978
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Webservice error

2006-10-02 Thread Dave Watts
 It appears that the server is attempting to add an element to 
 the cached queries vector but is having a hard time calling 
 the correct method to add it. Is SpecificationsSoapStub.java 
 yours or the servers?

The stub file mentioned by the original poster is automatically generated by
Apache Axis when you attempt to invoke a web service.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
 
Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore and Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
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:254979
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Webservice error

2006-10-02 Thread Dave Watts
 I'm trying to invoke an external webservice from a site I'm 
 developing. I've tested this locally and everything works 
 fine. However, when this is transferred to the live server I 
 get the error below ...

Different versions of CF have different versions of Apache Axis, which is
the library used to interact with web services. What version are you running
on your local machine? It appears you're running CFMX 6.x on the server. An
upgrade may be in order.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
 
Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore and Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
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:254980
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Webservice error

2006-10-02 Thread Peter Booth
On my local machine i'm running a developer version of CFMX7, the live server 
is  running CF 6,1,0,63958.

When you say an upgrade, do you mean to cf7, or just an update to a newer 
version of 6? 

~|
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:254990
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Simple Webservice Error from hell.....

2005-04-20 Thread jonese
Ok i have this CFC.
cfcomponent
cffunction name=test output=true returntype=string access=remote
cfreturn hello eric
/cffunction
/cfcomponent
 I hit the url http://myinternalDomain.com/contentExplorer.cfc?wsdl
 and get this error:
AXIS error 

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

Fault - [coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][

AxisFault
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString: 
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][
 faultActor: 
 faultNode: 
 faultDetail: 


 I've searched high and low and while the question is asked alot i never 
find a solid answer. ANY ideas?
 jonese


~|
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:203716
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: Simple Webservice Error from hell.....

2005-04-20 Thread Mike Nicholls
It's a bug in CFMX 6.1 Updater 1 and CFMX 7, Macromedia have known about
it since October last year but it hasn't been fixed.

See
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=
7threadid=881689forumid=1 for a few workarounds - unfortunately they
all make using webservices on a multihomed server unnecessarily painful.

-Original Message-
From: jonese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 21 April 2005 7:01 a.m.
To: CF-Talk
Subject: Simple Webservice Error from hell.

Ok i have this CFC.
cfcomponent
cffunction name=test output=true returntype=string
access=remote
cfreturn hello eric
/cffunction
/cfcomponent
 I hit the url http://myinternalDomain.com/contentExplorer.cfc?wsdl
 and get this error:
AXIS error 

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

Fault -
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][

AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][
 faultActor: 
 faultNode: 
 faultDetail: 


 I've searched high and low and while the question is asked alot i never

find a solid answer. ANY ideas?
 jonese




~|
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:203736
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: Simple Webservice Error from hell.....

2005-04-20 Thread Tom Jordahl
I don't know about it. And generally if a web service bug doesn't get to
me, it doesn't get fixed.

We did fix CFMX to respect CF mappings when dealing with web services, I
believe in the 6.1 updater.  Are you saying that this fix caused this
problem? i.e. it worked like you wanted before the updater?

You got a bug number?  I can take a look.

--
Tom Jordahl
ColdFusion Web Service Guy

-Original Message-
From: Mike Nicholls [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 20, 2005 1:42 PM
To: CF-Talk
Subject: RE: Simple Webservice Error from hell.

It's a bug in CFMX 6.1 Updater 1 and CFMX 7, Macromedia have known about
it since October last year but it hasn't been fixed.

See
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=
7threadid=881689forumid=1 for a few workarounds - unfortunately they
all make using webservices on a multihomed server unnecessarily painful.

-Original Message-
From: jonese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 21 April 2005 7:01 a.m.
To: CF-Talk
Subject: Simple Webservice Error from hell.

Ok i have this CFC.
cfcomponent
cffunction name=test output=true returntype=string
access=remote
cfreturn hello eric
/cffunction
/cfcomponent
 I hit the url http://myinternalDomain.com/contentExplorer.cfc?wsdl
 and get this error:
AXIS error 

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

Fault -
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][

AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][
 faultActor: 
 faultNode: 
 faultDetail: 


 I've searched high and low and while the question is asked alot i never

find a solid answer. ANY ideas?
 jonese






~|
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:203785
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: Simple Webservice Error from hell.....

2005-04-20 Thread Mike Nicholls
Hi Tom,

I don't have a bug number sorry, I'm going by what was said in the thread on
the Macromedia forums
(http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=7t
hreadid=881689forumid=1).  

jsevlie said he'd called Macromedia support and had been talking to an
engineer over the course of a week, which lead to the workarounds mentioned
in the thread.  He said Macromedia had recognised the problem as a bug and
refunded his money, so I'd assumed that it would have been filed.

It's been a while since I've looked at this issue, but from what I recall
it's reproducible if you specify a non-default root mapping in the
ColdFusion Administrator, create a directory under the new root, put a CFC
in it, create a virtual site in Apache or IIS with the root being the
directory with the CFC in and browse to /cfcname.cfc?wsdl.

As far as I know this bug first appeared in CFMX 6.1 Updater 1 - we're
currently running CFMX 6.1 without the updater, as when we installed it on
our test servers it broke webservices on a number of sites.  I really
appreciate your offer to take a look, because this is probably the only
issue that's keeping us from upgrading to CFMX 7.

Regards,

Mike Nicholls

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 21 April 2005 4:19 p.m.
To: CF-Talk
Subject: RE: Simple Webservice Error from hell.

I don't know about it. And generally if a web service bug doesn't get to
me, it doesn't get fixed.

We did fix CFMX to respect CF mappings when dealing with web services, I
believe in the 6.1 updater.  Are you saying that this fix caused this
problem? i.e. it worked like you wanted before the updater?

You got a bug number?  I can take a look.

--
Tom Jordahl
ColdFusion Web Service Guy

-Original Message-
From: Mike Nicholls [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 20, 2005 1:42 PM
To: CF-Talk
Subject: RE: Simple Webservice Error from hell.

It's a bug in CFMX 6.1 Updater 1 and CFMX 7, Macromedia have known about
it since October last year but it hasn't been fixed.

See
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=
7threadid=881689forumid=1 for a few workarounds - unfortunately they
all make using webservices on a multihomed server unnecessarily painful.

-Original Message-
From: jonese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 21 April 2005 7:01 a.m.
To: CF-Talk
Subject: Simple Webservice Error from hell.

Ok i have this CFC.
cfcomponent
cffunction name=test output=true returntype=string
access=remote
cfreturn hello eric
/cffunction
/cfcomponent
 I hit the url http://myinternalDomain.com/contentExplorer.cfc?wsdl
 and get this error:
AXIS error 

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

Fault -
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][

AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][
 faultActor: 
 faultNode: 
 faultDetail: 


 I've searched high and low and while the question is asked alot i never

find a solid answer. ANY ideas?
 jonese








~|
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:203787
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: Simple Webservice Error from hell.....

2005-04-20 Thread Mike Nicholls
Hi Tom,

I don't have a bug number sorry, I'm going by what was said in the thread on
the Macromedia forums
(http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=7t
hreadid=881689forumid=1).  

jsevlie said he'd called Macromedia support and had been talking to an
engineer over the course of a week, which lead to the workarounds mentioned
in the thread.  He said Macromedia had recognised the problem as a bug and
refunded his money, so I'd assumed that it would have been filed.

It's been a while since I've looked at this issue, but from what I recall
it's reproducible if you specify a non-default root mapping in the
ColdFusion Administrator, create a directory under the new root, put a CFC
in it, create a virtual site in Apache or IIS with the root being the
directory with the CFC in and browse to /cfcname.cfc?wsdl.

As far as I know this bug first appeared in CFMX 6.1 Updater 1 - we're
currently running CFMX 6.1 without the updater, as when we installed it on
our test servers it broke webservices on a number of sites.  I really
appreciate your offer to take a look, because this is probably the only
issue that's keeping us from upgrading to CFMX 7.

Regards,

Mike Nicholls

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 21 April 2005 4:19 p.m.
To: CF-Talk
Subject: RE: Simple Webservice Error from hell.

I don't know about it. And generally if a web service bug doesn't get to
me, it doesn't get fixed.

We did fix CFMX to respect CF mappings when dealing with web services, I
believe in the 6.1 updater.  Are you saying that this fix caused this
problem? i.e. it worked like you wanted before the updater?

You got a bug number?  I can take a look.

--
Tom Jordahl
ColdFusion Web Service Guy



~|
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:203788
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


CFMX webservice Error Missing whitespace before SYSTEM literal URI.

2003-10-15 Thread Brook Davies
I get the following error when trying to call a CFMX webservice. Funny 
thing is, this worked yesterday and now it doesn't. You can see the WSDL 
file at the below URL. Any ideas?


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CFMX webservice Error Missing whitespace before SYSTEM literal URI.

2003-10-15 Thread Brook Davies
Name: lfbridgeTest. WSDL: 
http://dev.logiforms.com/lfcomponents/lfbridge/logiBridgetest.cfc?wsdl. 
org.xml.sax.SAXException: Fatal Error: URI=null Line=1: Missing whitespace 
before SYSTEM literal URI. 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.


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]