--a simple handler defined for a wsdd the handler as a filename named --MyService.log defined here: <handler name="track" type="java:samples.security.LogHandler">
<parameter name="filename" value="MyService.log"/> </handler> --which is referenced in requestFlow illustrated here <requestFlow> <handler type="track"/> </requestFlow> --is referenced when invoking http://localhost:8080/LogTestService --viewing the full wsdd example <deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <!-- define the logging handler configuration --> <handler name="track" type="java:samples.security.LogHandler"> <parameter name="filename" value="MyService.log"/> </handler> <!-- define the service, using the log handler we just defined --> <service name="http://localhost:8080/LogTestService" provider="java:RPC"> <requestFlow> <handler type="track"/> </requestFlow> <parameter name="className" value="samples.security.Service"/> <parameter name="allowedMethods" value="*"/> </service> </deployment> --allows out LogtestService requestFlow to reference track <requestFlow> <handler type="track"/> </requestFlow> --where track is defined as <handler name="track" type="java:samples.security.LogHandler"> <parameter name="filename" value="MyService.log"/> </handler> If you could display your wsdd we can more accurately determine the error source HTH! Martin ______________________________________________ Disclaimer and Confidentiality/Verzicht und Vertraulichkeitanmerkung / Note de déni et de confidentialité This message is confidential. If you should not be the intended receiver, then we ask politely to report. Each unauthorized forwarding or manufacturing of a copy is inadmissible. This message serves only for the exchange of information and has no legal binding effect. Due to the easy manipulation of emails we cannot take responsibility over the the contents. Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen. Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire informez l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est interdite. Ce message sert à l'information seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Mon, 20 Apr 2009 20:02:31 +0530 Subject: Fwd: org.apache.axis.InternalException: org.apache.axis.ConfigurationException:.....?? From: [email protected] To: [email protected] ---------- Forwarded message ---------- From: Mark Thomas <[email protected]> Date: Mon, Apr 20, 2009 at 7:50 PM Subject: Re: org.apache.axis.InternalException: org.apache.axis.ConfigurationException:.....?? To: Tomcat Users List <[email protected]> shashidhar velagandula wrote: > HI , > > I am using , apache-tomcat-6.0.18 ,,, i have deployed one application , > while accessing the application , it is throwing some configuration error as > .... > > org.apache.axis.InternalException: org.apache.axis.ConfigurationException: > org.apache.axis.deployment.wsdd.WSDDException: Must include type attribute > for Handler deployment! That is an Axis error, not a Tomcat one. You'll have more luck on the Axis users list. Mark org.apache.axis.deployment.wsdd.WSDDException: Must > include type attribute for Handler deployment! at > org.apache.axis.deployment.wsdd.WSDDHandler.(WSDDHandler.java:50) at > org.apache.axis.deployment.wsdd.WSDDChain.(WSDDChain.java:66) at > org.apache.axis.deployment.wsdd.WSDDRequestFlow.(WSDDRequestFlow.java:44) at > org.apache.axis.deployment.wsdd.WSDDGlobalConfiguration.(WSDDGlobalConfiguration.java:62) > at org.apache.axis.deployment.wsdd.WSDDDeployment.(WSDDDeployment.java:244) > at > org.apache.axis.deployment.wsdd.WSDDDocument.setDocument(WSDDDocument.java:139) > at org.apache.axis.deployment.wsdd.WSDDDocument.(WSDDDocument.java:65) at > org.apache.axis.configuration.FileProvider.configureEngine(FileProvider.java:180) > at org.apache.axis.AxisEngine.init(AxisEngine.java:172) at > org.apache.axis.AxisEngine.(AxisEngine.java:156) at > org.apache.axis.client.AxisClient.(AxisClient.java:61) at > org.apache.axis.client.Service.getAxisClient(Service.java:110) at > org.apache.axis.client.Service.(Service.java:119) at > org.globus.ogsa.impl.core.service.ServiceLocator.(ServiceLocator.java:55) at > gov.lbl.srm.StorageResourceManager.SRMServiceGridLocator.(SRMServiceGridLocator.java:10) > at gov.lbl.srm.client.wsdl.SRMServer.connect(SRMServer.java:357) at > SRMAPI.SRMFileList.ListFilesFromSRM(SRMFileList.java:29) at > org.apache.jsp.srmFlist_jsp._jspService(srmFlist_jsp.java:65) at > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) at > javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374) > at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342) > at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267) at > javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) > at > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) > at java.lang.Thread.run(Thread.java:619) > org.apache.axis.deployment.wsdd.WSDDException: Must include type attribute > for Handler deployment! org.apache.axis.deployment.wsdd.WSDDException: Must > include type attribute for Handler deployment! at > org.apache.axis.deployment.wsdd.WSDDHandler.(WSDDHandler.java:50) at > org.apache.axis.deployment.wsdd.WSDDChain.(WSDDChain.java:66) at > ............................. > ........................ > > > Kindly , provide solution to avoid the above configuration problem . > > Thanks & Regards , > shashidhar > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] _________________________________________________________________ Windows Live™: Life without walls. http://windowslive.com/explore?ocid=TXT_TAGLM_WL_allup_1b_explore_042009
