1. How force a maximum string length in a C# web service object property? stackoverflow.comIn this class for example, I want to force a limit of characters the first/last name can allow.
|
2. Convert string to GUID in Actionscript 3 stackoverflow.comI'm retrieving an GUID from a webservice with Flex. With this GUID i have to retrieve an Username from the webservice. The output gives me a "The key supplied is invalid. It must ... |
3. How to execute a jax-ws soap request from a string or inputstream stackoverflow.comI am using jax-ws ri (metro) and would like to execute a webservice call without an http container. I have an XML file containing the SOAP message (exactly the same as ... |
4. How to get the Soap XML from a web service and store it in a string? stackoverflow.comI have web service written that generates some data...can I call the web service in a way that i can store the xml soap representation of data...instead of actually calling the ... |
5. Database null returning as string null in soap xml stackoverflow.comI'm using Livecycle for a web service tier. If there is a null in the database, the nodes have a string 'null' in them. how can I make sure that I strip ... |
6. Passing UTF-8 encoded string to SOAP stackoverflow.comI am using a third party Web Service. I am passing a string to a function in that service, that string, which i am reading from a UTF-8 text file. The ... |
7. How to filter out illegal XML character in Java stackoverflow.comI'm building a web service. Some one put illegal characters into our database. Now when I try to retrieve those strings and send them via a webservice, the client chokes. I get an error ... |
8. Deserializing a particular XML string stackoverflow.comI have a problem and I can't get out of it. My knowledge about WebServices isn't great and I have a little problem that I need to solve. I'm developing a client ... |
9. Initilizing char **string in ansi C for use in soap structure function argument stackoverflow.comThis question is for ANSI C programmers with pointer experience: (cannot use the c++ new keyword :) I am doing soap development and have source code generated using gsoap, so I would like ... |
10. Input string was not in a correct format stackoverflow.comI have two web service functions which have the exact same interface (calling from C#/Winform application):
|
11. Build SOAP envelope with XDocument instead of string stackoverflow.comcurrently I have this code to build a soap envelope:
|
12. Sending an XML string inside a SOAP envelope stackoverflow.comI am trying to call a third-party webservice that is looking for an an xml string inside the soap envelope. However, when I pass in an xml string, the server responds ... |
13. Sending raw xml string directly into a soap service with java stackoverflow.comIs it possible to send an xml string directly into the soap serivce instead of generating the java classes for it? We want to send in this xml:
|
14. SOAP Web Services in Flash Builder 4.5 - won't accept a string with spaces or quotes stackoverflow.comWhen using SOAP web services in Flash Builder, I am able to use the web services tool and test making service calls without any issue. I can pass strings that ... |
15. What is a possible cause of "Fault string, and possibly fault code, not set" when making a web service call? stackoverflow.comI am making a SOAP web service call in a Java application to a third party web service. Java classes used to look up the web service, transfer the data and ... |
16. How can I send Array of strings to a webserver using SoapObject (or even complex types) stackoverflow.comI have the following code:
|
17. How to pass an array of String for SOAP Java webservice stackoverflow.comI have a SOAP webservice in Java. I need to know how to pass an array of String to the WebServer. I have found on the web the following code that should be ... |
18. javax.xml.soap.SOAPElement addTextNode(String) coderanch.comThanks for the response Lasse. I have indeed tried addChildElement(). However, this method assumes that the string is the tag name, and thus adds < and /> at the beginning and end of my string. I did in fact solve my problem by essentially writing a recursive deep copy method which starts at the root element and appends each child element ... |
19. Convert String into SOAP envelope object. coderanch.com |
20. Putting string in soap message coderanch.comOriginally posted by Prajatna Mahunta: Need to put a XML(which is in string format) inside the soap message. Let me tell you one thing...we are using Java, in WAS 5.1 I suspect that you are actually asking how to pass or return a string that contains XML with a JAX-RPC web method. Under JAX-RPC a parameter that contains plain XML has ... |
21. String SOAP xml to java object coderanch.comThe foundation of Web services lies in the sending and receiving of messages in a standard format so that all systems can understand them. Typically, that format is SOAP. A SOAP message can be generated and sent manually, but the SOAP with Attachments API for Java (SAAJ) -- an offshoot of the Java API for XML Messaging (JAXM) -- automates many ... |