Questions tagged [soap-serialization]
14 questions
7
votes
0 answers
SoapFormatter class obsolete or not?
I am working with an old project and doing minor changes. At some places the code uses SoapFormatter class to serialize and deserialize data in SOAP format. The code is working fine without any issues.
MSDN help says the following about the…

Web Dev
- 675
- 1
- 8
- 15
4
votes
5 answers
Serialization bugs in .NET?
I'm reading up on serialization, and have so far been messing with BinaryFormatter and SoapFormatter. So far, so good - and everything have both Serialized and Deserialized perfectly.
However, when I try the code below, I would expect my datafile to…

Peter Olsen
- 59
- 4
3
votes
5 answers
Which SOAP XML object serialization library for Java would you recommend?
Which Java SOAP XML object serialization library would you recommend for Java object exchange with other platforms / languages (.NET, Delphi)?
Communication scenarios could look like this:
Java object writer -> SOAP XML text -> .NET or Delphi…

mjn
- 36,362
- 28
- 176
- 378
3
votes
0 answers
KSOAP2 - serialize complex object array in another complex object
I'm trying to send complex object to webmethod via ksoap2. A problem occurs when IDE execute AndroidHttpTransport.call command, it sends that error;
java.lang.RuntimeException: Cannot serialize: [webServiceClasses.movementItem@4123d840]
I sent…

Yasar Naci Gündüz
- 121
- 1
- 1
- 5
2
votes
0 answers
Error while consuming soap webservice from Silverlight 5 application
I am consuming salesforce partner wsdl from Silverlight 5 application. When I am trying to login using loginAsync method. I am getting exception as -
There was an error in serializing body of message :
'IsNotAssignableFrom'.
The code used for…

Ramashanker Tripathi
- 527
- 5
- 22
1
vote
2 answers
SoapFormatter versioning problem
In the application(C#) I am maintaining, there are some serialized object stored in the database, and some are created several versions ago.
Now when the app tries to deserialize those objects, it throws an exception:
Parse Error, no assembly…

FlyinFish
- 61
- 5
1
vote
0 answers
SoapFormatter - how to include namespaces?
I have a blocker which I cannot solve. Issue is in auto-generated SOAP request built by SoapFormatter class. I'm trying to communicate with WCF service and pass some data. I've implemented class which I am trying to serialize to soap request.…

Kalik
- 175
- 1
- 11
0
votes
1 answer
SoapSerializationEnvelope Error in sqlcipher
I am geeting a strange message
java.lang.NoClassDefFoundError : org.ksoap2.serialization.SoapSerializationEnvelope
When i add 'net.zetetic:android-database-sqlcipher:3.5.9@arr' in dependencies. Otherwise it appication works fine.
And this problem…

Lokesh Deshmukh
- 728
- 5
- 13
0
votes
0 answers
java.lang.NoClassDefFoundError: org.ksoap2.serialization.SoapSerializationEnvelope with SDK 19 in android studio
hello i m using android studio this error generate and crash application in only sdk version 19. i did not found the reason .i search so many things but not found proper way to resolve this.
Log Show as below
FATAL EXCEPTION: AsyncTask #2
…

vaibhav
- 312
- 2
- 10
0
votes
0 answers
Web Services for android devices
Following is the code for Web services at android devices. I done exactly the way I watched In a youtube Video. There is no any error showing, still cant get the result on my AVD. The result should be " I am passing a static value in Celsius and…

Mushtaq
- 29
- 6
0
votes
1 answer
how to serialize an object in soap format and add prefixes
I have an object and iam serilaizing the object using xml seriliazer.
after serilaizing my data looks like this

Santosh
- 2,355
- 10
- 41
- 64
0
votes
1 answer
How to deserialize all Soap serialized objects
I am soap serializing multiple objects and appending them to a single file,then I am desirializing to have all the objects to tree view
I am using this part of code of desirialization
FileStream fs = new FileStream(fName, FileMode.Open);
while…

user1439419
- 13
- 5
-1
votes
1 answer
Host is Unresolved... Unknown host Exception
public class main extends Activity {
/** Called when the activity is first created. */
private static String SOAP_ACTION = "http://footballpool.dataaccess.eu/data/TopGoalScorers";
private static String NAMESPACE =…

SilentKiller
- 6,944
- 6
- 40
- 75
-1
votes
1 answer
How to post data to php service...SOAP
Below i have written code of a soap webservice in php with its client,It is working fine, actually m new to php so don't know how to post data to my server php service from html page, i know by using javascript it is possible but how.....any help by…

Santosh
- 124
- 2
- 13