RE: viewing wsdls in browser

2005-09-14 Thread Yampolsky, Robert
I had this problem, and it turned out that I had set AXISCPP_DEPLOY in my httpd init script, but had forgotten to export it.  The code that looks for the wsdl files doesn't check for errors when it gets AXISCPP_DEPLOY and so segfaults.   I also had problems with axis not setting the correct m

RE: local client works - remote doesn't

2005-06-28 Thread Yampolsky, Robert
ere is no specific setting that you need to get Axis C++ work outside local network. I think the problem here seems to be with the namespace. Can you make the client to send the request without the namespace? Samisa... On 6/27/05, Yampolsky, Robert <[EMAIL PROTECTED]> wrote: > I have a c

local client works - remote doesn't

2005-06-27 Thread Yampolsky, Robert
I have a client and server both working on my RHES3.0 box, and I've been trying to work with another organization to get their .NET app to access my service. I got them to specify the soapAction the way Axis expects, and they still can't connect. They get the following soapfault: SOAP-ENV:Client

RE: Filtering requests by client IP address?

2005-06-07 Thread Yampolsky, Robert
oming up with a solution that will be great. SSL : I think that should be possible. However need to try and see. Thanks, Samisa... -Original Message- From: Yampolsky, Robert [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 01, 2005 8:28 PM To: Apache AXIS C User List Subject: RE: Filtering r

RE: Filtering requests by client IP address?

2005-06-01 Thread Yampolsky, Robert
ledge, it is not possible to extract client IP from server side. However, as we are running with Apache it should be possible to get this from the server side module and expose that to the service. Thanks, Samisa... On Tue, 2005-05-31 at 16:03, Yampolsky, Robert wrote: > Is it possible in an

Filtering requests by client IP address?

2005-05-31 Thread Yampolsky, Robert
Is it possible in an Axis C++ service to determine the IP address of the client. My service is supposed to filter on this and match it up against a database of registered clients. It looks like it might be possible to dig into the call heirarchy and get the socket handle from the Channel, but I'm

RE: URL encoding or HTML encoding

2005-05-26 Thread Yampolsky, Robert
t for URL encoding. However, I am not sure if HTML encoding is done properly - I do not think we have a test to verify this. If you could lead to some test data (that is input and expected output) we would be able to verify. Thanks, Samisa... On Wed, 2005-05-25 at 21:16, Yampolsky, Robert wrot

URL encoding or HTML encoding

2005-05-25 Thread Yampolsky, Robert
I'm trying to figure out whether Axiscpp uses URL encoding or HTML encoding to handle special characters in message payloads. I'm guessing it uses HTML encoding, since I see references to ENCODED_LESSER set to "<". But the organization that's setting standards for my web services project just put

RE: Can't build 1.5 source - .deps not there

2005-05-25 Thread Yampolsky, Robert
---Original Message-----From: Yampolsky, Robert [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 24, 2005 11:44 PMTo: Yampolsky, Robert; axis-c-user@ws.apache.orgSubject: RE: Can't build 1.5 source - .deps not there   So, looking at the Makefile's I guess these .deps directories are suppos

RE: Can't build 1.5 source - .deps not there

2005-05-24 Thread Yampolsky, Robert
brid compiler set? Is it possible that other problems I've been having (can't get ?wsdl URL's to work) could be related to this? Thanks, Rob _____ From:   Yampolsky, Robert  Sent:   Monday, May 23, 2005 12:02 PM To: '

Can't build 1.5 source - .deps not there

2005-05-23 Thread Yampolsky, Robert
Title: Can't build 1.5 source - .deps not there I'm trying to build axisc++ from the 1.5.0 source. Configure ran okay, but make reports failed attempts to access stuff in .deps subdirectories.  They're not there.  Is the source tarball bad, or is there something I can do at .configure time

RE: soapAction and .NET interoperability

2005-05-17 Thread Yampolsky, Robert
I was testing my Axis service with a partner who's client is built in .NET.   Once I got him to provide the SOAPAction header in the format Axis wanted, I was able to run the service, but then his client didn't like the response packet (included below).  He thinks the problem is the fact th

RE: soapAction and .NET interoperability

2005-05-11 Thread Yampolsky, Robert
anism> - there is a Jira issue raised on this)> > Hence I think you have to figure out how to set the SOAPAction with .net> client. I am not sure how to do this exactly but> http://msdn.microsoft.com/library/default.asp?url="">> tml/frlrfSystemRuntimeRemotingMet

RE: soapAction and .NET interoperability

2005-05-11 Thread Yampolsky, Robert
ributeClassSoapAction Topic.asp may lead to a clue. Thanks, Samisa... -Original Message- From: Yampolsky, Robert [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 2:39 AM To: Apache AXIS C User List Subject: soapAction and .NET interoperability I've seen posted here that Axis s

RE: list of deployed web services

2005-05-11 Thread Yampolsky, Robert
ot support this ?wsdl URLs. It only works with Apache. Also note that, Axis C++ engine is not capable of generating the WSDL for the service. Rather it gives out the WSDL file stored in $AXISCPP_DEPLOY/wsdls folder. Thanks, Samisa... -Original Message- From: Yampolsky, Robert [mailto:[

soapAction and .NET interoperability

2005-05-10 Thread Yampolsky, Robert
I've seen posted here that Axis services don't work with soapAction set to "". I can verify that that's the case. With no soapAction, I get a "Soap method is not allowed to invoke" exception, but when I put it in, I'm able to access the service. As a matter of fact, it seems to only require the

RE: list of deployed web services

2005-05-10 Thread Yampolsky, Robert
). If you enter http://localhost/axis/array?wsdl in the url combo explicitly it should work. Tony Dodd Oxford University Research Technologies (Xaira) >-Original Message- >From: Yampolsky, Robert [mailto:[EMAIL PROTECTED] >Sent: 10 May 2005 16:09 >To: Apache AXIS C User L

RE: list of deployed web services

2005-05-10 Thread Yampolsky, Robert
Doesn't work for me. http://localhost/axis does bring up a page with links to all the wsdl's, but when I click on any of those links I get a 503 error in my browser, and the Apache error log logs a segfault. Any idea how to debug this? -Original Message- From: Samisa Abeysinghe [mailto:[

RE: Newbie questions and some weird behavior

2005-05-06 Thread Yampolsky, Robert
>One thing to figure out is to know whether the error is in generated >code or in the user written code. Will have to generate the code and >see. Okay. There's not much code, though. This is a trivial test of the service, and all it does is print out the input to a log file, copy back the input

RE: Newbie questions and some weird behavior

2005-05-05 Thread Yampolsky, Robert
> Will have a look at you wsdl and see if I could get it working. Please > try simple axis server in the mean time. > > Thanks, > Samisa... > Thanks. I tried simple axis server with gdb, and was able to debug my server. It now is able to log its inputs and outputs, and they look basically right

Newbie questions and some weird behavior

2005-05-04 Thread Yampolsky, Robert
Title: Newbie questions and some weird behavior I'm an axis newbie, and am having trouble getting my first service to work.  I am able to build and deploy a simple MD5Service I found on the web, so I think my axis and apache installations are working ok.  It's axiscpp 1.5 and apache 2.0.46 (R