1
vote
1answer
12 views
Entity Framework and Object Context lifetime in ASP.NET MVC
Hi there
I'm using Entity Framework in my project, and I have the problem that, once I pass my entities to a View (keep in mind that these entities have lazy-initialized objects a …
1
vote
5answers
45 views
where to put the validate logic? In Service or Repository?
I have some logic like this, before save the stock into the db, i will check whether there is stock has the same stock code in the database. My question is where should I put the l …
1
vote
1answer
19 views
Windows Service setup project - run service as administrator
Hi,
I've got a setup project for a Windows Service (.net 3.5, visual studio 2008).
The Windows Service needs to be run under the Administrator account, does anyone know how I can …
1
vote
4answers
41 views
PDF conversion service
I need to develop a service able to convert MS Office and Open Office documents to PDF. And the PDF`s also need to be commentable when opened in ADOBE Reader.
I have used a piece …
1
vote
3answers
14 views
WCF Service Client accessing internal members
Hello there,
I have a WCF Service Library (implemented using NH)
with one of the class say Test, defined as
[DataContract]
public class Test
with two constructors defined as …
0
votes
2answers
42 views
Android - Are services shared among processes?
I have an android library which is distributed as a jar file for inclusion in 3rd party applications.
Within the jar file is an Android Service.
The service is exposed through a …
0
votes
2answers
19 views
Calling WCF Service - Service Instantiation
Hello there,
I have added reference to WCF Service in my client asp.net website.
Right now, I am just instantiating WCF Service at every service method call as:
TemplateServiceC …
0
votes
3answers
26 views
WCF - EndpointNotFoundException, There was no endpoint listening
Hello there,
My WCF Service is hosted under Windows Service and in case it is not running when client makes a call to its methods, client gets the EndpointNotFoundException with t …
0
votes
2answers
30 views
WCF - The remote server returned an unexpected response: (400) Bad Request.
Hello there,
I get no error when calling my WCF service methods except in one.
This particular method called SaveTemplate() takes an input of byte[].
I am testing this method wi …
0
votes
0answers
28 views
Stopping an unstoppable service [closed]
I have antivirus service (Kaspersky) that occasionally becomes unresponsive to the normal stop/stop gui interface provided by said vendor. I would like to find a way to kill the se …
0
votes
1answer
64 views
Android - using background service
I have a mix-case IDL service that I'm using in 2 ways:
The service will spawn a thread and make a network call to grab some XML content on Activity's behalf. The content is retu …
0
votes
3answers
33 views
Multiple Services Hosted under one Windows Service
Hello there,
I have two Services called TemplateService, TemplateReportService (both defined in one WCF Service Library) to be exposed to the client application.
How can I host t …
0
votes
1answer
18 views
How do you run Jboss 4.2.0A as a service in Windows XP Pro
I saw something once for wrappers used to do this but it asked for a licensing fee. Is there an open source way to do this?
0
votes
1answer
31 views
Transactional services => BeanNotOfRequiredTypeException, should be Advice, but is TransactionInterceptor
Hi guys,
After following the great advice given in a thread about service beans I have made a Service that is listed under. I've tried putting @Transactional at the interface leve …
2
votes
3answers
68 views
How to call a Grails service in a view?
Simple question :
I have a service class (let's say helpersService) and a method def constructURI(params).
How can I call this method from a template view.
I have tried the follow …
