ATTN axis-dev: tcpmon Error while using Resend

2004-03-20 Thread smcardle
Hi Developers, Got a problem with tcpmon when selecting resend for the 2nd time. The first time works and prints to the display as well as updating the tcpmon result view. However, the second time I press Resend I get the following exception and it then becomes impossible to do further Resends

The problem with Exceptions (axis-dev List help would be appreciated)

2004-03-20 Thread smcardle
Hi all and especially any Axis developers looking through these mails I have posted this befor in a different format with no responce. It would appear that I have a problem nobody else has. I have an existing EJB service that I am exposing as a web service via Axis. All the serializable types

problem to run Axis with Tomcat

2004-03-20 Thread Stefano Errani
Good day. I'm Stefano Errani, an italian freelance developer. I have a web site on Linux Red Hat server using Apache Web Server 1.3.29 and Tomcat 4.1. This is on hosting server with others sites. For this reason I can use only one web application that is situated in the public directory of my

How I get the AxisServlet URL within Axis?

2004-03-20 Thread Chris Aiken
Hi together! How I get the current AxisServlet host, AxisServlet port and path to the AxisServlet or the AxisServlet URL within Axis??? I had no success with msgContext.getProperty(I_have_tried_all_keys). Thanks a lot for help, Chris

How I get the AxisServlet URL within Axis?

2004-03-20 Thread Chris Aiken
Hi together! How I get the current AxisServlet host, AxisServlet port and path to the AxisServlet or the AxisServlet URL within Axis??? I had no success with msgContext.getProperty(I_have_tried_all_keys). Thanks a lot for help, Chris

Re: How I get the AxisServlet URL within Axis?

2004-03-20 Thread smcardle
Hi Chris, Here is some code I use from within my WebSevice to access a property file within the Web Context. Hope this helps org.apache.axis.MessageContext axisContext = org.apache.axis.MessageContext.getCurrentContext(); javax.servlet.ServletContext sc =

Re: Very Basic Problem with operation invocation

2004-03-20 Thread Anne Thomas Manes
Kartik, The SOAP 1.1 spec does not specify how to handle multiple child elements in the soap:Body. Therefore it's unpredictable how a SOAP server will handle it. Note that there are quite a few cases of underspecification, ambiguity, and contradiction in the SOAP 1.1 and WSDL 1.1

AW: How I get the AxisServlet URL within Axis?

2004-03-20 Thread Chris Aiken
Hi Steve! I always get: service.properties file not found. Will use defaults with no further error message. What should I do now? Thanks for help! Chris -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 20. März 2004 15:37 An: [EMAIL

AW: How I get the AxisServlet URL within Axis?

2004-03-20 Thread Chris Aiken
Hi Steve! I always get: service.properties file not found. Will use defaults with no further error message. What should I do now? Thanks for help! Chris -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 20. März 2004 15:37 An: [EMAIL

RE: Doc/Literal support in axis

2004-03-20 Thread Nelson Minar
My suggestion is that we fix Axis so that it appends the binding and service elements to existing portType definitions. I like that idea.

Re: ATTN axis-dev: tcpmon Error while using Resend

2004-03-20 Thread Davanum Srinivas
please open a bug report (http://issues.apache.org/jira) thanks, dims --- [EMAIL PROTECTED] wrote: Hi Developers, Got a problem with tcpmon when selecting resend for the 2nd time. The first time works and prints to the display as well as updating the tcpmon result view. However, the

Re: declare attachment in wsdl

2004-03-20 Thread Jim Collins
Hi, AFAIK you cannot specify that a client must send an attachment or that a service returns an attachment in WSDL. There is an example in the samples directory of a method signature for sending and retrieving attachments (they use custome serialisers). This worked fine for me on the Java only

Re: SAOP with attachments error And how to write programms

2004-03-20 Thread Jim Collins
I had the same error and upgraded to AXIS 1.2 alpha and it fixed the problem. Regards Jim. - Original Message - From: Asanka Priyanjitih To: [EMAIL PROTECTED] Sent: Thursday, March 18, 2004 11:25 AM Subject: SAOP with attachments error And how to write

Re: Tool for autogenerating wsdd typeMapping beanMapping?

2004-03-20 Thread Jim Collins
Try using java2wsdl. Regards Jim. - Original Message - From: BLIS Webmaster (Patrick Houbaux) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 18, 2004 12:33 PM Subject: Re: Tool for autogenerating wsdd typeMapping beanMapping? Hi Steve, I don't understand, I thought

Re: stop AxisServlet

2004-03-20 Thread Jim Collins
If you deploy AXIS to tomcat you can use the Tomcat Manager to deploy/undeploy AXIS. Regards Jim. - Original Message - From: Serge Nikitin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 18, 2004 1:35 PM Subject: stop AxisServlet Plz, help me. I have webapp and it use

Using bean mapping

2004-03-20 Thread Fabricio B. Teixeira
Hi, I´ve developed a web service and I am trying to call it, but the following error is raised: java.io.IOException: No serializer found for class QuerySequence in registry [EMAIL PROTECTED] Looking at the web I found out that the WSDD file should have a beanMapping tag. Is It rigth? What shoud I

.NET client to Axis WS problem

2004-03-20 Thread sergeant
Hi Pedro, I had a problem that looked the same when I added WSE to my .NET configuration. In that case it was caused by WS-Routing and was solved by turning off the MustUnderstand flag on PATH, like this in your .NET client code: service.RequestSoapContext.Path.MustUnderstand = false; Note,

Re: declare attachment in wsdl

2004-03-20 Thread sergeant
For you folks that are sending attachments to .NET clients from Axis services, what Servlet Engines are you using? I've been having trouble getting Tomcat 4.1.29 to do this. I am using the same approach as Jim just spelled out. Thanks, --Sergeant === Jim: === Hi, AFAIK you

Ws-Security ds:keyInfo for secrete key

2004-03-20 Thread Mei Wu
Hi, I am developing a message level security framework in which secrete key is included. I am a bit confused about how to create a ds:KeyInfo for such a secrete key, since if I follow WS-Security to create: ds:KeyInfo wsse:SecurityTokenReference wsse:Reference URI=#1/

Re: Ws-Security ds:keyInfo for secrete key

2004-03-20 Thread Mei Wu
On Saturday 20 March 2004 06:43 pm, Mei Wu wrote: I found the problem is actually caused by a global handler (samples.security.LogHandler) that I though was undeployed. So, it might be a much simpler question: how do I undeploy such a global handler? I did : java