Problems creating client proxy with Soapsuds

  • Thread starter Thread starter godd
  • Start date Start date
G

godd

I've got next error when try to create client proxy with soapsuds :
"Error: Invalid schema data., String Syntax Not Handled Dictionary`2"

Here is how I do this :
soapsuds -id:c:\Server\ -types:Server.Dispatcher,ServerDispatcher -
oa:c:\server\studs\DispatcherStud.dll

I was able to run this command in the past with no problems. What does
this error mean?

Thanks,

godd
 
Found a problem - one of the referenced assemblies(referenced as dll)
was located in different folder - it worked after I moved referenced
dll to changed reference to current folder and change the reference
to it.
 
The problem was with a reference to the dll, located in other folder.
I copied dll over to the current folder and changed the reference.
 
The problem was with a reference to the dll, located in other folder.
I copied dll over to the current folder and changed the reference.
 
I've got next error when try to create client proxy with soapsuds :
"Error: Invalid schema data., String Syntax Not Handled Dictionary`2"

Here is how I do this :
soapsuds -id:c:\Server\ -types:Server.Dispatcher,ServerDispatcher -
oa:c:\server\studs\DispatcherStud.dll

I was able to run this command in the past with no problems. What does
this error mean?

It means it can't handle generics, basically.

Jon
 
You cannot use soapsuds.exe with generictype parameter or generic class
directly.
it is because web service base on http protocol.
If you want to use generic type directly,you have to use interface proxy dll.
soapsuds don't support .net datatype fully.
performanc is not good. (soapsuds).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top