.NET and attachments to Axis....

2005-05-25 Thread Grimm_Clifford
Anyone have an example of how to send an attachment in a .NET client to send to an Axis Server? I don't care what .NET language since they are pretty much similar. Cliff --- Clifford Grimm Centera Integration Architect EMC C

RE: axis + vb .net

2005-05-24 Thread Grimm_Clifford
I am using Axis 1.2 and ran into a problem similar to this. I figured out that Visual Studio .NET does not understand the Version 1.2 type mapping. What I found worked is to change the deploy.wsdd so that the typeMappingVerison is 1.1. For example. I'm not sure if something else needs to

Timeout for service request.

2005-05-20 Thread Grimm_Clifford
Is there a way to change the read timeout on the Client side? I have an operation that can take multiple minutes to complete. The following is the failure that I get: Exception in thread "main" AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException

Questions about Scope in Axis 1.2.

2005-05-20 Thread Grimm_Clifford
In Application scope, are the requests to the service serialized to only one running at a time? If not, I could use a little explanation of how the class objects for the service are "shared" in a thread safe manner between multiple sessions for any given service. I am also assuming that the "Sessi

Configuring max sessions for a service...

2005-05-17 Thread Grimm_Clifford
Is it possible to configure axis to only allow a certain number of concurrent sessions to a service? If so how can it be configured. What I'm thinking is like the MaxClients directive for Tomcat/Apache-HTTP. Thanks! Cliff --

RE: config files

2005-05-13 Thread Grimm_Clifford
Put it in "axis\WEB-INF\classes". Then use this.getClass().getResource("/myfile.conf"); > -Original Message- > From: Nguyen Tuan Anh [mailto:[EMAIL PROTECTED] > Sent: Friday, May 13, 2005 10:03 AM > To: axis-user@ws.apache.org > Subject: config files > > Hi, > > I need to deploy a w

Locating file from Axis Environment..

2005-05-12 Thread Grimm_Clifford
Looking for suggestion. I'm running Axis 1.2 Final. I have a Service that needs to locate a configuration file that is special to itself. Think of it as the equivalent of server.xml for Tomcat. I need to put this file someplace, but obviously I don't want to hard code it in the code. I would

Problems with WSDL2Ws tool in Axis C/C++ 1.5

2005-05-09 Thread Grimm_Clifford
On Windows, I am attempting to generate C/C++ client stubs for an interface and am running into an error using the WSDL2Ws utility included with the Axis C/C++ 1.5 distribution. I am using Axis Java 1.2 (FINAL) as the run-time with JRE 1.5_02. I believe my CLASSPATH is setup appropriately for thi

RE: Axis Sessions and Visual Studio .NET..

2005-05-09 Thread Grimm_Clifford
Pardon me if I answer my own question. Second search for the answer found a solution. Figured I would share the answer. Here is the answer I go from MSDN.. The problem is with the cookies. The Web service code does not see a valid session ID with the request, so it creates a b

Axis Sessions and Visual Studio .NET..

2005-05-09 Thread Grimm_Clifford
I have an Axis Service that is properly configured to maintain a session. I have a java client application with a stub properly generated so that it does maintain the session across calls by making the call: _call.setProperty(org.apache.axis.client.Call.SESSION_MAINTAIN_PROPERTY, Boolean.TRUE

Data persistence and sessions...

2005-04-29 Thread Grimm_Clifford
I'm a bit new to Axis and Web Programming in general. I have done the very basics with Axis. Looking for an example or pointers for something a bit more advanced than the user's guide gives. I need to create a service that is session oriented. The reason is that I would like to have some data as

RE: Axis Log4j initialization failure...

2005-04-29 Thread Grimm_Clifford
Thanks. This was the problem. > -Original Message- > From: Cameron Bromley [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 28, 2005 7:22 PM > To: axis-user@ws.apache.org > Subject: RE: Axis Log4j initialization failure... > > You need to make sure the log4j.properties file is in the c

Axis Log4j initialization failure...

2005-04-28 Thread Grimm_Clifford
Back in February someone reported a problem with the Axis 1.2 always reporting the following. log4j:WARN No appenders could be found for logger (org.apache.axis.i18n.ProjectResourceBundle). log4j:WARN Please initialize the log4j system properly. This occurs when trying to execute any client SOAP

RE: Exception in thread "main" java.lang.NoClassDefFoundError

2005-04-26 Thread Grimm_Clifford
Looks like you need to put quotes around the specification of classpath. java -cp "%AXISCLASSPATH%" ... > -Original Message- > From: Plorks mail [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 26, 2005 6:18 AM > To: axis-user@ws.apache.org > Subject: Exception in thread "main" java.l