I'm not using <actionMapping> in services.xml either. I have read here:
http://ws.apache.org/axis2/1_1_1/xmlbased-server.html that <actionMapping> is used only for WS-Addressing. I haven't made any progress for few days, so I will post my services.xml, .java and .wsdl files and I will hope someone will take a look and help me. Files will be attached with this e-mail. I hope apache mail server won't block this e-mail because of attachments. Thank you, Milan ----- Original Message ---- From: "Kang, Kamaljeet K." <[EMAIL PROTECTED]> To: [email protected] Sent: Wednesday, April 4, 2007 10:25:22 PM Subject: RE: Operation Not found EPR... I had a similar error recently and I wasn't using ws-addressing. It was because of typo in <actionMapping> in services.xml. kamal -----Original Message----- From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 03, 2007 4:26 AM To: [email protected] Subject: Re: Operation Not found EPR... EPR means endpoint reference. It's the "url" where your service is available. Milan, if the error message says WSA action = .... it means that you are using ws-addressing. Michele On Tue, 2007-04-03 at 01:04 -0700, Milan Tomic wrote: > No, I'm not using WS-addressing. Is this error message described somewhere in documentation? What does it mean? Which operation was not found? What is "EPR"? > > Best regards, > Milan > > > ----- Original Message ---- > From: Michele Mazzucco <[EMAIL PROTECTED]> > To: [email protected] > Sent: Monday, April 2, 2007 4:36:04 PM > Subject: Re: Operation Not found EPR... > > Milan, > > are you using WS-addressing? If so you have to specify the SOAP action > on the client side (use options.setAction()), which is the value > specified in services.xml as actionMapping element. > > Michele > > On Mon, 2007-04-02 at 06:55 -0700, Milan Tomic wrote: > > I got this error message: > > > > "javax.xml.rpc.soap.SOAPFaultException: Operation Not found EPR is http://localhost:8080/axis2/services/MyWebService and WSA Action = " > > > > > > but I don't know what does it mean? What went wrong? :( > > > > > > Thank you in advance, > > Milan > > > > > > > > > > > > ________________________________________________________________________ ____________ > > Get your own web address. > > Have a HUGE year through Yahoo! Small Business. > > http://smallbusiness.yahoo.com/domains/?p=BESTDEAL > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > ________________________________________________________________________ ____________ > Don't pick lemons. > See all the new 2007 cars at Yahoo! Autos. > http://autos.yahoo.com/new_cars.html > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ============================================================ The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any reproduction, dissemination or distribution of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. Thank you. Tellabs ============================================================ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ____________________________________________________________________________________ It's here! Your new message! Get new email alerts with the free Yahoo! Toolbar. http://tools.search.yahoo.com/toolbar/features/mail/
package test;
import java.rmi.RemoteException;
import org.w3c.dom.Document;
public class DoThings {
public Document doThing(Document doc) throws RemoteException{
System.out.println("*** doThing service ***");
return null;
}
}
DoThings.wsdl
Description: application/xml
<serviceGroup> <service name="DoThingService" scope="application"> <description> Do Something Web Service </description> <messageReceivers> <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/> </messageReceivers> <parameter name="ServiceClass"> test.DoThings </parameter> </service> </serviceGroup>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
