Re: Questions Regarding Security example ClientSigningHandler

2004-03-26 Thread pacow
ahh.. look for the files client-config.wsdd and server-config.wsdd (they should be where you deployed from, i think); they save the state of your axis server. you can remove directives from them manually to undeploy stuff. Mei Wu wrote: yeah, undeploy doesn't work for me either, I renamed the

SOAPAction header value for UDDI requests

2004-03-26 Thread Denero Watz
What should be the value of the SOAPAction header attribute when sending a UDDI request. I found that the registry http://www-3.ibm.com/services/uddi/inquiryapi will not work when i set an empty string for this header. The value need to be explict inorder for this to work. Other registries that

Re: Questions Regarding Security example ClientSigningHandler

2004-03-26 Thread Mei Wu
thanks, will try that... - Original Message - From: pacow [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 26, 2004 12:02 AM Subject: Re: Questions Regarding Security example ClientSigningHandler ahh.. look for the files client-config.wsdd and server-config.wsdd (they

Re: newbie - DIME error: Unconvertible UTF-8

2004-03-26 Thread Mirza
Here is what I get from tcpmon... (see attachment) Mirza Mirza wrote: Hi there, I am trying to use axis as client for image server writen in gSoap/c++. Sending request is ok, but when parsing resulting dime response, it says: org.xml.sax.SAXParseException: Character conversion error:

Re: Axis over HTTPS - extra characters at end of message

2004-03-26 Thread insoo lee
We had Apache web server (handling SSL/Basic Auth) - to Tomcat (with Axis) Initially we had connection issues with SSL/Basic Auth on Apache, but it turned out to be a plugin issue between Apache/Tomcat. Not sure about websphere. Lee -- Original Message

encoding style for xml

2004-03-26 Thread JEFF EMMINGER
Title: encoding style for xml hello, If my service returns XML data, what encoding type should my client specify? In apache SOAP, I used call.setEncodingStyleURI(Constants.NS_URI_LITERAL_XML); thanks, jeff CONFIDENTIAL NOTICE: This email including any attachments, contains

Antwort: Architecture for integration System

2004-03-26 Thread Oliver Wulff
Hi Thomas We have the goal to provide interfaces which offers business operations like findCustomer, updateCustomer, getContract, These operations are grouped in interfaces which has a name (and namespace) related to a business component (partner service, ...). Right now, I'm not talking

Axis's Architecture

2004-03-26 Thread Vivek Nagulapati
Hello All, I have few questions on the low-level architecture of Axis. 1. According to the architecture guide of Axis, it states that there are 3 chains of handlers that a MessageContext object has to go through before being serviced i) Service ii) Global iii) Transport. IIRC, Service

Re: Axis's Architecture

2004-03-26 Thread Chris Haddad
hi vivek - transport, global, and service define execution scope. handlers attached to the service chain will only execute for web services requests targetting a specific service. global handlers will always be executed, and transport handlers are only executed if a message is recieved by

Tomcat Error

2004-03-26 Thread Michael Ryan
Title: Tomcat Error Hi everyone- We are having a problem when our app is run under Tomcat. Currently, we embed Axis inside our applications jar, and obfuscate it. This seems to work fine, except under Tomcat. When we use our application inside Tomcat, it works fine the first time it is

Fatal error using Axis-Mora

2004-03-26 Thread Jody
I download from apache cvs Axis-Mora and i compile it follow the build guide. When i try to execute it in Tomcat it give my a fatal error, and i don't know how to solve it. I check all jar in WEB-INF/lib so i dont undestend. When i try to load http://localhost:8080/axismora/servlet/AxisServlet

deserializer error in websphere 5.0.1

2004-03-26 Thread Ashish Kulkarni
Hi I am working on a client which consumes webserverice, this web service returns org.w3c.dom.Document object I am getting deserializer error, this client works fine tomcat5.0 this is the error faultCode: {http://websphere.ibm.com/webservices/}Server.generalException faultString:

Re: Doc-Style Web Clients

2004-03-26 Thread Anne Thomas Manes
I do believe it's possible that Microsoft may choose to not support SwA. They don't support RPC/Literal either. Technically, non-support of a feature defined in WS-I doesn't break compatibility. WS-I doesn't test for compatibility of tools, only compatibility of clients and services. MTOM is

Re: SOAPAction header value for UDDI requests

2004-03-26 Thread Anne Thomas Manes
You need to look at the WSDL binding definition for IBM's registry to determine what SOAPAction it's expecting. According to the standard WSDL descriptions that are part of the UDDI V2 standard, the SOAPAction is supposed to include a string that indicates the operation, e.g. find_service. But

customexceptions

2004-03-26 Thread sacha
Hi. Has anybody any experience with custom exceptions in axis? I tried to throw my own checked exception, but always get AxisFault, containing only stack trace as details and Server.userException as a fault code. I looked into the axis source code and it seems there is no way to throw custom

Re: custom  exceptions

2004-03-26 Thread ian_d_stewart
Sacha, Have you tried extending AxisFault? That's what we do and it seems to work well enough... Ian [EMAIL PROTECTED]

Re: Doc-Style Web Clients

2004-03-26 Thread Dennis Sosnoski
I'm aware of MTOM, and I like the idea of being able to include items within the infoset when appropriate. I think it'll be a mistake if all attachments are forced into this model, though. Besides, by the time it's actually agreed on Microsoft is likely to have another proposal that has become

byte[] serializing to inefficient array

2004-03-26 Thread Grant Hulbert
I am using Axis/Java to return a struct as follows: public class ImageStruct { public int imageID; public String imageName; public byte[] thumbNail; } My problem is that instead of the byte[] returning a single base64 element, I get an array of thousands

Determining Service method name and return value?

2004-03-26 Thread Marc Boorshtein
Hello, I am trying to write a handler that will extract the method called and the return value from the method. For instance if I have a service defined for the SomeService.someMethod() method, I would like to know that the SomeService class, with the someMethod method was called and retrieve

where do I find full template of wsdd?

2004-03-26 Thread Omprakash . Bachu
Hi all, appreciate if any body of you can help me finding the full template having valid tags/entries of WSDD. thanks very much Om

where are the xml-Security api docs v 1.4?

2004-03-26 Thread pacow
where can i find the xml-Security api docs for version 1.4? \ am i blind? i can't find them anywhere!! -peter

Re: where are the xml-Security api docs v 1.4?

2004-03-26 Thread Mei Wu
isn't it in the src/doc? I think I downloaded the source bundle and doc is in there. - Original Message - From: pacow [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 26, 2004 4:43 PM Subject: where are the xml-Security api docs v 1.4? where can i find the xml-Security api

How to make Axis use CommonsHTTPSender?

2004-03-26 Thread Zhao Sharon-CSC002
Hello, Does anyone know if Axis 1.2 use HTTPSender or CommonsHTTPSender? If not, what's the procedure to have Axis Client use the CommonsHTTPSender? The reason to replace it is to support other type of enterprise of proxy (not only basic). Thanks, Sharon Zhao Motorola Inc.