java.net.MalformedURLException: no protocol: 5.0/webapps/ra/WEB-INF/classes/]异常处理

 

Tomcat+jboss分布式程序中,在访问ejb时出现如下异常:

java.net.MalformedURLException: no protocol:

2008 - 05 - 22   11 : 17 : 25  ERROR [http - 8080 - Processor23] ( ? : ? -  javax.naming.CommunicationException [Root exception is java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: 
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is: 
    java.net.MalformedURLException: no protocol: 
5.0 / webapps / ra / WEB - INF / classes / ]
javax.naming.CommunicationException [Root exception is java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: 
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is: 
    java.net.MalformedURLException: no protocol: 
5.0 / webapps / ra / WEB - INF / classes / ]
    at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:
663 )
    at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:
520 )
    at javax.naming.InitialContext.lookup(InitialContext.java:
347 )
    at com.ccit.nwca.webapp.proxy.RemoteServiceLocator.getHome(Unknown Source)
    at com.ccit.nwca.webapp.proxy.CertTabProxy.getCertByCertSn(Unknown Source)

 

开始以为是服务器端的问题,细看错误protocol: 后的 5.0/webapps/ra/WEB-INF/classes/],和我的服务目录相同,但少了5.0前的tomcat.我的tomcat目录为:d:/tomcat 5.0.然后将5.0前的空格去掉,重试之后问题解决。原来是目录中有空格造成的。

你可能感兴趣的:(技术总结)