> Hi,
> I'm using Bea Weblogic 6.0 server. I followed the instructions of
> installation for the soap.I did the following
> Copy the /path-to-apache-soap/webapps/soap to your applications
> directory For example: To install into the "mydomain" plug the
> directory into:
> c:/bea/wlserver6.0/co
Craig,
I have read most of the book entitled "Understanding Soap" by Scribner and
Striver and I still don't understand the regular SOAP encoding. I
understand the structure of the soap envelope but there seems to be a
disconnect between the method call and the actual encoding of that method
call
---
Information transmitted by this E-MAIL is proprietary to Wipro and/or its Customers and
is intended for use only by the individual or entity to which it is
addressed, and ma
*
Disclaimer: The information in this e-mail and any attachments is
confidential / privileged. It is intended solely for the addressee or
addressees. If you are not the addressee indicated in this message, you may
not copy or deli
> -Original Message-
> From: Bryan Field [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 12, 2001 10:13 PM
> To: [EMAIL PROTECTED]
> Subject: error with Apache Soap
>
>
> I have set up Apache Tomcat to implement soap services and I
> put all the
> appropriate jars (soap.jar, a
I've got some groveling to do. I discovered the problem. Two Words.
"Blame Microsoft" ;-\
The problem was never with the Apache SOAP server. It was the MS ASP
client I was using that was queing the messages.
Something in way IIS was initializing the SOAP connector would not
allow multiple
Perl's SOAP::Lite can deserialize beans.
Example:
A very simple bean class:
// Temperature.java
package test;
public class Temperature {
private double temp;
public Temperature() {
temp = 0d;
}
public double getTemperature() {
return temp;
}
public void setTemperature(do
> What data types are the parameters to the methods? If they are just a set
> of strings, I advise you not to use the BeanSerializer, as that would
> require that your client either use the BeanSerializer or know how to
> encode/decode the SOAP body in such a way that the BeanSerializer knows
how
That's very true, however, if you don't want to pass every property of your
bean then you will want to roll your own.
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Chris Malley
> Sent: Wednesday, December 12, 2001 5:38 PM
> To: [EMAIL PROTECTED]
>
What data types are the parameters to the methods? If they are just a set
of strings, I advise you not to use the BeanSerializer, as that would
require that your client either use the BeanSerializer or know how to
encode/decode the SOAP body in such a way that the BeanSerializer knows how
to dese
I have set up Apache Tomcat to implement soap services and I put all the
appropriate jars (soap.jar, activation.jar, mail.jar and xerces.jar) in the
lib directory of Tomcat. I added them to my classpath as well and I am
issueing the following command, from a command line, to test the service.
"ja
Craig,
My inputs are not that complex. The methods are basically to create records
in database tables, like createBusiness, createListing, etc... I am
creating essentially beans to represent the data needed to create each of
the objects. I am using the Apache BeanSerializer class provided with
HI
Can someone help me here...
I have a service class and client class. Service class
deployed on apache soap2.2. I am sending a message
from the client to service and getting back the
response properly. But I am trying to get the message
sent by the client at service side. From client side I
am
Jeremy Levy wrote:
>
> Okay, so to pass a custom object I need to write my own serializer.. Is this
> correct, also where can I get information and/or a couple of simple
> examples... Perhaps one that I can hack up? I am sure this has been asked
> hunderds of times, I checked my log of msgs and
The samples are on the Apache-SOAP site as I recall.
> -Original Message-
> From: Jeremy Levy [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 12, 2001 3:44 PM
> To: [EMAIL PROTECTED]
> Subject: Passing Objects
>
>
> Okay, so to pass a custom object I need to write my own
> serializ
Hello,
I'm trying to deploy a simple SOAP service to
WebSphere 4.0, and not having any luck.
I'm confused at the part in the instructions where
WebSphere says:
"Package the code artifact into an Enterprise Archive.
This step is a deployment packaging requirement of
WebSphere Application Server.
Hi,
Apache SOAP docs. indicate that support for message routing based on
"SOAPAction" field is currently not available and that with a small
modification to the routing algorithm, routing based on "SOAPAction" can be
achieved.
Is anyone aware of a patch (available free, in the true spirit of pub
How complex are your inputs/outputs to these methods? The best thing that
you could do is to create a WSDL file that describes all of your services,
inputs, outputs, bindings, etc. for the client.
The quick and easy way would be to provide a list of services and there
inputs/outputs. However,
I am trying to implement a soap service that has 20 or so methods. I have
defined the data that is needed to invoke each of these methods. I am doing
the server implementation and another party is doing the client side
implementation. Do I need to create a schema for each of my commands in
orde
Okay, so to pass a custom object I need to write my own serializer.. Is this
correct, also where can I get information and/or a couple of simple
examples... Perhaps one that I can hack up? I am sure this has been asked
hunderds of times, I checked my log of msgs and couldn't find something..
Tha
I am making a SOAP call and invoking this method:
public static Credential authenticate(long enterpriseId, String loginId,
String password)
and after the call: resp = call.invoke(url, "");
i get a soap exception:
[SOAPException: faultCode=SOAP-ENV:Client; msg=Unable to instantiate
'com.qwest.
I would check out the AXIS toolkit. It is being made to be as easy to use
as GLUE.
- Original Message -
From: "Chris Malley" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, December 12, 2001 12:21 PM
Subject: Re: Comparision of different toolkits
> [EMAIL PROTECTED] wrote
Daniel,
Take a look at the bidbuy sample code...the PurchaseOrderSerializer.java
seems to show how to build an array of "objects".
-Chris
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 12, 2001 9:21 AM
> To: [EMAIL PROTECTED]; [EM
[EMAIL PROTECTED] wrote:
>
> Hi,
> there are so many soap toolkits available. i want to use a java
> implementation of soap toolkit. out of these toolkits that are available
> which one is better. How do i judge which toolkits are better, i mean what
> considerations should be taken care. Pl
Please read the documentation, it says :
"The service does not support the invoked method. If your service
implementation class has the method, then it may be that your deployment
descriptor doesn't publish that method. Check your deployment descriptor.
The element may contain more detailed info
Hi,
Thanks for your mail. When i check the services through admin tool I see the
service listed there. and also the calculator example runs fine. I am using
Orion as the server. What could be wrong
Thanks
Rajeev
-Original Message-
From: Rino Srivastava [mailto:[EMAIL PROTECTED]]
Sen
Check that your client and server are in the proper directory.
Also, if you are using tomcat, then edit the server.xml file under
tomcat/config to specify the right context.
Hope this helps.
Cheer!
Rino
-Original Message-
From: Puthezhath, Rajeev (TWII Boston) [mailto:[EMAIL PROTECTED]]
This is how I anticipate my service to be used:
>From each client:
Startup:
1 RPC Login call
1 RPC getting initial settings call
1 RPC Call every 15 seconds there after...
The system could eventually have thousands of simultaneous clients..
My question is, should I deploy on
Hi,
I am new to soap and is trying to run it with Orion server. When I try to
run the hello server example I get the following error
Fault Code = SOAP-ENV:Server
Fault String = Method 'sayHelloTo' is not supported.
my service is like this
package hello;
public class HelloServer
{
In my case, I have to use Apache since our current application uses Weblogic
5.1. But you can also use third party tools. A lot depends on your current
needs, performance, security, possibly scalability. I am also new to Soap,
but learning at a decent pace.
Frederick V. Paras
Software Engineer
In the element of the deployment descriptor do you need to
map classes that are being sent only to the soap server or do you also have
to add mappings for return types (types being sent back from an rpc-style
method call) ??? Lastly, is there a DTD or XSD document I can view for
these XML files?
Hi,
there are so many soap toolkits available. i want to use a java
implementation of soap toolkit. out of these toolkits that are available
which one is better. How do i judge which toolkits are better, i mean what
considerations should be taken care. Please help me someone out there with
th
Sandeep Heer wrote:
>
> Hi
>
> I am having problems getting my SOAP application to work. When i used
> RPC i.e. calling a specific method on my webservice using Call and all
> that stuff it worked fine.
>
> I have now written a simple SOAP message system that does not seem to
> work. I get the
Hi,
one of my service methods returns a Array of Products "Product[ ] products"
I´m working with Apache Soap.
To marshall this I wrote my own serializer because I have something
different to do
like the standard ArraySerializer.
What can I do that the XMLMappingRegistry uses my serializer. I tri
Please unsubscribe me.
Has anyone gotten Apache SOAP to work under Java Webstart on OSX? I get
an unknown method error while trying to make a soap call when soap
calls node.getNamespaceURI() which would indicate it is trying to use an
older xml parser. However, xerces is the only xml parser in my jnlp file
and everyth
I had the same problem yesterday, just copy soap.jar into
/soap-2_2/webapps/soap/WEB-INF/lib/ .
> Francis Amanfo wrote:
>
> Hi,
> I am in the process of getting soap 2.2 work under tomcat 4.0. When I
> point my browser to http://localhost:8080/soap/servlet/rpcrouter I get
> the exception:
>
> j
Hi,
I am in the process of getting soap 2.2 work under
tomcat 4.0. When I point my browser to http://localhost:8080/soap/servlet/rpcrouter I
get the exception:
javax.servlet.ServletException: Class
org.apache.soap.server.http.RPCRouterServlet is not a Servletat
org.apache.catalina.core.Sta
My understanding of SOAP messaging was that you dont call a method on
the webservice. BUT...in the XML from the client side you have to add a
line i.e.
SO you are specifying the target method. My understanding was that one
of the advantages of SOAP messaging over SOAP RPC was that the client
do
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 12, 2001 3:52 AM
> To: [EMAIL PROTECTED]
> Subject: Newbie question: Easy way to print response and
> request documents
>
>
>
>
>
> What is the easiest way to capture the XML s
Hi
I am having problems getting my SOAP application to work. When i used
RPC i.e. calling a specific method on my webservice using Call and all
that stuff it worked fine.
I have now written a simple SOAP message system that does not seem to
work. I get the error message below. I take it since
The SOAP does not support the HTTP GET, you, however, should be
able to test if your HTTPS is working correctly by using your
browser.
[1] Try https:///soap/servlet/messagerouter.
If it works, you should get something like:
SOAP RPC Router
Sorry, I don't speak via HTTP GET- you have to use HTTP
What is the easiest way to capture the XML sent in the request and response
documents? It would be easy to use JDOM, but I don't know what objects to pass
to it. Is there something in the Call and Response objects that I can use?
Basically, I need to look at the the raw XML sent from and return
Please unsubscribe me.
44 matches
Mail list logo