- This topic has 9 replies, 5 voices, and was last updated 17 years, 1 month ago by
wavstudio.
-
AuthorPosts
-
Giorgos MaraveliasMemberHi!
i have a myeclipse web project and i want to remove the WebService capabilities from them. How can i do that ?
(please describe how can i do that manually if an autoway does not exist)Thanks in advance
August 22, 2007 at 7:17 pm #274320
Riyad KallaMemberYou need to remove it manually.
1) Edit the .project file and remove the com.genuitec.eclipse.ws.xfire.wsbuilder builder
2) Also remove the com.genuitec.eclipse.ws.xfire.wsnature nature from the bottom of the .project file, save and close it.
3) Erase the WebServices directory
4) Remove the corresponding XFire libraries from your build path.August 23, 2007 at 3:17 am #274352
Giorgos MaraveliasMemberI have done all this steps
My project compiles and runs perfectly but an Error problem apears in Problems View
at the description say ” Project property “XFire services.xml path” does not refer to a valid file”.
i dont know where is this property entry, i cant find it.August 23, 2007 at 9:10 am #274373
Riyad KallaMemberAhh, I think you also need to erase the “com.genuitec.eclipse.ws.xfire.prefs” file in the .settings folder in your project as well.
January 18, 2008 at 3:15 pm #280829
scharlesMemberI’m running into the same problems removing web services from my project. I modified the .project and .settings files as shown above andI also found references to the web service in web.xml which i removed.
I compile but am still getting the same error: Project property “XFire services.xml path” does not refer to a valid file.
What am I missing?January 21, 2008 at 11:32 am #280867
Riyad KallaMemberscharles,
Do you still have the Web Services folder with the services.xml file in it? It’s possible if the validator is still running on that project that it’s noticing little inconsistencies in the remaining left-over services file or something like that.1 more thought, after you made the changes to .project, you need to close and reopen your project. That might be why it’s reporting an invalid services path… it might still think it’s a services project (cached in memory) and didn’t see the nature was removed.
January 24, 2008 at 11:29 am #281086
scharlesMemberHello,
After I removed web services capabilites from my project I also removed the Web Services folder. I refreshed and recompiled, without shutting down the IDE, and that was when the “XFire services.xml path” showed up. Since removing the IDE has been open and shut several times.
I have looked through the entire project tree and could not find any references to web services or services.xml. Are there any ‘hidden’ myEclipse files where there may be an artifact reference to services.xml?January 28, 2008 at 10:30 am #281197
Riyad KallaMemberThe only “hidden” files are dot files in the root of the project, they can be viewed from the Navigator view, and the only ones that could contain information that might trigger that are the .project file (might include either a builder or a nature that is trigger that to run) or maybe some services specific dot file?
May 9, 2008 at 11:01 am #284836
tngraesslerMemberI had the same issue. Deleting the project from workspace (without deleting it from disk) and re-importing it solved this problem.
May 13, 2008 at 1:36 am #284933
wavstudioMembertry these steps:
1.remove servlet statement of xfire from web.xml,the content like this:
<servlet>
<servlet-name>XFireServlet</servlet-name>
<servlet-class>org.codehaus.xfire.transport.http.XFireConfigurableServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>XFireServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
after this step,during starting your project,xfire will not be started2.remove webservice folder and all it’s sub folders and files from your project
3.remove all xfire related libraries from the build path of your projectnow,you will get a clean web project
-
AuthorPosts