Hi all,
I tried to make a WS with Axis on a JBoss Application Server,
this WS works with complex types (HashMap) :
HashTable test() {
HashTable test = new HashTable();
test.put("1", "one");
return (test);
}
I made a reference in Visual Studio 2003 to the WSDL of this WS
b
Hi All,
Can anyone tell me what is the need for WS-I basic profile,
what is it, why we need to confirm to its standard.
WSDL 1.1 itself a specification isn't it, then y do we need to confirm to
ws-i standard.
In my application we integrate .net and j2ee, please give ur thoughts it
will be he
Maybe I'm just lucky but I've generated the wsdl with the
WRAPPED style and java, .net and gsoap all talk to each other, DIME attachments
included.
Best Regards,
Paulo Soares
From: David Thielen
[mailto:[EMAIL PROTECTED] Sent: Tuesday, April 20, 2004 8:52
PMTo: [EMAIL PROTECTE
I have some client classes generated by AXIS, but the server Im talking to wont handle
my request unless its encoded as ISO-8859-1. Is there a way I can tell the AXIS client
classes to send its SOAP request encoded as ISO-8859-1 instead of UTF-8?
Med venlig hilsen/Best regards
Søren Neigaard
Sys
I have a method that I'm calling using Axis 1.1. The method contains
only a single call to a static method of another class. That method
returns an object, and my SOAP-accessible method pulls a string out of
that object and returns it.
Or, that's what it's supposed to do. Instead it returns an
Hi Sebastien -
Java/.NET collection types are not interoperable. convert the generic container type
down to two arrays that are properties of a single concrete object. A benefit of
this approach is that one can strong-type the key and value object.
For example,
class myContainer {
String[]
Yes, wrapped works great across the board.
I’m thinking I will have to live with that.
- dave
From: Paulo Soares
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 21, 2004
4:13 AM
To: [EMAIL PROTECTED]
Subject: RE: Asking again:
Document/literal client app (from WSDL2Java
The SOAP 1.1 and WSDL 1.1 specifications aren't really standards. They never
went through a rigorous standardization effort, and no one did
interoperability testing of these specs prior to their publication. (These
specs have never been updated since they were first published in 2000.)
There are a
Thanks a lot Anne !
will do it !
-kannan
"Anne Thomas
Hello ..
Its a newbie question , can anyone tell me how Do I call a webservice
from a machine which is NOT a localhost ... ie How to call webservice
from remote machine ?
I am doing
call.setTargetEndpointAddress(new
URL("http://mustang.cs.binghamton.edu:8080/axis/services/urn:EchoDimeSer
Hiya.
Just repeating my question - maybe someone has a solution...
i have a client (c) calling a webservice (#1). this webservice (#1) needs to
fulfill the request information from another webservice (#2):
c --->
#1 --->
#2
#1 <---
c <---
now i have programmed
Why
does WRAPPED work with Java2WSDL and Document Literal not work in Axis
1.2?
Ross
-Original Message-From: Paulo Soares
[mailto:[EMAIL PROTECTED]Sent: Wednesday, April 21, 2004 3:13
AMTo: [EMAIL PROTECTED]Subject: RE: Asking again:
Document/literal client app (from WSD
All,
Can some direct me where I can find the document on error codes that Axis throw for
client to catch?
Thanks,
Sharon
Hi Rick,
This looks like a connectivity problem, e.g. proxy server (use
java.net.Authenticator) or fire wall (reconfigure fire wall).
Jeff
- Original Message -
From: "Richard Alan Herz" <[EMAIL PROTECTED]>
To: "Axis Userlist" <[EMAIL PROTECTED]>
Sent: Wednesday, April 21, 2004 11:51
Anne, when I run wsdl2java on the WSDL you gave me below, build the web
service from it, deploy it, and then go to URL?wsdl, I get the wsdl below.
Notice that the elements in the partInquiry have "partInquiry_t>;"
prepended onto the name of the element, for example:
I
I have a java object that looks like this:
public class ITSOntologyConcept implements Serializable
{
private String displayName_;
private String value_;
private Boolean isLeaf_;
private String ontology_;
public ITSOntologyConcept()
{
displayName_ = "";
>In order to enable interoperability, the community decided to "profile"
>these specs -- to resolve these inaccuracies, inconsistencies, errors, and
>ambiguities. That's what the WS-I Basic Profile is.
By the way, the Basic Profile is a very readable document.
http://www.ws-i.org/Profiles/Basic
If there is Portal A
that wants to talk to Legacy System B, and the selected approach is through web
services, is there a generalized approach?
Thanks.
Nadeem
Anne, I also notice the following when I generate with the WSDL you
provided. In the SoapBindingSkelaton.java generated source module, there
is the following:
_params = new org.apache.axis.description.ParameterDesc [] {
new org.apache.axis.description.ParameterDesc(new
java
Jeff,
thanks for your hint. First I thought, that's it! - because the system
running web service #2 had a personal firewall. But even when deactivating
the firewall, i get a fault message...
Anymore ideas?
Cheers,
Rick.
---
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Serv
Hi Rick,
'Connection refused' means you're hitting the server but it doesn't like
you. Do you need a user name and password? If so then here's how:
class Auth extends Authenticator
{
protected java.net.PasswordAuthentication getPasswordAuthentication()
{
return new java.net.Passw
This is my first SOAP service/client.
I am running under Tomcat with Axis 1.1 I have the SOAPMonitor running (not
that I am sure how to operate it) and it shows no traffic.
I wrote a service and deployed it. At least it shows up under:
http://localhost:8080/axis/servlet/AxisServlet
and the WSD
I was running Axis 1.2beta on IBM WAS 4.0 server(servlet 2.2 specification)
and I get the below exception when I try to view the wsdl. I recently
upgraded from 1.1 to 1.2beta and looks like 1.2beta is using servlet 2.3
specification and will not support 2.2. Can I make the assumption that
Axis1
Hi All:
I am getting this following exception when making a call through Axis
generated Stubs
java.lang.NoSuchMethodError
at
org.apache.axis.deployment.wsdd.WSDDDocument.(WSDDDocument.java:101)
at
org.apache.axis.configuration.FileProvider.configureEngine(FileProvider.java:209)
at org.apache.a
Joe,
I suggest you try reinstalling Axis 1.2 beta and try it again.
If this problem continues, then you should log it as a bug.
You can make Axis 1.1 work with Doc/literal, but you have to do a lot of
handcrafted modifications to the generated code.
Anne
-Original Message-
From: [EMAIL
Hi,
I am developing a web service using axis. The problem is
that, by default, the axis web services are multithreaded (more than one
threads are used to entertain user requests). What I want is a single threaded
web service which uses a single thread to entertain all the user requests.
Hi Guys
Can any one suggest the probable means of session handling in axis?
Cheers
And thanks in advance
Krishnendu
Hi,
I try to create a filter which is reading the request and response data out.
The Response is fine I can read the whole envelope.
For the Request I can read all the Parameters, Attributes, Cookies.
But if I try to read the body then it hangs.
With the following message:
2004-04-22 08:25:21
28 matches
Mail list logo