Axis client logging

2005-02-18 Thread Halsema, Aillil I
I've got a simple Axis client running on Windows XP, but every time I start it the messages "log4j:WARN No appenders could be found for logger (org.apache.axis.i18n.ProjectResourceBundle).""log4j:WARN Please initialize the log4j system properly."   appear on the

Possible? Axis Client to "Pass On" Soap Request

2005-02-09 Thread Ry.
Hi, I want to pass a fully formed SOAP message over a wireless network to a Web service client, and get the client to invoke the web service with it. I have seen examples of Axis taking parameters and using them to create the call the web service, however can anyone explain how to use Axis to invok

RE: java.lang.OutOfMemoryError and Axis client stubs

2005-01-12 Thread Sanket Desai
Title: java.lang.OutOfMemoryError and Axis client stubs SAAJ should help you in this case I would think even though I've not tried it.   In fact we ran across a similar problem of sending a large dataset in the body of SOAP message. Since we're using Globus toolkit (GT3), we r

java.lang.OutOfMemoryError and Axis client stubs

2005-01-12 Thread Milazzo, Michael A HQISEC
Title: java.lang.OutOfMemoryError and Axis client stubs Hello, I deployed an Axis-based wrapped-style web service that accepts strings and a byte array as parameters.  I generated the client stubs using WSDL2Java and my client works for small files (6.3 MB).  I attempted to send a 63 MB

RE: XML Input to Axis Client Side API for web service invocation

2004-12-22 Thread THOMAS, JAI [AG-Contractor/1000]
s and invoke the service.   Jai   -Original Message-From: Adaptive Protocols [mailto:[EMAIL PROTECTED]Sent: Tuesday, December 21, 2004 9:04 PMTo: [EMAIL PROTECTED]Subject: RE: XML Input to Axis Client Side API for web service invocation Hi Jai, Hi Christian   Thanks fo

RE: XML Input to Axis Client Side API for web service invocation

2004-12-21 Thread Adaptive Protocols
that according to requirement, we can ask to Axis Client to accept these xml structures for attributes and if the service is of message style, pass it as it is otherwise just insert the given xml in place of parameters serialized structure.   This is the specific scenario that we want to enable on

RE: XML Input to Axis Client Side API for web service invocation

2004-12-21 Thread THOMAS, JAI [AG-Contractor/1000]
: Monday, December 20, 2004 11:19 PMTo: AxisUser MailingListSubject: XML Input to Axis Client Side API for web service invocation Hello Everybody,   I have an issue with Axis Client side API. The requirement is that:   I want to invoke web services using Axis Client. Now here I

RE : XML Input to Axis Client Side API for web service invocation

2004-12-21 Thread Faucher, Christian
, your server-side must accept SOAP messaging as input too...   Hope it helps!   Christian Faucher -Message d'origine-De : Adaptive Protocols [mailto:[EMAIL PROTECTED] Envoyé : mardi 21 décembre 2004 00:19À : AxisUser MailingListObjet : XML Input to Axis Client Side AP

XML Input to Axis Client Side API for web service invocation

2004-12-20 Thread Adaptive Protocols
Hello Everybody,   I have an issue with Axis Client side API. The requirement is that:   I want to invoke web services using Axis Client. Now here I don't have parameters as java objects rather I do have XML structure ( as required for soap message ) for these objects. So is there any w

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread tony . q . weddle
ohn Walker wrote: > >  > >>Is it possible to get and set cookies on the HTTP transport from the > >  > >>*client* side of Axis? > >  > > > >  > > > >  > > I tried using the MessageContext to get the HttpRequest object, and &g

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread Tim K. (Gmane)
;>*client* side of Axis? > > > > > > I tried using the MessageContext to get the HttpRequest object, and > > then set cookies there, but it seemed that when doing this from the > > AXIS client side, when the HTTP message got to the receiver, my > >

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread tony . q . weddle
sible to get and set cookies on the HTTP transport from the > >>*client* side of Axis? > > > > > > I tried using the MessageContext to get the HttpRequest object, and > > then set cookies there, but it seemed that when doing this from the > > AXIS client

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread Tim K. (Gmane)
John Walker wrote: Is it possible to get and set cookies on the HTTP transport from the *client* side of Axis? I tried using the MessageContext to get the HttpRequest object, and then set cookies there, but it seemed that when doing this from the AXIS client side, when the HTTP message got to

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread tony . q . weddle
John, I'm not sure what you were getting back from the MessageContext but there is no HttpRequest available from the Axis client. HttpRequests only exist on the server. Of course, your client may be embedded in a server side object but the HttpRequest for that would not be the one assoc

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread John Walker
> Is it possible to get and set cookies on the HTTP transport from the > *client* side of Axis? I tried using the MessageContext to get the HttpRequest object, and then set cookies there, but it seemed that when doing this from the AXIS client side, when the HTTP message got to the receiv

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread tony . q . weddle
Well, Axis stores cookies in the message context, so I guess you could simply put your cookies there and they will be picked up for transmission to the server. Axis uses two cookies, "Cookie" and "Cookie2". The first contains the session ID (e.g. "JSESSIONID=206048F23B7AB387C5B2801622EF2C1C"). I'm

How to get/set cookies from the Axis *client* side?

2004-11-30 Thread Tim K. (Gmane)
Is it possible to get and set cookies on the HTTP transport from the *client* side of Axis? If so, how? Are there any examples, please? Thank you. Tim

Re: Axis client SSL

2004-11-25 Thread Lyndon Tiu
Thank you. Your suggestion worked! -- Lyndon Tiu Alex Karshakevich wrote: Ususally this involves just changing the URL from http://... to https://..., no special programming needed. Only if you are using client certificates as well, you will need to set up some system properties(javax.net.ssl.ke

Re: Axis client SSL

2004-11-25 Thread Alex Karshakevich
Can someone on this list kindly point me to some sample code on how to enable SSL in an Axis client. Ususally this involves just changing the URL from http://... to https://..., no special programming needed. Only if you are using client certificates as well, you will need to set up some

Axis client SSL

2004-11-25 Thread Lyndon Tiu
Hello, Can someone on this list kindly point me to some sample code on how to enable SSL in an Axis client. I know how to setup my servlet container (Tomcat 5) for SSL, now I am at a lost trying to make an Axis client talk to the SSL enabled Web Service. I believe there will be some custom

Re: axis-client in EJB session bean (jboss)

2004-11-15 Thread Peter Gerstbach
Peter Mount wrote: Peter Gerstbach wrote: I've generated with Axis-1.1 stubs for the Google-webservice and built a working client. Then I've built an EJB session bean in JBoss were I call the google-webservice. I use the same (copy-paste) methods in the bean as in the axis-client but ev

Re: axis-client in EJB session bean (jboss)

2004-11-14 Thread Peter Mount
Peter Gerstbach wrote: Hi, I've generated with Axis-1.1 stubs for the Google-webservice and built a working client. Then I've built an EJB session bean in JBoss were I call the google-webservice. I use the same (copy-paste) methods in the bean as in the axis-client but every time I invok

axis-client in EJB session bean (jboss)

2004-11-14 Thread Peter Gerstbach
Hi, I've generated with Axis-1.1 stubs for the Google-webservice and built a working client. Then I've built an EJB session bean in JBoss were I call the google-webservice. I use the same (copy-paste) methods in the bean as in the axis-client but every time I invoke the bean-method f

Using axis client stubs from a webapp

2004-11-09 Thread Hendrickson, Jacob
I'm using client stubs generated by wsdl2java in a web application, and I'm curious about the best way to instantiate the stub objects. I use the stub objects to call methods on a SOAP service on several different pages, so that the SOAP methods get called on per-request basis. Right now I'm u

RE: Use of multiple client certificates in axis client

2004-11-03 Thread Hubble, Christopher
Title: Use of multiple client certificates in axis client -shrug-  Ya got me.  All I know is that you can have multiple certs in one keystore, and I don't remember seeing a way to differentiate them programmatically.  You can assign each one an alias, but from what I can tell, that&#

RE: Use of multiple client certificates in axis client

2004-11-03 Thread Cor Hofman
Title: Use of multiple client certificates in axis client Hi Chris,   Thank you for your answer. Maybe this is out of scope, but how does it know what is the proper certificate?   Regards.       Cor. -Oorspronkelijk bericht-Van: Hubble, Christopher [mailto:[EMAIL PROTECTED

RE: Use of multiple client certificates in axis client

2004-11-03 Thread Hubble, Christopher
Title: Use of multiple client certificates in axis client I _believe_ you can simply add all of your certs to the keystore that you are using.  Then when your ssl connection is created, it will check your keystore for the proper cert.   Chris -Original Message-From: Cor Hofman

Use of multiple client certificates in axis client

2004-11-03 Thread Cor Hofman
Title: Use of multiple client certificates in axis client Hi,   I have to send several AXIS-SOAP request via SSL using different client certificates. The certificate of choice depends on the web service I am targeting. How do I do this? The easy solution seems to be, create several

locating axis client-config.wsdd, server-config.wsdd

2004-10-29 Thread Brian Dillon (ext. 944)
Hi, Is there some way of access the location that the client-config.wsdd and the server-config.wsdd were loaded from. I can't see it in the API. The reason we want this is so that we can either check logging to see if something has been incorrectly set-up on a developer/prodution machine or in the

Axis client library

2004-10-18 Thread Gries, Matthias
Hi all, is it possible to get a 'light' axis lib which contains only Java classes which are required to develop a webservice client? Regards Matthias -- Hausanschrift: T-Online International AG Mornewegstrasse 26-32 64293 Darmstadt Telefon: +49 6151 680 7653 E-Mail: [EMAIL PROTECTED] its-people

RE: Axis Client

2004-10-06 Thread Hubble, Christopher
I think I found the problem. It seems that I was running two different versions of java. Chris -Original Message- From: Hubble, Christopher [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 10:03 AM To: [EMAIL PROTECTED] Subject: Axis Client I've created a test clien

Axis Client

2004-10-06 Thread Hubble, Christopher
I've created a test client for one of my web services. I'm developing in Eclipse 3.0 with Axis 1.1. When I run the client in Eclipse, it requires jaxrpc.jar, axis.jar, commons-logging.jar, commons-discovery.jar, and saaj.jar. These are all out of the axis lib dir. However, when I jar up my clas

Axis client service

2004-10-04 Thread Suzy Fynes
    Hi,   I trying to create a client of a service and when I create the Service object   Service service = new Service();   I getting the error   Cannot instantiate the type Service, since it is not a concrete class Is this normal?   Also when doing the AuthBasicClient class

Can't run my Axis client app from command line

2004-09-28 Thread Denise Howard
Has anybody tried to run Salesforce's Quickstart sample application? It's a simple, pure-Java command-line Axis client. I am able to build and run it just fine within Eclipse, but if I export Quickstart.jar (ensuring that Quickstart is specified as the main class in the manifest) and

RE: Axis client to .NET server problems

2004-09-24 Thread Anne Thomas Manes
Title: RE: Axis client to .NET server problems I suggest that you run wsdl2java and use the generated stub rather than using the DII call interface.   The wrapped style (which automatically marshals your parameters) doesn’t work with the call interface. It works only when using the stub

RE: Axis client to .NET server problems

2004-09-24 Thread Anne Thomas Manes
Title: RE: Axis client to .NET server problems I suggest that you run wsdl2java and use the generated stub rather than using the DII call interface.   The wrapped style (which automatically marshals your parameters) doesn’t work with the call interface. It works only when using the stub

RE: Axis client to .NET server problems

2004-09-24 Thread Peter S. Ng
Title: RE: Axis client to .NET server problems Hi, I altered the operation style to "document" in the Call object, but when the request shows up as: http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.

RE: Axis client to .NET server problems

2004-09-24 Thread Sunkara, Jayachandra S
Title: Axis client to .NET server problems Make sure you don’t have your client configured to send the soap message in the RPC/literal style. Follow DOCUMENT/literal style. That should work fine. That’s what I did, when I experienced similar problem interoping with a .NET server. .NET by

Axis client to .NET server problems

2004-09-24 Thread Peter S. Ng
Title: Axis client to .NET server problems Hi, I have created a client using AXIS to talk to a .NET service however, I always this error: - http://xml.apache.org/axis/}stackTrace:org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected

Re: OutOfMemoryException from my Axis client

2004-09-21 Thread Venkat Reddy
t; >> > >> > >> > Hi James, > >> > > >> > You did not mention the Axis or Java version you are using. See if > >> this applies to your current use: > >> > > >> > http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4724129 > >

Re: OutOfMemoryException from my Axis client

2004-09-21 Thread James CE Johnson
re using. See if >> this applies to your current use: >> > >> > http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4724129 >> > >> > --Thunder >> > >> > -Original Message- >> > From: James CE Johnson [mailto:[EMAIL PROTECTED] &

Re: OutOfMemoryException from my Axis client

2004-09-21 Thread Venkat Reddy
use: > > > > http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4724129 > > > > --Thunder > > > > -Original Message- > > From: James CE Johnson [mailto:[EMAIL PROTECTED] > > Sent: Monday, September 20, 2004 8:57 AM > > To: [EMAIL PROTECTED] >

RE: OutOfMemoryException from my Axis client

2004-09-20 Thread James CE Johnson
der > > -Original Message- > From: James CE Johnson [mailto:[EMAIL PROTECTED] > Sent: Monday, September 20, 2004 8:57 AM > To: [EMAIL PROTECTED] > Subject: OutOfMemoryException from my Axis client > > Has anybody else seen anything like this? > > I've got

RE: OutOfMemoryException from my Axis client

2004-09-20 Thread Parley, Thunder Jon
:57 AM To: [EMAIL PROTECTED] Subject: OutOfMemoryException from my Axis client Has anybody else seen anything like this? I've got an Axis-based server (Server "A") that must call another Axis-based server (Server "B"). In testing we discovered that Server A was running out

OutOfMemoryException from my Axis client

2004-09-20 Thread James CE Johnson
at only one is calling at any single point in time - I still run out of memory.) So, my question is, has anyone seen this kind of thing in an Axis client? Does Axis store some ThreadLocal data that might be causing this? Is there a way I can cleanly/safely have each thread "shut down" t

how do I set an http header (from the axis client) in the request to the axis server

2004-09-16 Thread Markus Oberacker
Title: Nachricht Hi,   how do I set an http header (from the axis client) in the request to the axis server. I try the following:       org.apache.axis.MessageContext axisCtx = org.apache.axis.MessageContext.getCurrentContext();    Hashtable userHeaderTable = new Hashtable

AXIS client to gSOAP server through HTTPS..

2004-09-09 Thread rajesh . aroli
  Hi,   iwant to write a AXIS Java client to communicate to the gSOAP server through https can any one tell me what are the steps to do that .. iam a beginer in this...any piece of information wil b of great use...   Thanking You Rajesh Kumar             Rajesh Kumar Aroli Sof

Axis Client is not using registered Deserializer

2004-08-31 Thread Robert Mitschke
Hello, I am new to this list so, hello everybody. I am developing a JBoss based Webservice with Axis. Due to a complicated WSDL File to which I have to be compatible I needed to create a custom Serializer and Deserializer. These do work perfectly on the Server Side. I also use Axis for my test cl

Re: Logging/debugging axis client traffic going over SSL?

2004-08-17 Thread gary . si . grewal
] 08/17/2004 08:03 cc: AM Subject: Logging/debugging axis client traffic going over SSL

Logging/debugging axis client traffic going over SSL?

2004-08-17 Thread Taras Tielkes [sqr]
Hi, I have an Axis web service client, using bindings generated by the wsdl2java Ant task. The traffic is sent over SSL, using HTTPS client certificates for authentication. Is there an easy way to diagnose the messages going over the wire? Since the traffic is encrypted, tools like the axis monit

RE: A question about an Axis client talk to a Perl/SOAP::Lite WS server. Help please!

2004-08-13 Thread Donald Chen
; Anne > > > -Original Message- > From: Donald Chen [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 12, 2004 1:52 PM > To: [EMAIL PROTECTED] > Subject: RE: A question about an Axis client talk to a Perl/SOAP::Lite WS > server. Help please! > > Ann

RE: A question about an Axis client talk to a Perl/SOAP::Lite WS server. Help please!

2004-08-12 Thread Anne Thomas Manes
PActionURI("#echoYa"); and call.setSOAPActionURI(""); Good luck, Anne -Original Message- From: Donald Chen [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 1:52 PM To: [EMAIL PROTECTED] Subject: RE: A question about an Axis client talk to a Perl/SOAP::Lite WS

RE: A question about an Axis client talk to a Perl/SOAP::Lite WS server. Help please!

2004-08-12 Thread Donald Chen
August 12, 2004 9:31 AM > To: [EMAIL PROTECTED] > Subject: A question about an Axis client talk to a Perl/SOAP::Lite WS > server. Help please! > > Hi, All. > > I wrote a simple WS server in Perl(SOAP::Lite 0.55), > which serves its purpose(echoing whatever string it > re

RE: A question about an Axis client talk to a Perl/SOAP::Lite WS server. Help please!

2004-08-12 Thread Anne Thomas Manes
estion about an Axis client talk to a Perl/SOAP::Lite WS server. Help please! Hi, All. I wrote a simple WS server in Perl(SOAP::Lite 0.55), which serves its purpose(echoing whatever string it receives) fine if the client is also in Perl/SOAP::Lite or Apache-Soap-2.3.1. However, if the client is wri

A question about an Axis client talk to a Perl/SOAP::Lite WS server. Help please!

2004-08-12 Thread Xi.Yue Chen.Wu
Hi, All. I wrote a simple WS server in Perl(SOAP::Lite 0.55), which serves its purpose(echoing whatever string it receives) fine if the client is also in Perl/SOAP::Lite or Apache-Soap-2.3.1. However, if the client is written in Axis1.1, the client can not get the service. Here is the detail: T

TeustManager and AXIS client.

2004-08-11 Thread Pravir Ramtekkar
hi, I had posted a message on this list about making AXIS client call to webservice running HTTPS. Everybody seems to be importing the certificates into a keystore and passing them as a system prop. Problem I have is that I dont want to import any certificates for the obvious reasons that they

RE: How to enable Axis client to return more than one cookie

2004-08-09 Thread Liu, Scott
Posted. Thanks. Scott -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Sunday, August 08, 2004 7:33 PM To: [EMAIL PROTECTED] Subject: Re: How to enable Axis client to return more than one cookie Scott, Can you please post your diff to the bug report? -- dims

Re: How to enable Axis client to return more than one cookie

2004-08-08 Thread Davanum Srinivas
iu, Scott > Sent: Thursday, August 05, 2004 12:18 PM > To: [EMAIL PROTECTED] > Subject: RE: How to enable Axis client to return more than one cookie > > Thanks. The patch has not been checked in yet. The patch link only > provides "differences". Does anyone know where can I ge

RE: How to enable Axis client to return more than one cookie

2004-08-08 Thread Liu, Scott
all the good work, Scott -Original Message- From: Liu, Scott Sent: Thursday, August 05, 2004 12:18 PM To: [EMAIL PROTECTED] Subject: RE: How to enable Axis client to return more than one cookie Thanks. The patch has not been checked in yet. The patch link only provides "differ

C++ Axis Client for Axis Web Service HTTP Authentication

2004-08-06 Thread NYY96
All,   Does anybody know how I can create HTTP Authentication for a C++ Axis Client that was created in Visual C++ .net? The service was deployed on a server with Apache Axis and I need to have a C++ client access it.   If you do, please e-mail me, James Crosson [EMAIL PROTECTED]

RE: How to enable Axis client to return more than one cookie

2004-08-05 Thread Liu, Scott
PROTECTED] Sent: Thursday, August 05, 2004 11:33 AM To: [EMAIL PROTECTED] Subject: Re: How to enable Axis client to return more than one cookie http://issues.apache.org/jira/browse/AXIS-1080 - Original Message - From: Liu, Scott <[EMAIL PROTECTED]> Date: Thu, 5 Aug 2004 08:43:28 -

Re: How to enable Axis client to return more than one cookie

2004-08-05 Thread Christian Campo
http://issues.apache.org/jira/browse/AXIS-1080 - Original Message - From: Liu, Scott <[EMAIL PROTECTED]> Date: Thu, 5 Aug 2004 08:43:28 -0700 Subject: RE: How to enable Axis client to return more than one cookie To: [EMAIL PROTECTED] The first question on cookie is inde

RE: How to enable Axis client to return more than one cookie

2004-08-05 Thread Liu, Scott
,   Scott   -Original Message- From: Liu, Scott Sent: Wednesday, August 04, 2004 10:17 PM To: [EMAIL PROTECTED] Subject: How to enable Axis client to return more than one cookie   Hi, All,   I have a question on cookie or session management. This has been baffling me for a while. Hope

How to enable Axis client to return more than one cookie

2004-08-04 Thread Liu, Scott
Hi, All,   I have a question on cookie or session management. This has been baffling me for a while. Hope that someone there has solved a similar problem.   In the application I am running there are two cookies from server. First one is the “JSESSIONID” and the second one is application

Re: Writing a C++ Axis Client

2004-08-03 Thread NYY96
m: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: Tuesday, August 03, 2004 12:44 PMTo: [EMAIL PROTECTED]Subject: Writing a C++ Axis Client Hello fellow programmers,   I am currently trying to write an Axis client in C++. I am using Visual C++ .net to accomplish thi

RE: Writing a C++ Axis Client

2004-08-03 Thread Cervi, Anthony (PCLN-NW)
in C# with Mappoint.NET and it works.   hope this helps. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: Tuesday, August 03, 2004 12:44 PMTo: [EMAIL PROTECTED]Subject: Writing a C++ Axis Client Hello fellow programmers,   I am currently trying to

Writing a C++ Axis Client

2004-08-03 Thread NYY96
Hello fellow programmers,   I am currently trying to write an Axis client in C++. I am using Visual C++ .net to accomplish this task. I was able to succesfully write a client, however now I need to implement authentication.   I am having a terribly hard time finding information on a simple

Re: Axis Client - Dynamic Web Pages

2004-07-26 Thread Ingrid Falk
Hi, > "Keith" == Keith Tingle <[EMAIL PROTECTED]> writes: Keith> For troubleshooting / development purposes I would like to Keith> have some web pages that read the WSDL file of my web Keith> service and build a simple GUI for setting parameter Keith> values... and actually m

RE: Visual Studio Axis Client

2004-07-22 Thread Cervi, Anthony (PCLN-NW)
= bst.copy();   SysFreeString(bs); -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: Thursday, July 22, 2004 1:11 PMTo: [EMAIL PROTECTED]Subject: Visual Studio Axis Client Hello,   I was wondering if anybody knows how to convert a basic string into a BSTR. I

Visual Studio Axis Client

2004-07-22 Thread NYY96
, 2004 11:20 AMTo: [EMAIL PROTECTED]Subject: Re: Visual Studio Axis Client Does Anybody know how I can convert a BSTR* to a type that will output the contents of the String to the screen?   I am currently getting only what seems to be the address of the BSTR

Re: Visual Studio Axis Client

2004-07-22 Thread NYY96
string s = (const char*) bst; printf("this is the string: %s", s.data()); SysFreeString(bs);   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: Thursday, July 22, 2004 11:20 AMTo: [EMAIL PROTECTED]Subject: Re: Visual Studio

RE: Visual Studio Axis Client

2004-07-22 Thread Cervi, Anthony (PCLN-NW)
ilto:[EMAIL PROTECTED]Sent: Thursday, July 22, 2004 11:20 AMTo: [EMAIL PROTECTED]Subject: Re: Visual Studio Axis Client Does Anybody know how I can convert a BSTR* to a type that will output the contents of the String to the screen?   I am currently getting only what seems to b

Re: Visual Studio Axis Client

2004-07-22 Thread NYY96
Does Anybody know how I can convert a BSTR* to a type that will output the contents of the String to the screen?   I am currently getting only what seems to be the address of the BSTR at the screen.   In a message dated 7/21/2004 5:43:55 PM Eastern Standard Time, [EMAIL PROTECTED] writes: Ar

Re: Visual Studio Axis Client

2004-07-22 Thread NYY96
Visual C++ .net 2003   In a message dated 7/21/2004 5:43:55 PM Eastern Standard Time, [EMAIL PROTECTED] writes: Are you using the MS SOAP toolkit or .NET?  Also, are you using Visual Studio 6 or 7 (.NET)?Jim[EMAIL PROTECTED] wrote:> Hello,>  > I am creating a client for my axis web se

Re: Visual Studio Axis Client

2004-07-21 Thread Jim Murphy
Are you using the MS SOAP toolkit or .NET? Also, are you using Visual Studio 6 or 7 (.NET)? Jim [EMAIL PROTECTED] wrote: Hello, I am creating a client for my axis web service in Visual Studio. By using Visual Studio to add a web reference, the program creates several data objects of type BST

RE: Visual Studio Axis Client

2004-07-21 Thread Cervi, Anthony (PCLN-NW)
o: [EMAIL PROTECTED]Subject: Re: Visual Studio Axis Client Thanks for your help.   Any idea what I have to change to handle the BSTR*? I cannot findinfo on the pointer version anywhere.   Thanks again, James   In a message dated 7/21/2004 5:34:39 PM Eastern Standard Time, [EMAIL

Re: Visual Studio Axis Client

2004-07-21 Thread Michael Thompson
Use the address of operator(&) as in: BSTR bstrStatus; pBrowser->get_StatusText( &bstrStatus ); --m [EMAIL PROTECTED] wrote: Thanks for your help. Any idea what I have to change to handle the BSTR*? I cannot findinfo on the pointer version anywhere. Thanks again, James In a message dated

Re: Visual Studio Axis Client

2004-07-21 Thread NYY96
Thanks for your help.   Any idea what I have to change to handle the BSTR*? I cannot findinfo on the pointer version anywhere.   Thanks again, James   In a message dated 7/21/2004 5:34:39 PM Eastern Standard Time, [EMAIL PROTECTED] writes: from msdn.comhttp://msdn.microsoft.com/library/def

Re: Visual Studio Axis Client

2004-07-21 Thread Michael Thompson
from msdn.com http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/vcconStringsAllocatingReleasingMemoryForBSTR.asp Looks like you'll want something like: ::SysAllocString(...), but don't forget ::SysFreeString --m [EMAIL PROTECTED] wrote: Hello, I am creating a client fo

Visual Studio Axis Client

2004-07-21 Thread NYY96
Hello,   I am creating a client for my axis web service in Visual Studio. By using Visual Studio to add a web reference, the program creates several data objects of type BSTR.   I am wondering if anybody could give me a quick explanation why my Strings are getting placed as BSTR's, and one is

Axis Client - Dynamic Web Pages

2004-07-19 Thread Keith Tingle
For troubleshooting / development purposes I would like to have some web pages that read the WSDL file of my web service and build a simple GUI for setting parameter values... and actually making calls. After some googling I can't seem to find any projects like this, but you never know so I will a

Re: Axis client with https

2004-07-12 Thread Jim Murphy
cc Subject Please respond to RE: Axis client with https [EMAIL PROTECTED]

RE: Axis client with https

2004-07-12 Thread Junaid . Bhatra
cc Subject Please respond to RE: Axis client with https [EMAIL PROTECTED]

RE: Axis client with https

2004-07-12 Thread Bill Werth
ed only on configuration", doesn't explain anything to me at this point. Looks like I need to read up on how to configure web apps in Tomcat. -Original Message- From: Michael Binz [mailto:[EMAIL PROTECTED] Sent: Monday, July 12, 2004 10:07 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTE

RE: Axis client with https

2004-07-12 Thread Michael Binz
Bill, Matthias > Yes, that is what I did. You need to create a new WSDL file that has the > https endpoint url. I created my WSDL with Java2WSDL, so I only changed > the > -l parameter to the new url. Be sure that you use the same server name as > will be used when you create the SSL certificate w

RE: Axis client with https

2004-07-12 Thread Bill Werth
etProperty type of statement because it knows where to look for the certificate on a Windows PC. -Original Message- From: Gries, Matthias [mailto:[EMAIL PROTECTED] Sent: Monday, July 12, 2004 12:37 AM To: [EMAIL PROTECTED] Subject: Axis client with https Hi all, allthaugh I've found so

Axis client with https

2004-07-12 Thread Gries, Matthias
Hi all, allthaugh I've found some threads regarding my topic in the mailing list this still seems to be a little bit unclear for me. I've generated my client stubs via WSDL2JAVA. Using http my axis client using these stubs works fine. But what do I have to consider if I'd have t

Re: Urgent & Desperate Help with My Axis Client

2004-07-01 Thread NYY96
]  [mailto:[EMAIL PROTECTED]> Sent: 01 July 2004 16:49> To:  [EMAIL PROTECTED]> Subject: Re: Urgent & Desperate Help  with My Axis Client> > > > Yes this address is the address of the page that lists all the deployed  > services in axis and works correctly

Re: Urgent & Desperate Help with My Axis Client

2004-07-01 Thread David Beahm
-- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 01 July 2004 16:49 To: [EMAIL PROTECTED] Subject: Re: Urgent & Desperate Help with My Axis Client Yes this address is the address of the page that lists all the deployed services in axis and works correctly... Any ideas? In a messag

Re: Urgent & Desperate Help with My Axis Client

2004-07-01 Thread NYY96
ct to http://localhost:8081/axis/adminDirect - as that is the URL your code actually uses.   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: 01 July 2004 16:49To: [EMAIL PROTECTED]Subject: Re: Urgent & Desperate Help with My Axis Clien

RE: Urgent & Desperate Help with My Axis Client

2004-07-01 Thread Keith Hatton
Help with My Axis Client Yes this address is the address of the page that lists all the deployed services in axis and works correctly...   Any ideas?     In a message dated 7/1/2004 11:47:12 AM Eastern Standard Time, [EMAIL PROTECTED] writes: Obvious question, but can

Re: Urgent & Desperate Help with My Axis Client

2004-07-01 Thread NYY96
                       Subject:  Urgent & Desperate Help with My Axis Client                                            Please respond to                                                                                                         axis-

Re: Urgent & Desperate Help with My Axis Client

2004-07-01 Thread Jeff
ECTED] ; [EMAIL PROTECTED] Sent: Thursday, July 01, 2004 11:05 AM Subject: Urgent & Desperate Help with My Axis Client Hello,   I am in desperate need of some assistance with my Axis client. I would be ecstatic if somebody would be generous enough to help me! Even just a glan

Re: Urgent & Desperate Help with My Axis Client

2004-07-01 Thread greyson . smith
: AM Subject: Urgent & Desperate Help with My Axis Client Please respond to axis-

Urgent & Desperate Help with My Axis Client

2004-07-01 Thread NYY96
Hello,   I am in desperate need of some assistance with my Axis client. I would be ecstatic if somebody would be generous enough to help me! Even just a glance at this code would work!   I have a properly deployed web service in Axis and I am trying to write a client that utilizes it. I

Re: Axis client maintaining connection to server

2004-06-24 Thread Niels Hagelberg
TED] Sent: Thursday, June 24, 2004 9:52 AM To: [EMAIL PROTECTED] Subject: Axis client maintaining connection to server Hello, We are using Axis Client for accessing a Web service layer in a large production environment, which has the following setup: 1 x Server A (WLS 6.1) ---Webservice call--->

RE: Axis client maintaining connection to server

2004-06-24 Thread Fontanel, Laurent
elberg [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 24, 2004 9:52 AM > To: [EMAIL PROTECTED] > Subject: Axis client maintaining connection to server > > Hello, > > We are using Axis Client for accessing a Web service layer in > a large production environment, which h

Re: Axis client maintaining connection to server

2004-06-24 Thread Niels Hagelberg
Davanum Srinivas wrote: are u using commons-httpclient? On Thu, 24 Jun 2004 15:52:18 +0200, Niels Hagelberg <[EMAIL PROTECTED]> wrote: No, We're using the default Axis connection Niels

Re: Axis client maintaining connection to server

2004-06-24 Thread Davanum Srinivas
are u using commons-httpclient? On Thu, 24 Jun 2004 15:52:18 +0200, Niels Hagelberg <[EMAIL PROTECTED]> wrote: > > Hello, > > We are using Axis Client for accessing a Web service layer in a large > production environment, which has the following setup: > > 1 x Serve

Axis client maintaining connection to server

2004-06-24 Thread Niels Hagelberg
Hello, We are using Axis Client for accessing a Web service layer in a large production environment, which has the following setup: 1 x Server A (WLS 6.1) ---Webservice call---> Loadbalancer (Alteon 180E) -Webservice call-> 2 x Server B (WLS 8.1). Server A has Servlets/EJB'

  1   2   3   >