Below is the error I encounter
ns1:Server.userException error '80004005'
java.lang.ArrayIndexOutOfBoundsException
/holidays/paymentdetails.asp, line 496
the line in the ASP is
inXMLStream =
soapClient.getNewSessionId(branded_name,ServiceType,CStr(cgi_tfrSessionId),C
Str(cgi_SessionId
;[EMAIL PROTECTED]>
Sent: Wednesday, August 21, 2002 1:46 PM
Subject: Re: [from soap-user] Re: urgent help needed with:Error building
response evelope
i am using soap2_2
>From: Scott Nichol
>To: WANG xiulan , [EMAIL PROTECTED]
>Subject: [from soap-user] Re: urgent help needed with:Error
What version of Apache SOAP are you using?
Scott Nichol
- Original Message -
From: "WANG xiulan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, August 20, 2002 11:01 AM
Subject: urgent help needed with:Error building res
I suggest you post your client code and/or a wire dump in order to get help.
Scott Nichol
- Original Message -
From: "Indrasish N Basuroychowdhury"
<[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, July 12, 2002 11:55 AM
Subject: Need urgent help. Please he
l.invoke(url, __soapAction);
if (res.generatedFault())
{
Fault f = res.getFault();
System.out.println("Fault Code = " + f.getFaultCode());
System.out.println("Fault String = " + f.getFaultString());
}
else
{
Parameter p = res.getReturnValue();
System.out.println(" Object Value = " + p.getValue());
}
}
I need urgent help.
Any help is appreciated.
Thanks,
Indrasish.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
Hi,
I have a simple .NET webservice that has 2 methods. Both methods return
a string but one takes an integer and the other takes a string.
I have written a apache soap client to access the service.
When i try to invoke the method that takes int, it works fine. BUT it
does not for the method that
I am getting a SOAP error after sending the following SOAP envelope. Need
help desparately. Any help will be appreciated.
http://localhost/FirstTry/WebServices/">
UserPass
SOAP error is following:
Env:[Attributes={ xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://ww
I need to create a WSDL Data type definiton from a java hashtable
My SOAP service return a Map type, in which way can expain itin a WSDL
file ?
Regards
Hi Raj,
This problem comes when you try calling MS service from Java client.
You need to modify java client and add deserializer for Result. If you look
XML call from MS service it has xxx. Thus no type is
specified as either string/int etc. in message. Thats why you need to add
following li
Title: urgent
Sorry for typo: *s2 = SysAllocString(“myRetVal”); should be *s2 =
SysAllocString(L“myRetVal”);
Sergei Meleshchuk
WMI
425-705-8547
-Original Message-
From: rajashekar
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 23, 2001
10:36 AM
To: [EMAIL
Title: urgent
First, you have to replace *s2 = s1 by
*s2 = SysAllocString(s1) – otherwise it won’t work. Then, the
simple trick of bouncing back the request won’t work – soap format
requires different format for ret vals. I cannot guess what kind of soap server
you use, and what it does
Title: urgent
Hi All,
While calling SOAP service from my Java Client, the following exception has been occurred.
[SOAPException: faultCode=SOAP-ENV:Client; msg=No Deserializer found to deserialize a ':Result' using encoding style 'http://schemas.xmlsoap.or
Title: URGENT
Raja,
in Apache SOAP there is a cookie-session-tracking
feature...
depends on the VC++ server-implementation of
course, but Apache SOAP supports
session-tracking via cookies...
the MS Soap Toolkit also supports cookies and in
.NET (beta2) even URL-encoded
session
Title: URGENT
Hi
I am using a SOAP Client written in Java. This needs to communicate with a SOAP server written in VC++ hosted on IIS. The SOAP server parses the request and calls a method in a COM component hosted in a MTS. This COM component interacts with the exchange server to get some
Hi,
I'm looking into the sample code, "messaging" and would like to make my own
network connection on top of SOAP connection. Basically I'd like to implment a
client/server application using plain socket library to have another
connection, not for SOAP messages.
For example, I inserted my own
Title: URGENT
Hi
I have a Java SOAP service running on my machine on Tomcat web server. I would like to use this service using a VC++ client.
Can anyone help me provide more information on how to write the client and what installations need to be done ( client being vc++) to accomplish
I have seen in the adress example that a service can be undeployed via:
java org.apache.soap.server.ServiceManagerClient URL undeploy URN
If I develop a service, is it possible that clients or partners can undeploy my
Service with such a call?
Can I prevent this?
Thx,
Andreas Ullmann
ve to follow for this..
Susheel
- Original Message -
From: "Scott Nichol" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 30, 2001 8:31 PM
Subject: Re: Its urgent.
Example of what I am talking about:
ApacheSoapMethodUtilsTest.java (the test a
ject o) {
System.out.println("log with arg type " + o.getClass().getName());
}
}
- Original Message -
From: "Scott Nichol" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 30, 2001 10:37 AM
Subject: Re: Its urgent.
> I believe the met
your case.
Scott
- Original Message -
From: "Susheel Chauhan" <[EMAIL PROTECTED]>
To: "Martin Smolny" <[EMAIL PROTECTED]>
Sent: Monday, July 30, 2001 5:55 AM
Subject: Re: Its urgent.
> Hi Martin,
> Thanx a lot..yes now that problem is remo
Hi Susheel,
Make sure that your MailInfo class is public, and has a no-args public
constructor.
Thanks,
-Matt
> -Original Message-
> From: Susheel Chauhan [mailto:[EMAIL PROTECTED]]
> Sent: Monday, July 30, 2001 1:48 AM
> To: [EMAIL PROTECTED]
> Subject: Its urgent...
er classes to. I have to made it genric for some
other fix classes..Is there any idea...
Regards,
Susheel Chauhan
- Original Message -
From: "Martin Smolny" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 30, 2001 2:53 PM
Subject: Re: Its urgen
Hi all,
i have my server class that accept java Object class as a parameter..The
signature of this class is
public String log(Object a_oActionInfoStruct)
Now from my client i would like to send any user defined java class to this
server ...
I have tried to send my MailInfo class .I deployed my se
Hi
I am learning and trying out Apache SOAP v2.2. i am using xerces 1.4.1 and classpath
is also properly set.
i am writing a rpc client in java to fetch services listed out in www.xmethods.com. I
am getting the following error for a net dealer service listed out:
Caught SOAPException
Fault C
I resolved the issue, I was setting some mappings for primitive objects such
as String and that caused the whole thing to go haywire. I think this applies
to people getting incorrect data or missing or bogus data from one point to
another through soap.
d incoming
> response, and the exception generated. What server are you connecting to?
>
> David Melgar
> Web Services Toolkit Development
> Emerging Technologies
> [EMAIL PROTECTED]
>
>
> [EMAIL PROTECTED] on 07/24/2001 12:39:20 PM
>
> Please respond to [EMAIL PROTECT
What errors did you get when using UDDIProxy?
David Melgar
Web Services Toolkit Development
Emerging Technologies
[EMAIL PROTECTED]
I now remmeber why the UUDIProxy didn't work for me and may be you would know the
answer.
For example in SaveTModel When I used UDDIProxy it uses the savetoxml method to
convert java object to xml it creates the following
<..
on the server side it complains that it can't matc
I tried using UDDIProxy but I get errors so I tried this approach. I dont get an error
but when I try to acces the object("SaveBusiness") on my UDDI server I
get nulls.
In a message dated Tue, 24 Jul 2001 10:54:43 AM Eastern Daylight Time, "David Melgar"
<[EMAIL PROTECTED]> writes:
> UDDI4J
UDDI4J typically uses the messaging API in soap and handles its own request
message generation and processing.
I assume your going through all this effort for some other reason? You
don't describe what failure you get. Is no response returned? Is the
deserialization of the response failing?
Dav
Hi,
Changing the encoding style to UTF-16 should solve your problem number one.
Andreas Ullmann
½Ã»ð wrote:
> ###
> Thank you for your reading my mail nevertheless you are busy !!
> HELLO! This is chihongkim from KOREA will h
###
Thank you for your reading my mail nevertheless you are busy !!
HELLO! This is chihongkim from KOREA will hold WORLD-CUP in 2002.
___
I am developing a client/server project tha
odify
Hope this helps
or simply find the word UTF-8 in all the Apache's source code and correct
;-)
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of
kitty
Sent: jeudi, 19. juillet 2001 14:52
To: [EMAIL PROTECTED]
Subject: URGENT: I'm in big
I'm so sorry about sending this mail wihtout allowance.
I'm looking for the solution about my problem with soap.
I'm developing project using soap.
Server is developed with Visual Basic and Client is developed with java(and Apache
soap) in my project.
I created WSDL file using WSDL Generato
hi ,
Thanxs for the help..
But it was really my bad I had not read the XML Spec..
- Original Message -
From: "Oleg Dulin" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, June 29, 2001 5:26 PM
Subject: Re: Urgent help nee
> I was wondering if there was a decent way to escape the & sign ?
> May be URLEncoding the characters before stuffing them in to literal
> XML ?
> Would appreciate a quick fix !!
URLEncoding worked for me, but you can also use & (I think) to
represent an ampersand.
--
Regards,
Oleg Dulin
--
hi,
My bad ..
I could use & and stuff...
- Original Message -
From: "Naggi Rao" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 29, 2001 8:42 AM
Subject: Urgent help needed
> Hi all,
> Its more of a XML Question ..
> I am passing a
[EMAIL PROTECTED]
> Subject: Urgent help needed
>
>
> Hi all,
> Its more of a XML Question ..
> I am passing a few elements (as literal XML) to my WebServvice as :
>
>
>
> It works fine for cases above :
>
> but the XML Parser get very very angry if I pass
>I was wondering if there was a decent way to escape the & sign ?
try these:
'&' -> &
'<' -> <
'>' -> >
ciao,
Norbert
Hi all,
Its more of a XML Question ..
I am passing a few elements (as literal XML) to my WebServvice as :
It works fine for cases above :
but the XML Parser get very very angry if I passed :
I was wondering if there was a decent way to escape the & sign ?
May be URLEncoding the characters
not create a DOM for messages it sends.
Scott
- Original Message -
From: "Anil Kumar, Anumakonda" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 28, 2001 9:28 AM
Subject: RE: Urgent(is there any limit for the size of data which can be
transported thro
ilto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 9:05 PM
To: [EMAIL PROTECTED]
Subject: Re: Urgent(is there any limit for the size of data which can be
transported through SOAP)
I was getting the same problem using Apache SOAP 2.1 and Xerces 1.2.3 and
1.3.0. Debugging led me to believe that Xe
to Apache SOAP 2.2
there is any support for that version of Xerces.
Scott
- Original Message -
From: "Anil Kumar, Anumakonda" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 28, 2001 8:13 AM
Subject: Urgent(is there any limit for the size of data wh
M
To: [EMAIL PROTECTED]
Subject: RE: Urgent(is there any limit for the size of data which can be
t rans ported through SOAP)
Anil,
Have you tried splitting the data up and running it all through in
blocks?
Perhaps a data content issue? (Just tossing some suggestions out there). Let
us know
: Thursday, June 28, 2001 7:36 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Urgent(is there any limit for the size of data which can be
t rans ported through SOAP)
Hi raja,
this data i am sending across .
i am attaching text doc.
Thanks & regards
Anil
-Original Message-
From
Hi raja,
this data i am sending across .
i am attaching text doc.
Thanks & regards
Anil
-Original Message-
From: raja [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 8:25 PM
To: [EMAIL PROTECTED]
Subject: RE: Urgent(is there any limit for the size of data which can be
t
Hi raj,
i have to go for SOAP 2.2 to over come this problem.
is there any other way to solve this problem
Thanks & regards,
Anil
-Original Message-
From: Kumar Raj [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 8:21 PM
To: [EMAIL PROTECTED]
Subject: Re: Urgent(is there
can u send the code ?
Raja
Innova Solutions
Ph: Off : 3543139,40,50 X 217
Res : 3551023
-Original Message-
From: Anil Kumar, Anumakonda [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 5:53 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Urgent(is there any limit for t
Hi !
You can find this addressed in the Trouble shooting section
of the v2.2 doc.
Regards
Kumar Raj
"Anil Kumar, Anumakonda" wrote:
> Hi ,
>
> If i send huge data through SOAP(hashtable which contains a lot of data), i
> am getting this error.
> Is there any limit for the size of data which c
please help how to solve.
-Original Message-
From: raja [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 8:18 PM
To: [EMAIL PROTECTED]
Subject: RE: Urgent(is there any limit for the size of data which can be
t rans ported through SOAP)
hi
sorry, the mail was sent by accident. you
I think the same.
Theo
-Original Message-
From: raja [mailto:[EMAIL PROTECTED]]
Sent: giovedì 28 giugno 2001 14.18
To: [EMAIL PROTECTED]
Subject: RE: Urgent(is there any limit for the size of data which can be
t rans ported through SOAP)
hi
sorry, the mail was sent by accident. you
, June 28, 2001 5:43 PM
To: '[EMAIL PROTECTED]'
Subject: Urgent(is there any limit for the size of data which can be
trans ported through SOAP)
Hi ,
If i send huge data through SOAP(hashtable which contains a lot of data), i
am getting this error.
Is there any limit for the size of
hi
this is no way related to the size of the hashtable.
Raja
Innova Solutions
Ph: Off : 3543139,40,50 X 217
Res : 3551023
-Original Message-
From: Anil Kumar, Anumakonda [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 5:43 PM
To: '[EMAIL PROTECTED]'
Subject:
Hi ,
If i send huge data through SOAP(hashtable which contains a lot of data), i
am getting this error.
Is there any limit for the size of data which can be transported through
SOAP. How to over come this problem.
I am using SOAP 2.1.
SOAPException: faultCode=SOAP-ENV:Client; msg=No Deserializ
54 matches
Mail list logo