Hello,
I have been visiting some sites hosted on GAE and I found them to be very slow.
Pretty much all of them take longer than usual to load.
Time: (in seconds) [ YSlow ]
9.9 giftag.com
3.1 hotskills.net
1.9 jeeyo.net
1.5 appspot.com
Is it that App Engine Cloud is too slow, Bigtable is too slow ... or what?
...
I have an environment in which I cannot add another HTTP container (whether ServiceHost, IIS, etc.) but I still need to process SOAP requests (represented as strings) with a WCF web service. I was hoping to write a simple wrapper method (C#) such as:
string processSoapMessage(string req);
In that method, I would manually create a Sys...
I've got a large amound of data I'm sending down to the client using jQuery's $.ajax() function. I'm calling a method in a ASP.NET web service that returns the JSON data. Everything is great for most searches, but when I've got a large data set to return I run into a issue with the JavaScriptSerializer MaxJsonLength property. What's the ...
If you wanted to start a 'website' that could be accessible from multiple 'endpoints'. Is it a good idea to design from a REST perspective from the begining?
I'm thinking that the answer is 'yes' ... but are there other opinions?
Should REST be your 'starting point' for the design of systems that are hopefully extensible and also acce...
I have created a web service via WCF. Then I exposed it as a web service to make it usable with a .NET 2.0 application. I created some DataContract with DataMember that could be used for by the exposed OperationContract.
I notice that when I try to create DataClass to be passed in the web service that each DataContract attribute now has...
I have a WCF service and am hosting it in a Windows Service.
I tried to add a reference for the service from a Windows Form client built on .NET 2.0. I could get the Web Reference by pointing to the httpGetUrl="http://localhost:8002/HBAccess/help/mex" but when I check the Reference.cs---It only contains a namespace with nothing in it.
...
Hi, I am using a xml web service on my web app and sometimes remote server fails to respond in time. I came up with the idea of re-request if first attempt fails. To prevent loop I want to limit concurrent request at 2. I want to get an opinion if what I have done below is ok and would work as I expect it.
public class ScEngine
{
pr...
I would like to test a trivial SOAP app against Microsoft Exchange 2007 (or 2010) webservices. Is there any demo server on the internet available? My problem is, that I have no 64-Bit machine around here to install a server for myself.
The 2003 server, which is hanging around at the office isn't suitable for my needs (Exchange Web Servi...
Has anyone gotten Bing Map Web Services (formerly Virtual Earth Web Services) working with Delphi?
Based on my experiences so far (both using Delphi and Visual Studio C#), I'm about ready to give up on it and go with the MapPoint Web Service until a future version of Bing Maps Web Services comes out. However, I thought I'd post a quest...
wsdl.exe, appears to be the default tool for .Net to generate proxy class from wsdl. It has known problems (see here and here, also some SO questions). Is there an alternative proxy class generator?
I am not doing WCF, so tools such as svcutil.exe may not be usable.
...
I have a bug where special characters (danish 'ø' in this case) are shown correctly when running locally, but wrong when the code runs on a server (I get a pipe '|'). I was trying to solve this today, but I did not have access to the server, other than updating the code files. I will limited access monday, so I can at least write inter...
Recently, I am working on a project that requires to build a web service client in Java running on JAX-WS engine to talk to a .NET web service secured by Integrated Windows authentication (also known as NTLM protocol)
I searched on the Internet. It seems a well-known issue, but no one has good solution yet.
Anyone has done this before...
I am trying to consume data from a webservice published by a 3rd party. I have a SDK win-app that is able to call the service (from my dev machine) and get results, but a web-app (running on the same machine) which has the same code, is getting nothing back.
My question is:
Is there a difference (from the server's prospective) as to...
I have a web-based interface for handing invoices, customer records and other transaction records which interacts currently with a database of all the aforementioned stored upon the same machine. As you can imagine, this is quite a simple set-up consisting of a web-app (PHP) and a database (MySQL). However, the ideal scenario is to keep ...
I'm interoping with some com objects in a web service using code shared with a windows app. The window apps has no problems interoping with the com objects but the web service throws this exception
'Type 'MapShots.FODDs.ilfFOD.fodDescriptions' in Assembly 'ilfFOD, Version=1.1.1.0, Culture=neutral, PublicKeyToken=null' is not marked as...
Are there examples which show how Delphi invokes the Active Directory Kerberos server to request a ticket granting ticket / normal ticket?
Background: the ticket is required for authentification to a web service which exchanges confidential information.
Edit: a short source code example would be very helpful. I have found the JEDI Wind...
All,
Atlast had our admin install the PEAR SOAP module on our apache server. Now when i try the following code - it is giving me an error "HTTP Bad Request". Can anyone help?
<html>
<body>
<?php
/* Include PEAR::SOAP's SOAP_Client class: */
require_once('SOAP/Client.php');
$zip = $_REQUEST['zip'];
?>
<form action="wszip.php" method="p...
Hi,
I'm using WebService class with WSDL.
How to list available operations in WSDL and their parameters?
There is operations property but it's empty.
...
How i can determine when a web service is available (on-line)? in Delphi or C#?
...
I have a webservice on a remote host that I need to invoke from ASP.NET/C# class. What is the simplest way of calling a method via SOAP, given WSDL url and a method signature?
Given:
WSDL url as string(available only at runtime, i.e. variable)
Method signature(constant)
Need to:
Create a soap client and perform method call.
...