Hello,
First of all i success to programming a client for an Axis 1.2 web service, but for Axis2 i don't know how i can do, and the tutorial in Apache don't really help me.
Here my code :
import java.net.URL;
import javax.xml.namespace.QName;
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
public class E...
I've reproduced this in a simple project - details below. It's a WCF service in ASP.NET compatibility mode. What I'm seeing is that when run on the dev machine (Win7), a HTTP session id is available inside the service operation (HttpContext.Current.Session is non-null). But when deployed to the server (Win2k8R2), I get "No session". On b...
Also, can you SEND any header back? (return headers) when you run a web server?
Or, are headers limited?
...
I am in the process of designing a Windows Service, Where i have App.config. When the service is running i am not able to change the config values. But those values are not getting reflected. when it reades next time.
Is it manadatory to restart service eveyr time we change config values?
Do you have any suggestion how we can do this...
Hello, I wanted to know if python had any service like Java's JNDI.
More specifically, I want a service where providers can register themselves and then consumers can ask fro where certain provider end-points are.
For example, assume that I want to implement a mailbox for all my friends. Each of them have their own end-point, so friend...
Hi
I want to create Restful service which can accept binary data.
I've implemented javax.xml.ws.Provider interface, but i can't get content of request. If I use javax.xml.ws.Dispatch then its send only XML data, but I need transfer binary data.
Please give some solution, but I don't prefer to use JAX-RS or Restlets.
Thanks.
...
I have the following question:
I start my activity and i call bindService in order to start a service which in background downloads data from an API.
When it finish, it calls stopSelf().
But if i want to call again bindService in my Activity in order to download other data, nothing happens.
Any idea?
...
I have an application written in a combination of ASP/VB6/VBScript and ASP.NET/C# that consists of a website part, SOAP-like webservice part and a queue processing part processing incoming files in a hotfolder.
We are used to running under load balancers (Microsoft or other make). Often we need to communicate between the different load ...
I have two apps, one runs in namespace com.gtosoft.voyager and the other is com.gtosoft.dash. From com.gtosoft.dash I would like to start up the service which is defined in com.gtosoft.voyager...
I think I need an intent, but what arg(s) would I pass to the intent before kicking it off with startService()?
If they were in the same pac...
Hi
im trying to use Remote Service btween two simple application, But
its not easy to me.
So any advice you have will help me.
here`s my case.
I made one app which is playing Music in service,
There are two components.
one is Activity controlling service by using three buttons,
play,pause, stop.
and it is working fine.
and a...
I'm working on a c# service application and i have this problem where out of no where and for no obvious reason, the memory for the process will climb from 150mb to almost 2gb in about 5 seconds and then back to 150mb. But nothing in our system should be using any where near that amount of memory (so its probably a bug somewhere). It mig...
hi,
i have used WCF service to transfer large files in chunks to the server
for that i have reference this article http://kjellsj.blogspot.com/2007/02/wcf-streaming-upload-files-over-http.html
i have configured my application on IIS on my machine. its work fine here. it allows upto 64mb file upload
but when we have published the site. i...
Hi,
Any ideas on gracefully stopping a windows service with mutli-threaded processing on a timer thread? Is it possible to add some infinite loop logic in the OnStop method to postpone the service shutting down.
...
hi there!
i ran into a problem with remote services. after i started and bound my service, i want/need to access it's functionality. this works just fine if i work with buttons and onclick-controllers just as in http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/RemoteServiceBinding.html
but actual...
hey everybody,
i'm devlopping an application for android,
i need to make a session between client(cell phone) and e web server (apache)
and keep alive this session to receive notification from the server
for this i may implement socket also make a listener for this socket to notify the client if a file is ready to download, after recei...
Hi;
I am testing out RIA services. I put together a RIA Services library and built a custom DomainService (i.e. not an Entity Framework Domain Service). I am accessing the library from a silverlight app and all is working as expected. I can call the RIA service functions and get the results. I have an issue with Pagination. I cannot fin...
Hi there,
I am trying to create a service following the example documented in the link below:
http://msdn.microsoft.com/en-us/library/bb540475(v=VS.85).aspx
What I am interested in is to be able to catch user "lock" and "unlock" workstation events.
Using the code on from the example provided, I modified the following:
Line 15:
Origi...
I'm running a web application under IIS that we draw graphs with that are sent to the clients. We were previously running under iis6, while migrating to 2008 ( iis7 ) we have encountered some very weird issues with the graphing. I stumbled across the msdn docs for GDI+ stating that "GDI+ functions and classes are not supported for use ...
Hi,
I am new to linux and writing a service in C++ which spawns multiple threads and I am starting the service by calling it from init.d, but how should I send the terminate signal to my application from the script , so that my service terminates all the threads and exits.
And also where can I find the source code for any linux servic...
I have a classic Java SOA application, with a web UI module, web services module, a service module (Java API), a domain module and a persistence module. In a sense, each of these modules has their own public API.
My understanding of Spring Security is that I can use web filters to handle the security of the web gui and web services,...