-1
votes
1answer
60 views
programming approach/algorithm…
Hi.
Got a situation where I'm fetching data from a website, based on an input list of sites, so I know the number of sites/output I should have. My primary question, (and the reas …
0
votes
0answers
14 views
Sequentializing and synchronizing a set of asynchronous web service calls
In my Silverlight class, I have to make a number of async method calls to a webservice. The silverlight class simply calls a number of these method calls, but I want them to actua …
0
votes
2answers
31 views
Javascript Complex classes
I have the folowing scenario:-
I need to create a Request class (in Javascript) with the following structure
<Request>
<a/>
<filter>
<x/>
…
0
votes
2answers
29 views
Unable to write a file to the server
I have a web service that creates files on the server. It works great locally. As soon as I deploy the service to the shared host, it hangs. No exception is caught in the front end …
0
votes
1answer
11 views
ServiceContractGenerator vs ServiceDescriptionImporter
I'm trying to build a light-weight SOAP client without using Add Service Reference. Ideally, this client should work for as many services as possible. Currently, it uses ServiceDes …
0
votes
3answers
43 views
Security weak link
I've read a ton of information about hashing and salting passwords, do's, don't etc. The problem I see is this: If a hacker is going to go through the efforts of stealing the lis …
1
vote
1answer
26 views
Techniques to reduce data harvesting from AJAX/JSON services.
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 bei …
2
votes
2answers
58 views
Web service is expecting a DataSet object, how can I provide that via ColdFusion or in raw XML?
I need to make a call to a web service written in .NET. The application making the call is written in ColdFusion. One of the parameters the web service expects is a DataSet object. …
0
votes
1answer
11 views
J2me web service connection problem
hi,
i'm trying to connect to a php web service using kxml-rpc api and the code is as simple as this:
XmlRpcClient xmlrpc = new XmlRpcClient("http://***ip here***:88/secure/servic …
0
votes
4answers
32 views
Architecture question - call a remote SQL Server directly or thru a service?
In my new WPF/silverlight app, is it better to directly connect to my remote SQL Server (I'm using linq to sql), or is it better to call a WCF service and have the service connect …
0
votes
2answers
48 views
How to throw an exception on a web service in .net with custom message?
How do I throw a custom exception in a C# web service so that flex reads the error on fault?
I tried simply throwing an exception like this
throw new Exception("invalid key");
…
3
votes
2answers
31 views
How to start cxf service on localhost but return external address in wsdl?
I'm using cxf and jetty behind apache to expose a webservice via soap. The goal is to start jetty on http://localhost:9000 in all cases and have apache proxy to it, but have the a …
0
votes
1answer
50 views
Exception in a Hello World webmethod.
I get an exception in a WS (asmx) which says:
System.IndexOutOfRangeException: Index was outside the bounds of the array.
at System.Web.Services.Protocols.HttpServerType..ctor( …
0
votes
2answers
27 views
xml and namespace anomaly
What is the difference between the following pieces of xml?
The reason I ask is that when I submit the xml to a BPEL process the first and second one work but the last one does no …
3
votes
2answers
98 views
What are some things Mono is not a good fit for?
I've started your typical web project from scratch using the Mono platform. You know, web services, a UI, MySQL database, all that. I've heard around the net that it's not a pictur …
