web-services

how to Call Webservice inside PL/SQL with serializable Class in Prameter?

how can i call a web-service inside a Pl/SQL with a serialize class in the parameters. knowing that i need to get data from pl/sql and pass it to another web-service which will return the result as XML. so shall i take the data from PL/SQL as data-table or can the PL/SQL understand such complex Type as the class. if either of them how...

Generate java classes for http service

We are trying to connect to: http://resellertest.enom.com/interface.asp?command=nameofcommand&amp;uid=yourloginid&amp;pw=yourpassword&amp;paramname=paramvalue&amp;nextparamname=nextparamvalue Where we need to append parameters to http url and the response from the site is xml. Sample xml response: <?xml version="1.0" ?> <interface-r...

Do I need (Spring) MVC if I have Javascript/CXF?

I am developing a Java web services application that is (mostly) to be used by other SOA clients. Currently I am planning on using CXF to publish my various web services & methods using SOAP/XML. I am now being asked to investigate a thin client web-application for this tool. I have been looking into Javascript libraries such as ExtJS ...

Create AdSense ad units programmatically

We're running a creative network that's providing free hosting to various projects. In exchange for that we ask those projects to show our Google AdSense ads on their site. To not make it too bad, we'd want the users to be able to choose colours and size for the ads to fit their site. We've been using the old AdSense embedding code whic...

Create a single use link

I'm writing a database front end for a website. Next to the records I want to include a link likes this: Record 1 - [Add][1] [Edit][2] [Delete][3] But I want to protect these links from being used more than once. My thinking is to pass a hash value then store a list of valid HASH values in a table somewhere and only process request...

Soaplib Client Server Example causing an error

Error I am getting: Traceback (most recent call last): File "client.py", line 11, in print client.say_hello("Dave",5) AttributeError: 'ServiceClient' object has no attribute 'say_hello' Server Code: #!/usr/bin/env python from soaplib.wsgi_soap import SimpleWSGISoapApp from soaplib.service import soapmethod from soaplib.seriali...

Connecting to MSSQL through Web service. Python. Suds. SOAP.

I'm connecting to web service using suds. from suds.client import Client client=Client(url) #then i'm using web servise methods to get table. It is very big table. big_table=client.service.GetVeryBigTable() #nd trying read every row for row in big_table: print row.Id + row.Nmae + row.Description + row.Item1 +...... the ...

How can I see incoming Requests in IIS7?

I have a created web service that takes 2 complex types as parameters. I can use the auto-generated WSDL to create a new application that calls my web service and it works perfectly. However, a 3rd party consumer is having trouble calling my web service. I see their incoming request in the IIS7 log file and a 500 error is being return...

J2ME Web Service Providers

Hi, I have read that it is possible to send HTTP/SOAP messages to web service using kSOAP. But is it possible in a J2ME app to receive HTTP/SOAP messages? I.e. the mobile app acting like a web service provider? How is it done? Thanks ...

Problem with NetBeans Web Service Client when xercesImpl.jar is on classpath

I am unable to create a Web Service Client in my NetBeans Web Application when xercesImpl.jar is included as a library. Using NetBeans 6.9 and GlassFish 3.0.1: 1.) Create new Web Application 2.) Create a new Web Service 3.) Add a new operation to the created web service (just let it return null - the implementation isn't important) 4.)...

Http 500 error when invoking a helloworld method in webservice.

We suddenly started receiving this error when invoking the helloworld method in our webservice project: This is the error: The website cannot display the page HTTP 500 Most likely causes: The website is under maintenance. The website has a programming error. What you can try: Refresh the page. Go ba...

XML document for UPS Freight Shipping

I was wondering if anyone knew of where I could find an example XML document so that I could get get a FREIGHT LTL shipping quote from the UPS API. My XML mojo is seriously deficient, and all UPS has provided me is an XSD document. My client is really hoping that I can get this done sooner rather than later, and I need to send this as ...

Best way to create a Web Service ON Android

Hi! I want to implement a Web Service on Android.. I want to use my device as server. After doing some research on the internet, I found several options: SerDroid (small web server for the Android platform) i-Jetty (open-source web container to run on the Android mobile device platform) KWS (lightweight and fast web server especially ...

getting updated receipent and email body information from MFMailComposeViewController class

Hi friends, Is it possible to get updated receipent and email body information from MFMailComposeViewController in iphone sdk manually. And manually sending that data in json web service to my own mail box. Regards, sathish ...

adobe air 2, sharepoint ntlm webservice authentication

Hi, Is it possible to connect to a Sharepoint 2007 web service, using Adobe Air 2.0 / Flex 4? Does anyone know if this is possible, ideally with some examples? Thank you, Bob [EDIT] Connect using NTLM authentication on the webservice ...

Call webservice when silverlight exit

How i can to call webservice when silverlight exit? I need send update on server when silverlight exit. ...

How to pass generic KeyValuePair<Tkey,TValue> to a WebMethod?

[WebMethod] public void Test(KeyValuePair<string,string> details) { } I have defined the above web-method. The KeyValuePair is defined in http://schemas.datacontract.org/2004/07/System.Collections.Generic how can i add it to my wsdl auto-generated file? i have to define this type because otherwise i get an empty definition...

cakephp lookup value if not in database

I'm stll relatively new to cakephp (1.3) and struggling with where to put the code to do the following. I want to display fields from a database (as usual) but, if the value for one of the fields is null, I want to look up the value using a web service and, if the request is successful, write the returned value to the database before re...

does anyone have a C# solution to retrieve data from the Sharepoint List Data Retrieval Service

i am trying to download data from a sharepoint list from a C# application. I see there is a webservice to connect to here: http://&lt;server-url&gt;/_vti_bin/dspsts.asmx which is the List Data Retrieval Service. But i can't find any example code on basics like: how do i specify the list and page i want to download from basic logg...

How do I deploy code with WSE3.0 dependencies to Windows Server 2008?

One of our ASP.Net projects has some dependencies on Microsoft WSE 3.0 However, we're migrating the project to Windows Server 2008, which does not support WS E3.0. So I need to refactor the code to remove the dependency to WSE 3.0 but still maintain its functionalit. The code is simply adding a security token to the web context and then...