web-services

How to show a wmessage in webservice

Hai Feriends I am using this coding for validating multiple email id on online using webservice this working fine : protected void ValidateEmail_Click(object sender, EventArgs e) { ValidateEmail.ValidateEmailSoapClient EmailClient = new ValidateEmail.ValidateEmailSoapClient("ValidateEmailSoap12"); // bool bval = System.Convert.To...

Restrict access to MySQL DB through localhost, not through IP ?

I'm using MySQL and a web-service connect to the database to read some values. The web-service and the database are on the same server. I want to deny access to the database through the public static IP of the server and the port of MySQL. That means only allow access to the database through localhost, so that only the web-service can ...

Calling a WCF Service from SQL CLR Stored Procedure

I have created a SQL CLR Stored Procedure which will call a WCF Service. I have managed to get all the correct DLL's loaded into SQL Server to get this to work however I now have following error message: System.Configuration.ConfigurationErrorsException: An error occurred creating the configuration section handler for system.serviceMode...

Will decoupling be beneficial in a redesign of a legacy application?

I am working on a company running several internet shops. We are about completely rewrite the whole code: site content and products management, order processing, partner relations, accounting, customer base and other. Currently we have a system, where all the stuff (all internal management sites, business-logic and internet store web sit...

send file via webservice

hi there how can i send a file via web service in my site same as gmail attachments in c# and asp.net ...

ASP.NET: what's the difference between simple and complex type web services?

can someone give me a high level overview of what the differences are? why would you choose to use one over the other? ...

ASP.NET: web services design methodologies. top-down and bottom-up. what's the difference?

can someone give me a high level overview of these two methodologies? what's the difference between these two and why would you choose one over the other? i would just like a general explanation in your own words as i'm just starting with web services. thanks. ...

What's a RESTful way of presenting a form?

I understand most of how a RESTful site design should function, but in implementing a blog cannot decide the best way to present the form to insert a new blog post. Would example.com/posts/create be reasonable? This feels like the "create" is not restful, like it's putting information into the URI that should be simply represented by PUT...

How to add items to a wiki page library in Sharepoint via Web Services?

Well, the title says it all, There is not information around about this, the only link I found related to this problem, is: http://sites.google.com/site/sharepointwikiuploader/ and it doesn't really helps. Any clue? Thanks in advance. ...

how to create a copy of a table in HBase on same cluster? or, how to serve requests using original state while operating on a working state

Is there an efficient way to create a copy of table structure+data in HBase, in the same cluster? Obviously the destination table would have a different name. What I've found so far: The CopyTable job, which has been described as a tool for copying data between different HBase clusters. I think it would support intra-cluster operati...

Generate ruby classes from json document

Consuming a ruby json API, I want to save me some work and generate ruby objects off the bat. Any way to do this? so you could transform this: {"menu": { "id": "file", "value": "File", "popup": { "menuitem": [ {"value": "New", "onclick": "CreateNewDoc()"}, {"value": "Open", "onclick": "OpenDoc()"}, {"value...

Passing string[] parameter to java webservice through ksoap

Hi everybody i am doing project on android based application. i am using my andriod application as client and on the other side using java based webservice My question is how to pass string[] parameter to java webservice using ksoap ...? help me please... ...

SOAP and Remote Services with Open Source platforms, Recommendations

I'm a .Net developer by trade, but have done open source development in the past for fun. I need recommendations on which open source languages work particularly better (or even better yet, stable) than others. At home I'm developing sites on LAMP servers and prefer PHP and Python. Are either of those well suited for remote data/method...

CXF server-side logging to a table

In CXF, you can enable logging using this: <cxf:bus> <cxf:features> <cxf:logging/> </cxf:features> </cxf:bus> Source: http://cxf.apache.org/docs/configuration.html Everything seems to go to files or console and can be configured using Log4j as well it seems. My question is, how do you enable logging on server side so th...

Making A Webservice Secure

Hi All, Im wrapping up my Iphone app. Im just worried about security at our web server level. The data is being pulled over to the iphone app via web services. What security measures can i put on the web services so that I am not vulnerable? Thanks ...

Looking For: A “demo” web web-based application that uses web services

Greetings – I am experimenting with various software techniques to capture and analyze the messages being exchanged between web services, web services that together would form a cloud hosted web application. One of the initial steps is locating a “demo” application to actually experiment against, one that actually consists of and uses a ...

Use JavaScript to call a SOAP web service that requires authentication

Can I call a SOAP web service from JavaScript? The SOAP web service in question is a member of the Exchange Web Services platform. I have found the Exchange Web Services OSX Widget but that uses Curl to do the actual SOAP call. So I am wondering if there is a limitation in the JavaScript abilities to interface with SOAP using authenticat...

where's the ASP.Net WebService in Visual Studio 2010?

I am trying to create my first webservice. I've been googling for a tutorial or examples and most of what I find is from previous versions of Visual Studio and say to create a new ASP.Net Webservice...but that doesn't exist in 2010! What I need to do is have the service receive 2 strings, an agency and a man number. Then run a query t...

How can I configure SOAP XML namespaces in web service client request?

I am having trouble calling a 3rd party web-service. I have not received a SOAP fault, but am not getting a valid resultset. A colleague of mine has written a client in RPG on the OS400 and it returns a valid resultset. When comparing the RAW request in Fiddler2 for both requests, the only glaring difference I noticed was that my c# c...

C# - How to pass an object to a web service?

I already searched a lot in Google. I created a EntityClass on client side, and then I added the library reference of this class on Web Service side. But when I want to call the method, it shows this error: Error 2 Argument 1: cannot convert from 'Services_Library.UserService.UserServiceSoapClient' to 'Services_Library.UserSe...