In this class for example, I want to force a limit of characters the first/last name can allow.
public class Person
{
public string FirstName { get; set; }
...
|
I'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 ... |
I 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 ... |
I 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 ... |
I'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 ... |
I 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 ... |
I'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 ... |
|
I 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 ... |
This 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 ... |
I have two web service functions which have the exact same interface (calling from C#/Winform application):
string[] f1(int, string[]) and string[] f2(int, string[])
to which I'm sending the exact same data. When I ... |
currently I have this code to build a soap envelope:
"<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
"<soap:Envelope " +
"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" ...
|
I 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 ... |
Is 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:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ver="http://www.timeedit.se/timeedit3/version2">
<soapenv:Header/>
<soapenv:Body>
<ver:findObjects>
...
|
When 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 ... |
I 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 ... |
I have the following code:
public boolean addString( int index,
...
|
I 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 ... |
Thanks 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 ... |
|
Originally 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 ... |
The 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 ... |