web-services

Extracting template used in a blog

Hi, Windows Live Writer somehow extracts template from (at the very least) Blogger-based blogs. Google's Blogger API documentation does not mention a way to do this "cleanly". Is there an API or an easy way to extract the template used by a blog, for use in writing a WYSIWYG blog editor? I'm looking for a way to do this on Blogger, but...

Consuming ASMX Web Service With WCF

Hello, I have to write a WCF service that consumes a third party 'Web Service'. They provided WSDL and the URL so that I can post the transaction. Can some body please help me how to achieve this, with some code example. Thanks in advance BB ...

Should I use Pygments with a Scala App?

I am looking at building a Scala web app that will have lots of code snippets in many programming languages that I would like to hightlight. It looks like one of the best, most popular syntax highlighters is Pygments, a Python tool. I downloaded Jython and was able to load first it and then Pygments from within my Scala REPL. However, al...

How to send JSON object to asp.net web service and process the data there?

Hi, I am using the local database in web kit browsers and to get the data from the database I have the following code: function synchronise() { myDB.transaction( function (transaction) { transaction.executeSql("SELECT * FROM Patients;", [], synchroniseHandler, errorHandler); } ); With I am trying to do...

Exponse many class in one asmx Web Service

Hi, Its possible expose many class in single asmx in Web Service C#, this for generate one Proxy class, and consume proxy from client like: Proxy.UserService.User and Proxy.ImageService.GetImage I try this but dont Work. namespace ServiciosWeb { [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiPr...

secure json data transfer ?

I have bunch of screens (asp.net C#) capturing data and transferring it back to a web service using json. How can i encrypt content like passwords and decrypt it back in the C# code? ...

What is the best way to send XML data to webservices jaxws

What is the best way to send XML data to web services jax-ws? One of the way I could make out is to convert xml into String from client side and send it as a String to WebService. I don't think this is the best way / best practice . ...

http responses in relation with programming frameworks (java)

Hi, This question came up during working with web services(in java) but I guess could apply in all kind of web applications (http). If an HTTP client sends a POST to a server then, a 202 Accepted has the meaning (according to HTTP protocol) that the POST has been accepted and the request will be eventually processed. Under other conditi...

Deliver a Crystal report using Web Service (ASP.NET)

My end goal is to open up a new browser window and display an animated progress gif whilst loading a slow Crystal Report. Using traditional asp.net methods to achieve this always results in the gif not animating during a postback, unless I use update panels but that's when things start getting messy. I have read lots of articles describ...

Technology Platform for WebService in non programming company

The company I am working at is required to develop a web service API. Currently the company does not have in house software or web developers, we are primarily MySQL database developers. We would like suggestions on languages and frameworks that will allow rapid development of a web service that is basically acting as a proxy to MySQL s...

Communication between winform client and server's web service

Hi everyone, currently I'm an internee and about to join in a project in which I have to take responsible for implementing the server side part. The scenario: _There are many kiosks, each runs a winform application, this application read barcode from customer's card and then send the info to server. _The server has several web services,...

Signing soap header

I started studying web services between bank and a client and I run into a wall when it came to signing a SOAP. What I need should look something like this <soapenv:Envelope xmlns:cor="http://bxd.fi/CorporateFileService" xmlns:mod="http://model.bxd.fi" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt; <soapenv:Header> <w...

Java client for a Https web service fails, althoght, the Web client works!

Hi folks, I have a Web service created using JDeveloper and deployed as HTTPS web service. When I tried to invoke it using some Web client that is generated by JDev, it works fine. But When I write a Java client to call that service, it fails! saying that: WARNING: Unable to connect to URL: https://xxxxxxxxxxxxxxxxx due to java.securi...

Use cases for web application API?

Nowadays a lot of web applications are providing API for other applications to use. I am new to the usage of API so I want to understand the use cases for it. Lets take Basecamp as an example. What are the use cases for using their API in my web application? For inserting current data in my web application into a newly created Basec...

Code within nUnit works fine but within Windows Service gets HTTP status 403: Forbidden when calling a remote Web Service

Context I'm working a c# module which is responsible to integrate our business with an external entity as part of our SOA system. The external entity provides web services. They're a throughly tested as it is a federal government product. The module has been developed using test-driven approach, we use nUnit and everything was fine durin...

Consuming ASMX WebService from WCF

Hello, I am trying to consume an ASMX web service from my WCF service. Here is what I did and i get the following error. "There was no endpoint listening at "http://... " that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. Please help me. Where I...

How to pass parameter back from asp.net web service if an insert to a database was successfull? ASP.NET/jQuery/AJAX/JASON

I have a web form and I use jQuery/AJAX/JASON to send objects to a web service using $.ajax({ type: "POST", url: "SynchroniseCustomers.asmx/synchroniseCustomers", data: JSON.stringify(customerObj), contentType: "application/json; charset=utf-8", dataType: "json", error: function (xhr, status) {}, success: function (msg) {} }); From t...

Java Application server witch better?

I need Implement SOAP Web service. And too many client (over 4000 user online). Service function is a DB access, and other web service access... Witch application server better. Glashfish, Weblogic, Oracle Application Server ...? ...

Get URL of WCF call

Dear All! I need to find out the subdomain from which a SOAP-based client calls a WCF-method. While that is quite easy if your're on ASP.NET by using HttpContext.Current, I could not find an equivalent for WCF. The reason why I need this value is, because I want to host a multi-tenant application which consists of a Web-Frontend (like ...

Sharepoint Web Services Item Data (access to "Created By" Column)

I am currently working on an application that displays the data of a Sharepoint calendar via Sharepoint Webservices. Therefore, I am using the List Service of the calendar. I manage to get all important information except user data, such as Created By or Modified By. The XML which is returned contains the following: <rs:data ItemCount=...