I was impressed with Amazon's new Amazon Simple Notification Service (Amazon SNS). Amazon has lots of other really impressive web app building blocks. Are there examples of large organizations using AWS? They seem impressive but the downside is you outsource your processing to a third party which could be considered pretty risky.
...
For regressions tests we use soapUI, which seems to be a valid and useful performance / load test tool as well.
However, are there even more advanced load generators especially for web service testing - maybe with reporting features similar to HP LoadRunner?
...
I'm having trouble parsing an XML response from a web service. I have a feeling this is due to a namespace issue. But, after 4 hours of research, trial-and-error, and head-banging I haven't been able to resolve it. Please help.
My goal is to get a dbms_xmldom.DOMNodeList that contains "ERRORS" nodes.
XML Response:
<?xml version="1....
I am currently trying to research how to use Android with an existing java based system. Basically, I need to communicate to/from an Android application.
The system currently passes object data from computer to computer using ActiveMQ as the JMS provider. On one of the computers is a display which shows object data to the user.
What ...
Are there methods for encoding and decoding *XML* in .NET? I can't seem to find them and am wondering why they aren't there and what to use instead?
I need to encode an XML document and pass it through to a string parameter on a web service. It then needs to be decoded at the other end.
...
My office mate created a web service application to be consumed by a .Net application on the presentation layer. He wants to read the connection string from the web.config. Thank you in advance.
...
I have an ASP.NET 2.0 web method with the following signature:
[WebMethod]
public QueryResult[] GetListData(
string url, string list, string query, int noOfItems, string titleField)
I'm running the disco.exe tool to generate .wsdl and .disco files from this web service for use in SharePoint. The following WSDL for the parameters i...
In an answer to another question it was mentioned that passing XML as a string parameter to a web service was bad practice. What is the reason for this?
...
Is it possible to test private methods of a web service, during api testing? If yes, how to differentiate public methods and private methods? I am using the object browser in VSTS to see the list of methods available.
...
Hello All...
I have created Web Service using Asp.net 3.5. Now it's working perfectly in live windows server, and giving me perfect xml while invoking it using some url like :
http://www.somedomain.com/Service.asmx?op=fetchData
Now My question is when I am accessing url like :
http://www.somedomain.com/Service.asmx
it's listing my c...
I have a set of web services in asp.net Is it possible to get a trace or log for all functions invoked during a service invokation, without modifying the source code itself.
...
I am retrieving data from a web service with...
NSString *myDataString = [[NSString alloc] initWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&outError];
How can I handle a situation where the web service is not available? As it is now the app simply hangs up.
Is there a way to test if a site is available? olso, initWithCon...
I have a webservice that I need to POST some data to using Qt.
I figured that I can use a QByteArray when POSTing to the web service.
My question is, how can I format this array in order to be parsed correctly at the other end?
This is the code I have so far:
// Setup the webservice url
QUrl serviceUrl = QUrl("http://myserver/...
I've got webservice which has multiple classess
My winforms application see theirs, but not everyone.
This application has webreference to this webservice.
I think that this application see every class which is used in WebMethod, but I using parent class in WebMethod and I wanna casting it to another class,which is not used at webmet...
In the installation documentation for Axis C/C++ it says the following:
4.1 Using AxisConfiguration to create the axiscpp.conf file
The AxisConfiguration executable is a
simple user interface that allows the
user to generate an axiscpp.conf file
by first asking a few simple questions
about where the package was unzipped
...
I'm building an air app (A screensaver). What I want to do is to let the app check a webservice (preferably PHP, java axis2 would also help) for images and text content etc. I may even do some DOM restructuring (using jQuery). Any suggestions and pointers would be welcome. Of Course code snippets would be appreciated :-)
thanx
Pk Anane
...
I am trying to call a webservice. The client was generated with weblogic's ant task clientgen. But when I use the client, following exception happens:
java.lang.ExceptionInInitializerError
at com.bea.xbean.xb.xsdschema.SchemaDocument$Factory.parse(SchemaDocument.java:799)
at weblogic.wsee.wsdl.WsdlSchema.parse(WsdlSchema.java:104)...
I'm working on a SL 4.0 app at the moment that calls into a lot of our existing asp.net web services. In the past, if we've needed to get data out in a non-specific structure (which is quite uncommon), then we used DataSets. These are obviously not supported in Silverlight so I was wondering what alternatives there are for getting back d...
Can someone tell me if there is a way for me to use the WebConfigurationManager.OpenWebConfiguration() using a remote server, port and virtual directory?
Examples cited in http://msdn.microsoft.com/en-us/library/ms228063.aspx and http://quickstart.developerfusion.co.uk/QuickStart/aspnet/doc/management/mgmtapi.aspx only use the virtual ...
I was looking for a way to route http://www.example.com/WebService.asmx to http://www.example.com/service/ using only the ASP.NET 3.5 Routing framework without needing to configure the IIS server.
Until now I have done what most tutorials told me, added a reference to the routing assembly, configured stuff in the web.config, added this ...