Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

AXIS error on all sites - Web Services Ghost!

Status
Not open for further replies.

neofactor

Technical User
Jul 30, 2000
194
US
We are running Coldfusion MX Enterprise running trhough Jrun 4 Windows version.

All of our sites on this box seem to have a ghost link that we cannot track down.

site.com/services
results in "And now... Some Services"

site.com/services/
results in "AXIS error: No service is available at this URL"

I know it is tied to a "Web Service" somewhere but I cannot track it down. This is a pain because I want to use the folder path "Services" but it is overtaken by this webservices!

Any ideas?
 
you can try to look at the files ending with .cfc and see if anyone of them has a the following

<cffunction name="something" access="remote" returntype="something">

access="remote" enables that function to be used as a webservice

hope it helps

 
Thanks...

Yes I 1st started looking at all .cfc and found several that have that call. I renamed the files with a .cfc.kill extention.

Does this require a re-cycle of the server?

Also... I did not see anywhere in these files the word "And now... Some Services
 
I think I found the issue:


cfusion-ear\cfusion-war\WEB-INF\j2ee-web.xml

This mapping is in place throughout the server:
<servlet-mapping id="macromedia_mapping_8">
<servlet-name>AxisServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
 
well Axis is an implementation of the SOAP ("Simple Object Access Protocol"). i hope you won't cause more damages to your server by deleting that j2ee-web.xml because Java Web Services are being implemented thru axis.


 
What i tried was under one of our test sites to rename the mapping from /services/* to /zzzservices/* under the j2ee-web.xml file as well as the web.xml file

Stop and start Jrun/ The Jrun Site service/ and IIS.

The problem is that did not fix it either.

Any ideas? We will schedule a restart in the MA to see if that changes things.. but how do i turn off or move this mapping?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top