web-services

Testing Stored Procedure performance

I did some operations on my tables to get faster SP operations against to time-out problem on a web service method which uses that problematic SP. I was trying to compare SP perfomance but i could not get on well on that sie. See 1 please. Clearly, I want to see if I get time-out problem after all SP modifications on development scope....

A good WCF client design pattern

My application communicates with a large number of wcf services i.e. my application has several assemblies which each consume a different wcf service. I am looking for a good wcf client design pattern so that I can keep my code concise, reusuable and elegant. The wcf services which I consume are all the same - the basically used to che...

Wap enabled SMS Gateway - how to use

What do webhosting provider mean when they say you have "Wap Enabled and Fully Integrated SMS Gateway"? What are the advantages of that / How can I use it? ...

Error while accessing the Informatica web service methods

Hi, I am facing the error "This represents an internal error at the Informatica PowerCenter Web Services Hub. error code is : WSH_95000" while access the informatica web services methods.I am able to login and able to get the sessionid provided by the login response. I am passing the same session id for every SOAP call. But able to initi...

Saving a file in client machine by calling a web service - ASP.Net & C#.Net

I'm facing a great problem here and i need some clarifications Here is my explanation I've a machine Machine1 I've hosted a web service WS1 in Machine1 I've a client application in Machine2 I call the web service WS1 from machine2 and the web service a file in the path sent by the application Okie works great! Now, I host another...

Web Service API that supports searching by regular expression

As far as I know, Google Code Search and Google Analytics can support searching by regular expression, and both of them offer API that allows developer to call the service by HTTP. Besides these two, any more API can do so? ...

Ajax Auto Complete in ASP.Net MVC project - How to display a an object's name but actually save it's ID?

I have implemented the Ajax Autocomplete feature in my application using a web service file that querys my database and it works great. One problem I am having is allowing the user to see the item's name, as that's what they are typing in the textbox, but when they select it, it saves the item's ID number instead of the actual name. I ...

How do I return a standard name=value while using c# web service

I am creating a few basic web services using c#, and I am trying to have the web service return back just a normal name=value&name=value without any kind of xml or json format. The legacy system hitting these services is fairly old and doesn't support xml or json. Is doing this possible? ...

XmlPullParserException when androidHttpTransport.call(SOAP_ACTION, envelope); is called

Hi! Basically I am using kSoap2 classes for Android. The client app is consuming a web service. If required I can post the code. I surfed around to figure this out. I get following error message expected: START_TAG{http://schemas.xmlsoap.org/envelope/}Envelope(posiiton:START_TAG@1:6 in java.io.InputStreamReader@437b40f0) when androidHt...

List of web apps and services utilized by startups

Startups often prefer to leverage 3rd party web services for features that are not central to the service they are providing. I would like to assemble a categorized list of these services and am hoping the SO community can help. For instance: Get Satisfaction User Voice MailChimp Campaign Monitor GitHub Codaset It would be nice to c...

Connect to the Magento API using C#

Im trying to connect to the Magento 1.4.0.1 API, but until now I have no luck. I have added a Service Reference named MagentoAPI and pointed it to http://mydomain.com/api/v2_soap?wsdl=1 (I know the =1 is not intended, but it dont work without) This works fine, I get a list of all available methods, but when I try to use any of them it ...

Webapp requiring additional jars (eg webservices-rt.jar) works in jetty 6 but not 7

I have a really simple web service which works fine in jetty 6: java -Djetty.class.path=/path/to/webservices-rt.jar -jar start.jar but the same commandline for jetty 7 fails with a ClassNotFoundException for WSServlet. I also tried adding the jar to lib/ext but that didn't work either. I've tried an example "hello world" app (also re...

How to make C# web service produce soapenv namespace instead of soap?

Is there a way to make a C#/.NET web service which normally produces XML like this <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt; <soap:Header> <DHeader xmlns="http://www.abc.com" /> </soap:Header> <soap:Body...

Flex Webservice in swf question

I'm trying to use for getting infomation from an WSDL file online. I have no problem running and testing in my FLEX 3 builder. However, After I export release build into SWF file. The program doesn't work even running local. IE/firefox said "transferring data from http://www.webservicex.net" on the status bar and doesn't response. Thi...

CruiseControl cannot get web interface to work

On a fresh installation of CruiseControl, every single time I start CruiseControl, I get the following two exceptions thrown: ontrollerAgent- Exception starting httpAdaptor java.net.BindException: Address already in use: JVM_Bind at java.net.PlainSocketImpl.socketBind(Native Method) ontrollerAgent- Exception starting connecto...

How to read a DataSet from a WebService using AS2?

How do I read a DataSet returned by a webservice in AS2? function showTopItem(obj:XML) { trace(obj); } gives me: [object Object] I expect to read this: <?xml version="1.0" encoding="utf-8"?> <DataSet xmlns="http://tempuri.org/"&gt; <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="...

WebService logging

Hi, I would like to log every request that arrive to my webservice, end to log every response. I mean, the incoming and outgoing text stream. So far I've been able to log the SOAP requests and responses, but the ones which sends a browser, I coundn't. I tried to implement the IHttpModule interface, and handle the HttpApplication.BeginRe...

Call web service over HTTP on HTTPS page

Hello I am having problems calling a web service using AJAX via HTTP when it's on an HTTPS page. Is this a cross-domain/protocol problem? Do I need to do the AJAX call in the same protocol as the page? Just wondering if it's the same problem as trying to do an HTTPS AJAX call when on an HTTP page, I suspect it is. Any advice appreci...

Using MTOM on Mono

Looking to port an ASMX web service application to run on Mono under Apache. The web services use WSE 3.0 to add MTOM capability for messages that contain binary. From my research so far, I understand this to be the current state of web services on Mono: ASMX is fully implemented (but does not support MTOM) WSE (which I am using for ...

How do I change a web reference in a production .NET website?

Our web reference does not seem to be defined in web.config of the website that consumes it. I found that there is a configuration file called "Reference.map" in the "Web References" folder that looks editable, but when I edit them nothing happens. I even renamed the WSDL file in the folder to see if it would get a new one. It did not. ...