soap

Is this thinking accurate on ESB vs. REST-styled interfaces?

To tie together various legacy applications, some mainframe-based, I'm trying to compare using an ESB like MQSeries, a WS-* approach, or something more RESTful. Is there much substance to the idea that writing the interface to REST, instead of MQ or even WS-*, may have a secondary benefit of also taking us closer to web-enabling portion...

Consuming Oracle Data with Silverlight

So I want to get some data on the server side using OracleClient. Something like OracleDataReader rdr = OracleDataAccess.ExecuteReader(Conn, sQry); What is the best way to deliver this data to Silverlight? I set up a web service I just don't know the best data structure to package the result set. The silverlight CLR can not use the Or...

Java SOAP Server that can be deployed in Tomcat, JBoss, Geronimo, etc. etc. etc.

I'm hoping to create a Java SOAP server which I can deploy in Tomcat, or in JBoss, or in Geronimo, or in XYZ, etc. etc. etc. Bottom line, it should have the least dependencies possible. I'm trying to avoid libraries outside of what's included in a standard java distro because of licensing/packaging/reusability issues. Can any provide...

How to use nuSOAP for messages with multiple namespaces

Hello, I'm trying to access a WebService using nuSOAP (because I'm bound to PHP4 here) that uses more than 1 namespace in a message. Is that possible? An example request message would look like this: <soapenv:Envelope ... xmlns:ns1="http://domain.tld/namespace1" xmlns:ns2="http://domain.tld/namespace2"&gt; <soapenv:Header/> <s...

BizTalk 2006 SOAP Adapter - Messaging only Web Service Call

In BizTalk 2006, I am trying to set up a messaging-only scenario whereby the recieved message (a string) is passed to a web service method that takes a single string parameter. In other words, the whole body of the BizTalk message should be passed as the parameter to the web service call. The service method looks like this: [WebMetho...

What methods can be used to secure web services?

I'm interested to know what methods people use to secure their webservices from unauthorized web service consumers. ...

Overcome Encoding Problems with PHP, SoapServer, UTF-8, and non English Characters?

I'm having problems getting PHP to play nicely with SoapServer + UTF-8. Anytime anyone sends a Soap Request with non english characters (i.e. funny quotes, accented characters, etc) the SoapServer throws an exception saying "Bad Request." I've tried decoding the request with utf8_decode and even HTML Special Characters encoded the text. ...

Adobe AIR and HNAP (SOAP)

I have been struggling with this for some time now scanning the net for examples or references for executing HNAP calls via an Adobe AIR application using Adobe Flex Builder. I know that making the HNAP calls implements SOAP technology and that AIR can execute SOAP calls. I have even been able to successfully compile and execute example ...

HTTP Monitor Software (Monitor Web Services)

I'd like to monitor HTTP traffic to/from my PC so I can watch web services interaction. (SOAP and RESTful services) There seems to be a lot of different software out there for this. What do you all recommend? ...

How to resolve WSDL2Java creating a static block larger than 64K?

We're currently working with a vendor-provided WSDL schema that is very large. The binding style is RPC. As far as I know, Axis 1.x is the only Java tool supporting RPC WSDL definitions. Please do correct me if I'm wrong about that. WSDL2Java generates a service-nameSkeleton.java file that has a static intialisation block 1.3Mb in size ...

Transfer files with versioning using SharePoint and SOAP

I'm writing a .Net C# application that will make SOAP calls to a configured SharePoint database, based on certain triggers from another SQL database. I have a problem where I need to transfer documents from a folder within a list to another folder in a different list. Each document will have version history enabled, which I am required ...

how to use web service on flex ?

i am going to use https://adwords.google.com/api/adwords/v13/AdService?wsdl . google adwords apI to my project . so how do i use that ? do u know any example plz refer me ...

Issue submitting XML from an iPhone to a .NET SOAP Web Service

My iPhone application needs to submit an object to an already existing .NET SOAP Web Service so it can be saved to a database server. I figured the easiest way to go about this would be building an XML representation of the object and passing it to the web service. However, this doesn’t seem to be working. If the XML is more than one lev...

ruby WSDL error

I'm banging my head against the wall on this error. After generating my classes out with wsdl2ruby, when I go to post a sale against the webservice I get the following error. SOAP::FaultError: org.xml.sax.SAXException: Invalid element in com.marquis.eomis.canteeninventoryandsales.resource.canteenSale.CanteenSaleContent - use...

Web service response is null, but SOAP message response is valid

I am writing a web service starting with writing the WSDL. I have been generating server-side skeleton code using wsimport and then writing my own implementing class. I'm running the web service on an Axis2 server. When using soapUI, the SOAP messages coming to and from the service look fine, but when using a web service client, I'm g...

Recommendations for Soap Webservice Testing Apps

I was looking for some recommendations for testing SOAP webservices. I want to be able to create requests from WSDL, see those requests, and inspect responses. I would also like it to work with WS* compliant services (such as when using WCF wsHttpBinding). Any suggestions? ...

SOAP on Subdomains

I am working with an application that is used by multiple clients. Each client has its own database, but multiple clients use the same php codebase. In essence, we use named virtual servers on apache to point the url to the right codebase on the server. When the browser hits the php code, the code checks a master database to see which...

Set attributes for parameters in SOAP request PHP

hey there I'm trying to use a webservice which only allows SOAP request as far as I know I must create a request that looks like this <?xml version="1.0" encoding="utf-8"?> <SessionCreateRQ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; <POS> <Source PseudoCityCode="SECRET_...

Web Services, ADO.NET Connection Pool, Timeout Error

If I have an .asmx Web Service that only exposes one call. One that takes a few params and inserts those values as a record in SQL Server 2005 table. What should that method look like to be as "kind" to the ADO.NET Connection Pool as possible? What should it look like if its going to be called maybe 10 times a second (spread out) over m...

Improving WCF performance

Could I know ways to improve performance of my .Net WCF service? Right now its pretty slow and sometimes it gets clogged & eventually stops responding. ...