active questions tagged web-services - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T00:08:54Zhttp://stackoverflow.com/feeds/tag/web-serviceshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1816371/ksoap2-complex-parameter0ksoap2 complex parameterPandalover2009-11-29T18:43:36Z2009-11-29T23:08:09Z
<p>I need to call a web service using ksoap2, I have been doign this successfully up till the point where I need to pass a more complex type to the web service.</p>
<p>Does anybody have an example of passing a complex type to a webservice, preferably, only using SoapObject (the object in question is only Strings and dateTimes.</p>
<p>Thanks
in advance</p>
http://stackoverflow.com/questions/1804633/fedex-freight-shipping-list0Fedex Freight Shipping Listihorko2009-11-26T16:28:50Z2009-11-29T22:17:16Z
<p>Could anyone help me with some examples how to get FedEx Freight Shipments Rates in ASP.NET application, because all is misunderstanding in their crap documentation and samples.
Thanks.</p>
http://stackoverflow.com/questions/1816234/should-i-learn-xml-before-wcf2Should I learn XML before WCF?carewithl2009-11-29T18:06:33Z2009-11-29T19:01:42Z
<p>Hi</p>
<p><br></p>
<p>a) I plan to start learning WCF, but I’m not sure whether it’s important to learn XML first. If XML should be learned before WCF, why?</p>
<p>b) In case XML should be learned prior to WCF, then I’d prefer to learn just the parts required to understand WCF. So which of the following XML technologies should be tackled and in how much detail:</p>
<ul>
<li>basics of XML</li>
<li>DTD</li>
<li>XML schemas</li>
<li>XPath</li>
<li>XSLT</li>
<li>XQuery</li>
</ul>
<p><br></p>
<p>thanx</p>
http://stackoverflow.com/questions/14120/example-web-service7Example Web ServiceEli Courtwright2008-08-18T03:03:52Z2009-11-29T17:26:04Z
<p>When I wanted to learn SOAP I looked around for tutorials. There are plenty out there, and they all say that they've created an example web service that you can use to test your "My First SOAP Client" app. Unfortunately, all of the sample web services I found have long since gone offline, making the test programs useless.</p>
<p>Can anyone recommend a good SOAP tutorial that uses with a still-working example web service?</p>
<p>EDIT: So far the sports web service mentioned below is the only one that seems to work as advertised and that doesn't come with a tutorial. So while I appreciate the great suggestions, I still consider this question to be unanswered.</p>
http://stackoverflow.com/questions/1639646/any-full-ruby-stack-ami-on-ec20Any Full "Ruby Stack" AMI on EC2 ? nexneo2009-10-28T19:48:34Z2009-11-29T16:39:57Z
<p>What is best available EC2 AMI that have satisfy following must have?</p>
<ul>
<li>Ruby Stack Pre Installed</li>
<li>MySql Installed and configured with Ruby</li>
<li>Monit Installed</li>
<li>Nginx</li>
<li>Secure SSH access</li>
</ul>
<p>Please let me know AMI you are recommending you have used or not? </p>
<p>Amazon lacks proper review system for AMI unlike product/book previews.</p>
http://stackoverflow.com/questions/1815650/how-to-read-http-response-headers-from-web-service-response0How to read HTTP response headers from web service response?Guy Bertental2009-11-29T14:18:51Z2009-11-29T15:33:31Z
<p>Hi,</p>
<p>How can i read HTTP response headers from web service response in C#?</p>
<p>Best Regards,</p>
<p>Guy Bertental</p>
http://stackoverflow.com/questions/740542/web-services-with-netbeans0Web Services with NetbeansProxify2009-04-11T18:02:38Z2009-11-29T15:16:02Z
<p>After having done a web service with netbeans and having tested it. What is it that I should upload to the server so I can use it? I have been going around tutorials but none (of the ones I've found) say what to upload. They just finish when you deploy the web service =/.</p>
http://stackoverflow.com/questions/1813416/need-standard-approach-to-create-a-soap-interface-for-a-deployed-rest-service0Need Standard Approach to create a SOAP interface for a deployed REST serviceBruce Gritton2009-11-28T18:59:43Z2009-11-28T22:42:12Z
<p>We want to allow our enterprise of service providers to deploy REST or SOAP solutions. These services will become candidates as an "authoritative" service endpoint for a specific request made by a consumer to an enterprise broker. Therefore, we want a mechanism to create a SOAP based interface for exposure by the broker when a provider publishes his REST service to the broker. Any references on how to approach this in a normalized fashion?</p>
http://stackoverflow.com/questions/1156498/how-to-set-minoccurs-to-10How to set minOccurs to 1 Jeremy2009-07-20T23:22:15Z2009-11-28T17:44:54Z
<p>I' building an ASP.NET web service. </p>
<p>I've got my code defined as below, but I can't figure out how to the the wsdl to specify the minOccurs of the FirstName and LastName properties. I want those as required, and can not be empty. Is it possible?</p>
<pre><code>[WebMethod()]
public void TestMethod(TestClass Test)
{
...
}
[Serializable]
public class TestClass
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/1777542/how-to-prevent-concurrency-in-web-service-api2How to prevent concurrency in web service API?Marcus Leon2009-11-22T02:01:56Z2009-11-28T13:25:56Z
<p>We have three web services (<code>/a</code>, <code>/b</code>, <code>/c</code>) where each service maps to a method (<code>go()</code>) in a separate Java class (<code>ClassA</code>, <code>ClassB</code>, <code>ClassC</code>).</p>
<p>Only one service should run at the same time (ie: <code>/b</code> cannot run while <code>/a</code> is running). However as this is a REST API there is nothing to prevent clients from requesting the services run concurrently. </p>
<p>What is the best and most simple method on the server to <em>enforce</em> that the services <em>don't</em> run concurrently?</p>
<p><hr></p>
<p><strong>Update</strong>: This is an internal app, we will not have a large load and will just have a single app server.</p>
<p><strong>Update</strong>: This is a subjective question as you can make different arguments on the general application design which affects the final answer. Accepted overthink's answer as I found that most interesting and helpful.</p>
http://stackoverflow.com/questions/1805292/why-my-xpath-request-to-xml-file-on-web-doesnt-work0Why my XPath request to XML file on web doesn't work?abatishchev2009-11-26T19:21:54Z2009-11-28T11:45:16Z
<p>There is an XML file with exchange rates <a href="http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml" rel="nofollow">http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml</a>:</p>
<pre><code><gesmes:Envelope>
<gesmes:subject>Reference rates</gesmes:subject>
<gesmes:Sender>
<gesmes:name>European Central Bank</gesmes:name>
</gesmes:Sender>
<Cube>
<Cube time="2009-11-26">
<Cube currency="USD" rate="1.5071"/>
...
</code></pre>
<p>I do next XPath request:</p>
<pre><code>var doc = new XmlDocument();
doc.Load(url);
var node = doc.SelectSingleNode("//Cube[@currency=\"USD\""]);
var value = node.Attributes["rate"].Value;
</code></pre>
<p>but it returns <code>null</code>! Where is my mistake?</p>
<p>If I do this request, all works fine:</p>
<pre><code>var node = dic.SelectSingleNode("//*[@currency=\"USD\"]");
var name = node.Name; // "Cube"
</code></pre>
http://stackoverflow.com/questions/1812307/please-suggest-a-good-net-webservice-book0please suggest a good .NET Webservice bookWondering2009-11-28T11:29:15Z2009-11-28T11:44:21Z
<p>Dear All,
can u please suggest a good .NET webservice book? I do have basic knowledge in web service.</p>
http://stackoverflow.com/questions/1763099/techniques-to-reduce-data-harvesting-from-ajax-json-services8Techniques to reduce data harvesting from AJAX/JSON services.Sosh2009-11-19T12:54:41Z2009-11-27T22:08:56Z
<p>I was wondering if anyone had come across any techniques to reduce the chances of data exposed through JSON type services on the server (intended to supply AJAX functions) from being harvested by external agents.</p>
<p>It seems to me that the problem is not so difficult if you had say a Flash client consuming the data. Then you could send encrypted data to the client, which would know how to decrypt it. The same method seems impossible with AJAX though, due to the open nature of the Javascrip source.</p>
<p>Has anybody implemented a clever technique here?</p>
<p>Whatever the method, it should still allow a genuine AJAX function to consume the data.</p>
<p>Note that I'm not really talking about protecting 'sensitive' information here, the odd record leaking out is not a problem. Rather I am thinking about stopping a situation where the whole DB is hoovered up by bots (either in one go, or gradually over time).</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1810182/error-message-when-trying-to-add-a-service-reference0Error message when trying to add a Service Reference.ThePower2009-11-27T18:45:19Z2009-11-27T18:49:33Z
<p>I'm trying to add a service reference to my silverlight project from a file stored on my hosting server. When I put the link in I get the following error:</p>
<pre><code>The document at the url http://www.lloydp.co.uk/Test/WcfRectangleService.dll was not recognized as a known document type.
The error message from each known type may help you fix the problem:
- Report from 'DISCO Document' is 'Data at the root level is invalid. Line 1, position 1.'.
- Report from 'WSDL Document' is 'There is an error in XML document (1, 1).'.
- Data at the root level is invalid. Line 1, position 1.
- Report from 'XML Schema' is 'Data at the root level is invalid. Line 1, position 1.'.
Metadata contains a reference that cannot be resolved: 'http://www.lloydp.co.uk/Test/WcfRectangleService.dll'.
The content type application/octet-stream of the response message does not match the content type of the binding (application/soap+xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first 1024 bytes of the response were: 'MZ�
</code></pre>
<p>Can anyone tell me what the problem is? The XML file hasn't been altered in anyway, I'm new to all this so I'm a bit lost at the minute.</p>
<p>Thanks in advance,</p>
<p>Lloyd</p>
http://stackoverflow.com/questions/1374178/ip-to-country-city-lat-lang-javascript-service1Ip to country, city, lat, lang javascript serviceEeyore2009-09-03T15:33:45Z2009-11-27T18:45:30Z
<p>What the best/accurate/free service to convert the IP from the following script to country/city/lat/long?</p>
<pre><code>$.getJSON("http://jsonip.appspot.com?callback=?",
function(data){
alert( "Data Returned: " + data.ip);
});
</code></pre>
http://stackoverflow.com/questions/1185017/create-dynamic-xml-and-send-it-with-php-class0Create dynamic xml and send it with php classRichard2009-07-26T17:01:05Z2009-11-27T16:31:27Z
<p>Hello,
my question is how I can send clean xml from this class.
It is simplified, so there is the least off trouble that could have been caused by other things.</p>
<p>The problem now is that the error says that the xml declaration should occur at the top off the document.</p>
<p>What is the right way to avoid this kind off errors?
Is there some php function that would do this for me?</p>
<p>I have to mention that I am doing this the REST way.
So, no hassle with soap servers, xml-rpc servers.</p>
<p><strong>The first part is the instantiation off the class in the index.php.</strong></p>
<p><strong>The class is in the included file.</strong></p>
<pre><code> <?php
include 'controller/' . 'gpsController.php';
$gps=new gpsController('eenwaarde');
$gps->setgpsloc();
exit();
?>
<?php
class gpsController {
// extends controller
public $url;
function __construct($url) {
$this->url = $url;
}
public function setgpsloc() {
$gebruikersnaam="kabouter";
$status_code = 2;
header('Content-type: text/xml');
$output= "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
$output.= "<response>\n";
$output.= "\t<status>$status_code</status>\n";
$output.= "\t<fout>$gebruikersnaam</fout>\n";
$output.= "</response>";
echo trim($output);
}
public function index() {
}
}
?>
</code></pre>
<p>Thanks, Richard</p>
http://stackoverflow.com/questions/1809389/is-there-only-apache-axis-wsdl2java-or-there-is-any-other-library0Is there only Apache Axis wsdl2Java or there is any other library?flair2009-11-27T15:36:57Z2009-11-27T15:52:49Z
<p>I have used Axis wsdl2Java, I am wondering is there any other way to create web service client?</p>
http://stackoverflow.com/questions/1039556/tibco-soap-request-over-https-ssl-certificate-verification-problem0Tibco SOAP request over https - SSL certificate verification problemNathan2009-06-24T16:44:48Z2009-11-27T13:53:22Z
<p>Hello,</p>
<p>I'm using Tibco BusinessWorks to consume a soap web service over an HTTPS connection.</p>
<p>The instructions boil down to:</p>
<ol>
<li>Export certificates using a web browser.</li>
<li>Use the Tools->Trusted Certificates->Import PEM format to folder within the project.</li>
<li>In the SSL Config of the Transport Details tab, point to the trusted certs folder you imported them to.</li>
</ol>
<p>--OR--</p>
<p>Use the BW_GLOBAL_TRUSTED_CA_STORE global variable to point to an external folder (file:///c:/tibco/certs) and put the certs there in pem format.</p>
<p>I've tried both ways, and still end up with the error below:</p>
<p><code>iaik.security.ssl.SSLException: Server certificate rejected by ChainVerifier</code></p>
<p>I've tried exporting them via firefox and IE. In different formats including all keys and individually, yet the error still persists.</p>
<p>Is there something more specific that I need to do or is there a way to turn up the debugging for the cert verifier? I've tried turning up the debug level for designer, but I'm not sure I'm doing that correctly.</p>
<p>Any help would be wonderful.</p>
<p>Thanks much!</p>
http://stackoverflow.com/questions/1808556/how-do-i-add-a-cache-control-http-header-to-images-i-upload-to-amazon-s30How do I add a Cache-Control HTTP header to images I upload to Amazon S3?Mark B2009-11-27T12:42:59Z2009-11-27T12:42:59Z
<p>I think I'm probably just missing something in the docs here, but how do I specify that images I upload to S3 have a Cache-Control header when requested?</p>
<p><a href="http://stackoverflow.com/questions/269840/is-it-possible-to-change-headers-on-an-s3-object-without-downloading-the-entire-o/270066">This answer</a> seems to suggest you can do it by adding metadata, but the example isn't too clear. Can anyone point me to a code sample or some documentation of how I would do this in C# please?</p>
http://stackoverflow.com/questions/380540/how-to-connect-to-a-oracle-database-from-web-services-published-on-iis0How to connect to a Oracle Database from Web Services Published on IISNikola Stjelja2008-12-19T09:50:11Z2009-11-27T11:00:05Z
<p>The situation is this:<br />
1. Oracle database 10g on one server. Configured to accept connections.<br />
2. Web service on different server (IIS), connecting to the database. This doesn't work.<br />
3. Same web services running on the VS 2005 web server, work without a problem and can connect to the database. </p>
<p>The problem:
Do not know what is the issue with web services published on IIS in respect to connect to Oracle 10g when the same services, running on VS 2005 web server work without the problem.</p>
<p>Error returned: Oracleclient connection timedout.</p>
http://stackoverflow.com/questions/1802324/asp-net-script-service-consumption-in-javascript0ASP.net Script Service consumption in javascriptAjay2009-11-26T08:39:34Z2009-11-27T03:36:09Z
<p>I have a script service in asp.net and I need to consume this WS from javascript using JSONP (Script tag injection; since it is cross domain, no $.ajax() call).</p>
<p>In this case, where the input to the web method is a complex structure, I have to <em>create</em> the input structure at the client. How does matching of the client-side structure to the Server side parameter happen?</p>
<blockquote>
<p><strong>To make the question a bit more clearer for the unapt answers given
:-</strong> </p>
<p>Assume that I have <em>somehow</em> created
the complex input and passed it to the
Script Method. Now, how does the
matching/vaidation of my input
structure to the input parameter of
the Script method happen (or in other
words, what is the basis of the
matching?)</p>
</blockquote>
http://stackoverflow.com/questions/1805713/wsat-how-to-handle-messages-to-unknown-participants0WSAT - How to handle messages to unknown participants?Pablo2009-11-26T21:22:46Z2009-11-26T21:22:46Z
<p>I read on <a href="http://docs.oasis-open.org/ws-tx/wstx-wsat-1.2-spec-os.pdf" rel="nofollow">OASIS specs</a> that when an application receives a <code>prepare</code>, <code>commit</code> or <code>abort</code> message for an unknown participant, it should reply to the coordinator by calling the <code>aborted</code>, <code>prepared</code> and <code>aborted</code> services respectively.</p>
<p>The question is: When I have a participant, I know the location of these services because the coordinator sent them on registering the participant, and this endpoint reference is stored with the participant itself. So, when I don't have a participant, I don't know where these services are located.</p>
<p>So, how am I supposed to know (or where am I supposed to get) the location of these services, so I can reply the coordinator?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/747894/iis-web-service-calling-com-dll-that-needs-to-access-a-unix-file-share0IIS Web Service calling COM dll that needs to access a unix file shareiancgood2009-04-14T14:35:10Z2009-11-26T20:00:08Z
<p>We have a web service that uses COM to talk to some DLLs. The data files that the DLL functions rely on are on a unix share, and we must specify the data file location when initializing the COM calls. We have installed SFU 3.5 on our Windows Server 2003 server. We can't use a mapped drive because IIS is running as a service (or can we?). Using UNC doesn't seem to work either: As a logged in user, it fails the first time you enter the location, and then works. I don't know how to test it from the IIS perspective, as all we're getting from the DLL is an 'Invalid data file location' error. The unix share is open [no user/password required]. </p>
<p>Perhaps the problem isn't with IIS at all, but rather the DLLs have to access to the UNC or mapped drive? After all, it is the DLL that actually accesses the data files, not IIS or the web service executable. </p>
<p>I know very little about COM, DCOM, COM+. Pulling up Component Services, I can't find the COM objects we are using. [But I can find them using the MS OLEVIEW under 'Automation Objects'].</p>
<p>What are my options here?</p>
http://stackoverflow.com/questions/1804627/use-hudson-to-get-remote-tests-results0use hudson to get remote tests resultsRiduidel2009-11-26T16:27:40Z2009-11-26T16:31:22Z
<p>Hi all,
I've a server running a proprietary language on which I'm able to run "unit tests" in this language. I cannot install a Hudson slave on this machine, but would like to have these tests results appearing in a job of hudson (to have at least a monitoring of the code quality for this server code).
I'm currently trying to use web services to get the results and store them in Hudson workspace, but I do fear it is not the right solution.
What solutions can you advice me ?</p>
http://stackoverflow.com/questions/1803067/list-available-web-services-on-tomcat-using-spring-ws1list available web services on tomcat using spring-wsJholx2009-11-26T11:12:43Z2009-11-26T15:21:55Z
<p>Is it possible to get a list of all available web services on a tomcat server?</p>
http://stackoverflow.com/questions/563162/system-web-services-protocols-soapexception-server-was-unable-to-process-request0System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.ArgumentNullExceptionDaver2009-02-18T22:35:45Z2009-11-26T09:07:31Z
<p>I've been getting the error:</p>
<p>System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.ArgumentNullException</p>
<p>When I try to call my webservice using the following code:</p>
<p>{
//Create an echoSync request - set the services.
ServiceNameType sourceService = new ServiceNameType {Service = "echoSync", OnBehalfOf = "Source"};
ServiceNameType destService = new ServiceNameType {Service = "echoSync", OnBehalfOf = "Destination"};</p>
<pre><code>//Create the request.
SDD2RequestType request = new SDD2RequestType
{
AppId = "echoSync",
SourceService = sourceService,
DestService = destService,
RequestId = "1",
RequestBody = "Ping"
};
//Create the originator.
originator originator = new originator {id = "123456789"};
//Create the transport.
SDD2Transport transport = new SDD2Transport {originatorValue = originator};
//Send the request.
SDD2ResponseType response = null;
response = transport.SDD2TransportOp(request);
//Write out the response.
System.Console.WriteLine(response.ResponseBody.ToString());
</code></pre>
<p>}</p>
<p>My webservice method is quite simple and it looks like this:</p>
<pre><code> [System.Web.Services.Protocols.SoapHeaderAttribute("originatorValue", Direction = System.Web.Services.Protocols.SoapHeaderDirection.InOut)]
[System.Web.Services.WebMethodAttribute()]
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://memberdirect.net/SDD2/Transport", RequestElementName = "SDD2Transport", RequestNamespace = "http://cucbc.com/sdd2/transport/", ResponseElementName = "SDD2TransportResponse", ResponseNamespace = "http://cucbc.com/sdd2/transport/", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Default)]
[return: System.Xml.Serialization.XmlElementAttribute("SDD2Response", Namespace = "http://cucbc.com/sdd2/")]
public override SDD2ResponseType SDD2TransportOp(SDD2RequestType SDD2Request)
{
if (SDD2Request == null) throw new ArgumentNullException("SDD2Request");
var response = new SDD2ResponseType();
switch (SDD2Request.AppId)
{
case "echoSync":
response.AppId = SDD2Request.AppId;
response.ProcessingStatus = ProcessingStatusType.Complete;
response.RequestId = SDD2Request.RequestId;
response.ResponseBody = "Pong";
break;
default:
throw new System.NotImplementedException();
break;
}
return response;
}
</code></pre>
<p>When I make the call I know the request is not NULL but when it arrives at the webservice it is always received as null. I generated the webservice from WSDL using the wsdl.exe utility and clearly I don't understand all the details of SOAP that I should. Has anyone else run into this issue?</p>
<p>Thanks in advance for any help that anyone is able to provide.</p>
http://stackoverflow.com/questions/1560269/how-to-implement-xoap-weather-api0how to implement Xoap weather api Himadri2009-10-13T13:29:58Z2009-11-26T06:37:21Z
<p>Hi all,</p>
<p>I need to implement Xoap weather api.</p>
<p>Please help with code.</p>
http://stackoverflow.com/questions/1800370/c-first-attempt-with-wcf-in-vs20083C# - First attempt with WCF in VS2008Keith Barrows2009-11-25T22:30:17Z2009-11-26T06:06:38Z
<p>I am writing my first SVC and am missing something. It all compiles fine but the page does not seem to return anything from my service.</p>
<p>Service Code:</p>
<pre><code>namespace RivWorks.Web.Services
{
[ServiceContract(Namespace = "http://www.rivworks.com/ws/")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class PlayerService
{
[OperationContract]
public string Decrypt(string interactive)
{
return RivWorks.Security.Cryptography.Internal.Decrypt(interactive);
}
[OperationContract]
public void LogEvent(Int64 HistoryRequestID, string VideoPath, string Action, string Target, string ClientDateTime, string UrlReferrer, float Offset, string TimeZone)
{
DateTimeOffset dt = RivWorks.DateTimeInfo.ConvertFromFlash(ClientDateTime);
RivWorks.Membership.UserInfo userInfo = RivWorks.DateTimeInfo.GetUserInfo(dt, Offset, TimeZone, "Log Request");
RivWorks.Data.Player.LogEvent(HistoryRequestID, VideoPath, Action, Target, userInfo, UrlReferrer);
}
}
}
</code></pre>
<p>My ASPX code:</p>
<pre><code><body>
<form id="form1" runat="server">
<h1>Greeting</h1>
<div>
<asp:Literal id="PutFrameHere" runat="server" />
</div>
<hr />
<asp:ScriptManager ID="SM1" runat="server">
<Services>
<asp:ServiceReference Path="~/Services/PlayerService.svc" />
</Services>
</asp:ScriptManager>
<script type="text/javascript">
function OnDecrypt(result) {
www.rivworks.com.ws.PlayerService.Decrypt($get("encryptedText").value, OnDecryptComplete, OnError, null);
}
function OnDecryptComplete(result) {
alert("Complete: " + result.toString());
}
function OnError(result) {
alert("Error: " + result.toString());
}
</script>
Enter encrypted string:<input type="text" id="encryptedText" />
<br />
<input type="button" value="Decrypt" onclick="OnDecrypt()"? />
</form>
</body>
</code></pre>
<p>When I click the button, nothing appears to happen. I would expect an error or a string in response. Using FireBug and ServiceCapture do not reveal anything. ServiceCapture does not show any requests coming out.</p>
<p>On a slightly different note - what would I need to do to let a Flash and/or Flex app call into the service correctly? I don't do either so am curious as to what the command should look like (to give our flash/flex developers a sample to work from.)</p>
<p>Any hints, tips, tricks?</p>
<p><hr></p>
<p>Forgot to say that I was using a tutorial found at <a href="http://www.pluralsight.com/community/blogs/fritz/archive/2008/01/31/50121.aspx" rel="nofollow">http://www.pluralsight.com/community/blogs/fritz/archive/2008/01/31/50121.aspx</a></p>
http://stackoverflow.com/questions/1800995/how-to-verify-if-the-web-service-caller-is-my-web-site3How to verify if the Web Service caller is my web site?Nitai Bezerra2009-11-26T00:57:55Z2009-11-26T02:28:49Z
<p>For security reason, i need to garantee that only web client running an specif web site can access the web service. I'm doing verification over the domain request only, but i need to do some more robust. I think is too easy to break my security check.</p>
http://stackoverflow.com/questions/1603938/micrsoft-crm-3-0-web-service-via-php-soap-class2Micrsoft CRM 3.0 web service via PHP Soap classBen2009-10-21T22:07:59Z2009-11-25T21:38:51Z
<p>I would like to create new contacts and leads using php. I can't quite figure out how to call the methods of the mscrm 3 web service. </p>
<p>The php soap class seems quite simple to use. I am able to connect and authenticate to the crm web service and get a list of available functions however I am unsure how to go about calling them. </p>
<p>I have seen examples for mscrm 4.0 which seem to involve masses of XML including soap headers and envelopes. </p>
<p>I am under the impression that using a soap class bypasses this and will write all the extra xml for me so all I need to do is call a function with an array of parameters? </p>
<p>Am I completely wrong here ?</p>
<p>Has anyone done this with mscrm 3 that can provide some sample code, or perhaps give me a few pointers as how to correctly call the Create() method ? </p>