Click here to Skip to main content
15,905,316 members
Home / Discussions / Web Development
   

Web Development

 
QuestionError throwing when using Mozilla firefox browser. Pin
Rasma Raj10-Mar-09 1:31
Rasma Raj10-Mar-09 1:31 
AnswerRe: Error throwing when using Mozilla firefox browser. Pin
SeMartens11-Mar-09 22:32
SeMartens11-Mar-09 22:32 
QuestionProblem With ModalPopupExtender and UpdatePanel Pin
VikashGohil9-Mar-09 6:48
VikashGohil9-Mar-09 6:48 
AnswerRe: Problem With ModalPopupExtender and UpdatePanel Pin
Rajdev Ramasamy13-Mar-09 0:09
Rajdev Ramasamy13-Mar-09 0:09 
AnswerWhat language are you using? Pin
Naruki23-Mar-09 20:24
Naruki23-Mar-09 20:24 
QuestionDeploy website on ftp Pin
Hemant Thaker8-Mar-09 19:19
Hemant Thaker8-Mar-09 19:19 
AnswerRe: Deploy website on ftp Pin
Abhishek Sur9-Mar-09 3:35
professionalAbhishek Sur9-Mar-09 3:35 
AnswerRe: Deploy website on ftp Pin
Roger Wright10-Mar-09 19:03
professionalRoger Wright10-Mar-09 19:03 
QuestionHow would you do it? web modification and SEO... [modified] Pin
Joan M8-Mar-09 7:28
professionalJoan M8-Mar-09 7:28 
AnswerRe: How would you do it? web modification and SEO... Pin
Chris Maunder8-Mar-09 8:17
cofounderChris Maunder8-Mar-09 8:17 
GeneralRe: How would you do it? web modification and SEO... Pin
Joan M8-Mar-09 8:26
professionalJoan M8-Mar-09 8:26 
GeneralRe: How would you do it? web modification and SEO... Pin
Roger Wright10-Mar-09 19:06
professionalRoger Wright10-Mar-09 19:06 
GeneralRe: How would you do it? web modification and SEO... Pin
Chris Maunder11-Mar-09 3:35
cofounderChris Maunder11-Mar-09 3:35 
QuestionUser and Profile information [modified] Pin
NetQuestions7-Mar-09 18:47
NetQuestions7-Mar-09 18:47 
AnswerRe: User and Profile information Pin
JMummery8-Mar-09 5:23
professionalJMummery8-Mar-09 5:23 
GeneralRe: User and Profile information Pin
NetQuestions8-Mar-09 20:04
NetQuestions8-Mar-09 20:04 
GeneralRe: User and Profile information Pin
JMummery8-Mar-09 23:39
professionalJMummery8-Mar-09 23:39 
GeneralRe: User and Profile information Pin
NetQuestions9-Mar-09 21:52
NetQuestions9-Mar-09 21:52 
QuestionReference errors using classes defined locally but then imported into a Webservice Pin
redivider6-Mar-09 11:06
redivider6-Mar-09 11:06 
I have a forms project that will allow user to connect to a local database or a webservice hosting the data.
So the flow goes something like:
App builds request object (SearchCriteria) defined in a class library. Local data access layer and webservice both use the SearchCriteria object to run queries, and return a Results object (also defined in the class library).

So my desktop app has a ClassLibrary project which defines the Request and Results classes. This dll is imported into the Webservice solution.

I’ve developed an interface to define the contracts between the desktop app and the data provider (either the local DAL or the Webservice).
public interface IDataAccess
{
  DataTable GetCompanyMatches(SearchCriteria searchCriteria, out Results results);
  …
}

One edit to the Reference.cs file tells the compiler that my Webservice implements the interface.
internal interface WSSoap : ITPDataAccess
The problem is that when the Webservice returns the Results object the desktop app sees the type as Webservice.Results instead of ClassLibrary.Results, so the Webservice does not implement IDataAccess (even though I specify, in the webservice, webservice inherits from/implements IDataAccess.
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class WebService : ITPDataAccess
{…..}

Is there a way to tell the WS to not put the ClassLibrary classes into the Webservice namespace? Is there some way on the app side to use the locally defined classes when interacting with the webservice?
Basically how do i tell the compiler that they are the same thing, without rewriting the Reference.cs file??
QuestionIIS/Http Compression. Pin
Member 23244836-Mar-09 7:09
Member 23244836-Mar-09 7:09 
AnswerRe: IIS/Http Compression. Pin
JMummery8-Mar-09 6:16
professionalJMummery8-Mar-09 6:16 
GeneralRe: IIS/Http Compression. Pin
Member 23244839-Mar-09 12:37
Member 23244839-Mar-09 12:37 
GeneralRe: IIS/Http Compression. Pin
JMummery9-Mar-09 12:41
professionalJMummery9-Mar-09 12:41 
QuestionFunky Flash Video Pin
Marc Firth6-Mar-09 0:22
Marc Firth6-Mar-09 0:22 
AnswerRe: Funky Flash Video Pin
Marc Firth15-Mar-09 23:39
Marc Firth15-Mar-09 23:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.