You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Ke...@sunlife.com on 2002/06/17 20:37:20 UTC

Access from Microsoft tools

I'm building a web services based application where most of the client
access will be done through Java. But I recently found that one group of
users will be accessing the service the Microsoft-based tools (a Visual
Basic app, I believe).

They're looking for information from me on how to access the app. I've not
don it -

Anyone here have experience connecting to Java -based web services using
Microsoft tools?


complex types

Posted by Sudhir <su...@infolead.com>.
Sorry for the re-posting. I didnt get any reply  for this query.

If a WSDL has the following complex type

    <xs:schema targetNamespace="urn:AnyWhoComplex"
xmlns="urn:AnyWhoComplex">
      <xs:complexType name="TAnyWhoInfo">
        <xs:sequence>
          <xs:element name="Name" type="xs:string"/>
          <xs:element name="Address" type="xs:string"/>
        </xs:sequence>
      </xs:complexType>
    </xs:schema>

Is this the proper bean which I can register for serializing/deserializing?
I am getting the deserializer exception. :(

import java.io.Serializable;
import java.math.*;
import java.util.*;
public class TAnyWhoInfo implements Serializable {
  public TAnyWhoInfo(){ }
 private java.lang.String name;
 public java.lang.String getName(){
  return this.name;
 }

 public void setName(java.lang.String name){
  this.name = name;
 }

 private java.lang.String address;
 public java.lang.String getAddress(){
  return this.address;
 }

 public void setAddress(java.lang.String address){
  this.address = address;
 }

 public TAnyWhoInfo(java.lang.String name, java.lang.String address ){
  this.name=name;
  this.address=address;
 }
}


Thanks
Sudhir


The trouble with the world is that the stupid are cocksure and the
intelligent are full of doubt.
Integrity without knowledge is weak and useless, and knowledge without
integrity is dangerous and dreadful.


Re: Access from Microsoft tools

Posted by James Black <jb...@ieee.org>.
Kevin.Bedell@sunlife.com wrote:

> I'm building a web services based application where most of the client
> access will be done through Java. But I recently found that one group of
> users will be accessing the service the Microsoft-based tools (a Visual
> Basic app, I believe).
>
> They're looking for information from me on how to access the app. I've not
> don it -
>
> Anyone here have experience connecting to Java -based web services using
> Microsoft tools?

  Use Visual Studio .NET, and so VB .NET for the client.


Re: Access from Microsoft tools

Posted by Heitzso <he...@bellsouth.net>.
I've easily used pocketsoap to access axis/java web service
from VBScript based ASP page.  Quick.  Easy.

http://www.pocketsoap.com/

Haven't tried the official .NET set of tools.

Heitzso


On Mon, 2002-06-17 at 14:37, Kevin.Bedell@sunlife.com wrote:
> 
> I'm building a web services based application where most of the client
> access will be done through Java. But I recently found that one group of
> users will be accessing the service the Microsoft-based tools (a Visual
> Basic app, I believe).
> 
> They're looking for information from me on how to access the app. I've not
> don it -
> 
> Anyone here have experience connecting to Java -based web services using
> Microsoft tools?
>