0
votes
5answers
64 views
Objective reasons for using Python or Ruby for a new REST Web API
So this thread is definitely NOT a thread for why Python is better than Ruby or the inverse. Instead, this thread is for objective criticism on why you would pick one over the other to write a RESTful …
0
votes
1answer
13 views
RESTful services and
Hello.
I have just read Resource-Oriented Architecture: The Rest of REST. The reasoning behind content negotiation is compelling, but there's one thing I sometimes need, which seems to be impossible …
0
votes
1answer
15 views
Is showing the Exception StackTrace useful in a RELEASE assembly or only a DEBUG .dll
I've gone to some lengths to improve the error handling in my webservice - in particular, showing the StackTrace as in this example:
catch (Exception ex)
{
EventLog log = new …
2
votes
7answers
120 views
Why can’t my ASP.NET web service kick off a process, but my .NET console app can?
This is code from a class library:
proc.StartInfo = new ProcessStartInfo(CmdPath, "+an -b");
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.CreateNoWindow = true;
…
1
vote
5answers
95 views
Can anyone explain the difference between XMLRPC, SOAP and also the C# Web Service?
Are they just the same protocol or something different?
I am just confused about it.
Actually, I want to call a web service written in C# with ASP.NET by Python. I have tried XMLRPC but it seems just …
0
votes
1answer
15 views
jquery ajax error cannot find url outside of debug mode
I inherited some code two weeks ago that is using the jquery.ajax method to connect to a .NET web service. Here is the piece of code give me the trouble...
if (MSCTour.AppSettings.OFFLINE !== …
0
votes
2answers
13 views
.NET WebService Sending Large XML File
I have a list of objects List that I need to send over a web service. The list contains about 37,000 Objects. This translates to about a 125 MB XML File if I serialized it to XML.
I think by …
0
votes
2answers
13 views
An exception occurred during the Install phase.System.ComponentModel.Win32Exception: The specified service already exists
This error i am getting when i am installing the webservice which i have been given..
since i have no idea about webservice ,i am finding it difficult where to locate the name.
i have some vb file …
0
votes
3answers
39 views
Can a server page (jsp, aspx) be used as Web Service
What is the difference between using a "Web Service" and calling a server page such as JSP/ASPX?
To me it looks like a Web Service is just a framework around the server pages. For e.g. I can have a …
1
vote
3answers
36 views
Limiting access to web service
Hi,
Is there any way to restrict access to my (.NET) web service without modifying the actual web service code and/or the calling app? Basically, I have the web service on one subdomain and would like …
5
votes
4answers
53 views
How do you monitor your web services?
Is there any tools that can be used to monitor SOAP, REST services for basic as well as service uptime etc.,
2
votes
2answers
41 views
java webservices
Hi
We have a current jee project and a new requirement to introduce a webservice into the project.
We develop on Rad 7 and deploy to Websphere 6.1, but this could change soon to deploy to tomcat.
…
0
votes
1answer
44 views
How do I consume this web service in a .NET app?
I'm pushing the bounds of what one should ask of others with this one, but I'm totally stuck, so here goes...
This is my first web service. Not only that, it's my companies first web service - nobody …
0
votes
6answers
55 views
Should I place Jquery files on my web server or just refer to them via jquery.com in my PHP files, which is better?
When I use Jquery or its plugin, should I just add
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" …
0
votes
1answer
55 views
Calling webservice via server causes java.net.MalformedURLException: no protocol
I am writing a web-service, which parses an xml file. In the client, I read the whole content of the xml into a String then I give it to the web-service.
If I run my web-service with main as a …
