web-services

Web service under JBoss using Hibernate: first steps

What's the difference between building a stand-alone application based on Hibernate and a web service (JBoss) based on Hibernate? I'm refering at the creation of the SessionFactory, Configuration and Sessions. What special concerns should I take care when building a web service with Hibernate persistence? I would really appreciate a bas...

Single Sign On for WebServices, WCS, WFS, WMS (Geoserver), etc.

[ # question edited for clarification # ] I'm trying to implement a Single Sign On (SSO) for a web application. Maybe you can help me find a proper solution, give me a direction or tell me, that solutions already exist. The scenario: A GeoExt (ExtJS for geodata/map based apps) webapp (JavaScript only) will be deployed on a customer's w...

How to cast an image received from a webservice in Binary64 format to actual image?

I am developing a Web application in Java. In that application, I have created webservices in Java. In that webservice, I have created one webmethod which returns the image list in base64 format. The return type of the method is Vector. In webservice tester I can see the SOAP response as xsi:type="xs:base64Binary". Then I called this web...

what authentication should I use for my web service in this case?

Hi I am going to do a web service. Now our customers are going to be able to call the method from their interface. I been thinking what I should do for authentication, I been reading and can not really decide. I want to pass username and password to the method. Do you got any advice? ...

How do you Screen Scrape?

When there is no webservice API available, your only option might be to Screen Scrape, but how do you do it in c#? how do you think of doing it? ...

What is causing this 403 error with my webservice?

I'm wondering whether I'm recieving the 403 errors because there are too many attempted connections being made to the webservice? If this is the case how do I get around it. I've tried creating a new instance of InternalWebService each time and disposing of the old one but I get the same problem. I've disabled the firewall and the webser...

Hosting .NET Web Service on Web Logic

Is there any way we can host .NET (.asmx) web service on web logic? Thanks Paresh ...

Flex and DjangoSoap - Flex not sending strings to the soap methods correctly

Hi I am using Flash Builder 4 to connect to a django web service that is using the djangosoap code. The django web service appears to be working correctly when tested with a soap client. However the flash builder 4 generated soap classes don't seem to send requests correctly. I have a say_hello(name) method that takes one string parame...

Flex webservice request

I am having a small problem with a soap request in flex. If i use a third part tool like .NET WebService studio the request is: <?xml version="1.0" encoding="utf-16"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchem...

Webservice returning 403 error

I'm wondering whether I'm receiving the 403 errors because there are too many attempted connections being made to the webservice. If this is the case how do I get around it? I've tried creating a new instance of InternalWebService each time and disposing of the old one but I get the same problem. I've disabled the firewall and the webser...

Web service connection to active directory issue

I'm developing a VB.Net web service application with a purpose of authenticating users credentials from Active Directory. I'm using VirtualBox and installed Windows 2003 standard server with AD role. I'm having problems connecting to the server. Any ideas? ...

HttpServletRequest.getServerName() occasionally returning null in concurrent use?

Under JBoss 4.0.1SP1, I have a servlet that makes multiple, concurrent calls to web services that are running under the same instance. I'm using request.getServerName() (on HttpServletRequest) to construct the endpoint URL. This normally works fine, but every once in a while returns null. I hadn't seen this before running the web servic...

SOAP Messages on iPhone

Hello everyone !! I have to use several SOAP messages to get data from a web service. I got some examples how to do that but they all have the XML (http://icodeblog.com/2008/11/03/iphone-programming-tutorial-intro-to-soap-web-services/) // ---- LOGIN ----- NSString *soapMessage = [NSString stringWithFormat: ...

How to listen for events on postbin and get the values out of it?

I am testing out webhooks and I created a postbin test url and I am trying to create a webservice that would listen to the postbin url and be able to get the values out of the post, but I am not sure how to do this: My sample postbin url could be http://www.postbin.org/abcdef ...

Web service occasionally slows down significantly

My company is running into a problem with a web service that is written in C#/ASP.Net. The service receives an identity key for data in SQL Server and a path to generate and save a PDF report for this data. In most cases, this web service returns results to the calling web pages very quickly, usually within a few seconds max. Howe...

jboss web services to tranfer files

I dont have any experience for web services. please give me some suggestion about the task below. the task is: users will send a txt file (size should less than 20K ) from a .NET application, I need to write a web services which runs by jboss 5.x to read this file and edit this file and send the file back to .NET UI to display the edited...

how to convert byte array to image in java?

I am developing a Web application in Java. In that application, I have created webservices in Java. In that webservice, I have created one webmethod which returns the image list in base64 format. The return type of the method is Vector. In webservice tester I can see the SOAP response as xsi:type="xs:base64Binary". Then I called this web...

How different is mashup from screenscraping and consuming webservices

From what I understand, Mashup is aggregating data from separate sources and providing a single view. How different is mashup when compared to screenscraping or using webservices to get data from external sources? ...

Problem in iterating sharepoint folder content

Hi, I am trying to access Folder from Document Library using web services in C#. I am using SiteData's EnumerateFolder() method to get sub folders and files. But the method gives me only 3 properties for each entry. IsFolder Url Last modified date So how can we get 'Modified By' field value. Or there is another solution ...

.NET Web Service hydrate custom class

I am consuming an external C# Web Service method which returns a simple calculation result object like this: [Serializable] public class CalculationResult { public string Name { get; set; } public string Unit { get; set; } public decimal? Value { get; set; } } When I add a Web Reference to this service in my ASP .NET proje...