RE: Array of Objects in Axis and .NET interop

2004-11-05 Thread Patrick Herber
re by Eric (thanks!) and afterwards it worked just fine. Does somebody see any problem applying this patch? (If not why is it not yet included in the standard axis distribution?) Thanks a lot for your advice. Best regards, Patrick Patrick Herber > -Original Message- > Fro

RE: Obtaining the client hostname inside *BindingImpl.java

2004-10-20 Thread Patrick Herber
, req ); and see if than work... Regards, Patrick > -Original Message- > From: Luca Manganelli [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 19. Oktober 2004 14:01 > To: [EMAIL PROTECTED] > Subject: Re: Obtaining the client hostname inside *BindingImpl.java > > Patrick

RE: Obtaining the client hostname inside *BindingImpl.java

2004-10-19 Thread Patrick Herber
ca Manganelli [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 19. Oktober 2004 11:47 > To: [EMAIL PROTECTED] > Subject: Re: Obtaining the client hostname inside *BindingImpl.java > > Patrick Herber wrote: > > >Hi, > > > >I think you could do something like: > &g

RE: Obtaining the client hostname inside *BindingImpl.java

2004-10-19 Thread Patrick Herber
Hi, I think you could do something like: MessageContext context = MessageContext.getCurrentContext(); HttpServletRequest request = (HttpServletRequest) context.getProperty(HTTPConstants.MC_HTTP_SERVLETREQUEST); String clientHost = request.getRemoteAddr(); Regards, Patrick > -Original Mes

RE: newbie: namespace error - Enco ded IP

2004-10-12 Thread Patrick Herber
; > I have never tried using a : before in a namespace and can't > remember if it is a legal character for a QNAME, you could > look this up on the w3c site if you have time. > > Regards > > Steve > > Quoting Patrick Herber <[EMAIL PROTECTED]>: > >

RE: [*** Mogelijke SPAM ***] - RE: newbie: namespace error - Enco ded IP

2004-10-12 Thread Patrick Herber
xmlns="http://www.w3.org/2001/XMLSchema";> > > > > > > > > > > targetNamespace="urn:tempuri-org:RISC" > xmlns="http://www.w3.org/2001/XMLSchema";> > > > > > > > > > > > > > > > > > > > >

RE: newbie: namespace error

2004-10-12 Thread Patrick Herber
Hello; NAMESPACE_ERR is raised if the qualifiedName is malformed, if the qualifiedName has a prefix and the namespaceURI is null, or if the qualifiedName has a prefix that is "xml" and the namespaceURI is different from "http://www.w3.org/XML/1998/namespace"; [Namespaces]. In your case is not tha

RE: How to access HTTP headers from provider

2004-10-12 Thread Patrick Herber
Hi, I made so: MessageContext context = MessageContext.getCurrentContext(); HttpServletRequest request = (HttpServletRequest) context.getProperty(HTTPConstants.MC_HTTP_SERVLETREQUEST); String myValue = req.getHeader("myHeader"); Regards, Patrick > -Original Message- > From: Ja

RE: starting axis in tomcat manager

2004-10-01 Thread Patrick Herber
Hi, did you see if tomcat wrote something in its log files (catalina.log)? Regards, Patrick From: Suzy Fynes [mailto:[EMAIL PROTECTED] Sent: Freitag, 1. Oktober 2004 13:52To: [EMAIL PROTECTED]Subject: starting axis in tomcat manager Hey,   I did a stop on tomcat ma

RE: "Strange" format of RPC/encoded messages

2004-09-22 Thread Patrick Herber
This is specified by the SOAP Encoding and is > normal (correct me anyone if I am wrong). You can change > this behaviour of AXIS in the server-config.wsdd which is in > the WEB-INF directory of the AXIS webapp directory. > > > > Paul > > > > > > > &

"Strange" format of RPC/encoded messages

2004-09-22 Thread Patrick Herber
Hi, I created a simple web service with style RPC/encoded, which receives and returns complex objects (a request containing an array of sub-requests, which in turn contain arrays of sub-sub-requests and the same structure for the response). It works fine (for the moment), however I see that the ge

SAXException SimpleDeserializer encountered a child element... after calling ?wsdl - SOLVED

2004-09-20 Thread Patrick Herber
problems... Regards, Patrick > -Original Message- > From: Patrick Herber [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 14. September 2004 10:38 > To: [EMAIL PROTECTED] > Subject: RE: bug in apache axis 1.2 beta ? > > Hi, > > I'm also having this problem.

RE: bug in apache axis 1.2 beta ?

2004-09-14 Thread Patrick Herber
Hi, I'm also having this problem. I'm using Axis 1.2 beta 3 with Tomcat. Wenn the server starts my WS works fine, as soon I call the ...?wsdl URL I receive the described exception. Regards, Patrick > -Original Message- > From: Consultnix [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 14

Scope - Performance

2004-09-08 Thread Patrick Herber
oblem) and is going to be use by many concurrent users. Which is the suitable scope for such a service? Where can I find a "guide" about the scope of the Web Service (when to use which)? I've tried to google for it, but without success (perhaps I've used a bad query...) Tha