I'm relatively new to web services. I dont know how this web service will work.
I didn't find any useful simple example of a web service by googling.
Can any one please give me some tips or links to creating a web service using java.
...
Hi.
This is my scenario: I need to copy files to a sharepoint document library using its web services and set metadata on them. That's all possible with CopyIntoItems (from Copy webservice) except for Lookup fields. CopyIntoItems ignores them, so i need another way to set data on those fields.
I've tried to create a list item with the ...
Hi,
When I try to deploy my web service application in WL10 i get the following error.
java.lang.IllegalArgumentException: Unable to access unsupported property javax.xml.stream.supportDTD
I tried JBoss 4.0 and the same worked fine. Pls help.
Here is the trace of the complete exception thrown.
<[STANDBY] ExecuteThread: '3' for ...
I have old school web service and it is configured to impersonate the caller. Works with no problem. Now I am thinking about adding another more higher level ASP.NET (non-wcf) web service which would be calling the original web service.
The question is - will the client identity flow across two hops as in client (1)-> new web service (2...
I've run into an interesting problem that I never encountered with XP or IIS 6.
Basically, I can't get a native Delphi (WebBroker) Web service server to work with a native Web service client in Windows 7 64-bit.
Here's the most basic breakdown. If I create a new Web service application in Delphi 2010 (or any version, back to Delphi 7),...
I'm trying to log my messages which are sent using a Metro stack into console.
Could not find any way.
...
I'd like to build an iOS app which lets you log in to a web service.
After that, the app would (when the user chooses) send the login name/pass, together with the requested variable(s), over https. For instance after requesting 'news-update', it would receive the requested info in XML format... something like:
<news-update>
<title>K...
I'm working on a webapplication which runs central at a company. This webapplication needs to make a call to a service which is part of a second webapplication.
In the central webapplication i have this piece of code;
var clientUri = "http://website.localhost/Services/Info.svc/account";
var uri = new Uri(clientUri);
var networkCredenti...
Can anyone point me in the direction of resources that explain the difference between the two?
They appear to do the same thing but are implemented in a different way.. e.g. web service application compiles to dll and global.asax.vb compiles into the app, rather than being treated in the same way as a normal web service.
Edit: web-serv...
I am trying to call a web service from PHP code using SoapClient.
$service = new SoapClient($wsdl);
$service->myFunction('something', 'anotherthing', 'onemore');
If I turn on trace and get the last request, I can see that the first parameter is always missing from the Soap message, i.e. param0 is never there. It's the same in function...
Here's the issue:
The database is highly normalized, and one particular query relies on the multiple relationships in the database. The query is designed to join all the tables, construct the entire object, and then return a list of those objects.
In other words this particular query does a lot of work.
Now, the query does only return...
Hi All,
I have a IIS hosted service http://localhost/someProject/services/myservice.svc . Is it possible to somehow make say http://locahost:9705 point to it? How do I set this up? It seems to be pretty straightforward with a Windows Service hosted WCF service, but I cannot figure how to accomplish this when using .svc files and IIS. In ...
Hello,
I am developing an application that involves some sensitive user information. I retrieve this information via a private web API. I am trying to determine the best way to get this data into my app. Right now I'm exploring creating a content provider that can do so; my hesitation is in making it secure. I want this data to be usabl...
I am looking for a way to have the generated proxy class for a Web Reference (not WCF) implement a common interface in order to easily switch between web service access and "direct" access to our business layer in the client application, something like:
public IBusiness GetBusinessObject()
{
if (_mode = "remote")
return new Busine...
Hi,
I need to implemented something like a filter or listener, that intercepts HTTP requests and retrieves the HTTP headers for various purposes.
I use Java, Jboss application server and web services. I want this filtering system to be performed prior to the Web Services call - was thinking about aspects but they do not hold the HTTP r...
I have a web service that needs to run at 12:00 am ever night. Instead of creating a windows service is there an external service paid or free that I can use to issue a GET to a URL I specify at a specific time every day?
...
I am building a Silverlight app. As I have classes to be consumed by Silverlight and .NET modules, I have created a Silverlight project with all the classes in it and then, a .NET project linking('Add Link') to the classes in Silverlight project. This way, I have one class file compiled separately as Silverlight and .NET assemblies. I wa...
I have the following setup
WinXP SP2, IIS 5.1
I have an
Asp.net website(a) calling -> Asp.net Webservice(b) calling a function Creating a COM object in an already running EXE server(c).
This COM server works fine with local clients.
The CreateObject fails even when run on a machine when COM server is registered as a user(adminuser) w...
I have the following code:
[WebMethod]
[SoapHeader("_webServiceAuth")]
public User GetUser(string username)
{
try
{
this._validationMethods.Validate(_webServiceAuth);
User user = new User(username);
return user;
}
catch (Exception ex)
{
...
How do I build a XML-RPC web service in C#?
...