Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a server which is coded in csharp and i want to connect it to java mobile application can any one help me in this ??

share|improve this question
1  
What kind of server? Do you have a client implemented in C# already? – Blorgbeard Mar 27 '11 at 21:18
It's not real question because we need to know server api. If you provide some code or more details mb someone help you. – Andrew Orsich Mar 27 '11 at 21:19

closed as not a real question by Servy, lc., Matthew, Jack, ρяσѕρєя K Aug 15 '12 at 11:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

I would recommend you reading about HTTP and using it to connect your client (Java mobile APP) with your server (C#).

share|improve this answer

Perhaps your c# server could provide a web service, and the java app can call this web service to talk to your server.

You could use a WCF web service if using a newer version of c#, or a web service if using an older version of c#. Tha java app should be able to talk to both.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.