Click here to Skip to main content
15,923,015 members
Home / Discussions / C#
   

C#

 
GeneralRe: Access Form from Class Pin
carbon_golem8-Apr-08 3:35
carbon_golem8-Apr-08 3:35 
GeneralRe: Access Form from Class Pin
Gareth H8-Apr-08 4:22
Gareth H8-Apr-08 4:22 
GeneralRe: Access Form from Class Pin
Dave Kreskowiak8-Apr-08 5:19
mveDave Kreskowiak8-Apr-08 5:19 
GeneralRe: Access Form from Class Pin
carbon_golem8-Apr-08 16:56
carbon_golem8-Apr-08 16:56 
GeneralRe: Access Form from Class Pin
Dave Kreskowiak8-Apr-08 5:16
mveDave Kreskowiak8-Apr-08 5:16 
GeneralRe: Access Form from Class Pin
Gareth H8-Apr-08 5:38
Gareth H8-Apr-08 5:38 
QuestionAllow service to interact with Desktop Pin
ptr2void8-Apr-08 2:36
ptr2void8-Apr-08 2:36 
GeneralRe: Allow service to interact with Desktop Pin
Dave Kreskowiak8-Apr-08 5:13
mveDave Kreskowiak8-Apr-08 5:13 
GeneralRe: Allow service to interact with Desktop Pin
som.nitk8-Apr-08 5:23
som.nitk8-Apr-08 5:23 
QuestionStackOverflow in ListView Pin
Pathetic Logic8-Apr-08 1:22
Pathetic Logic8-Apr-08 1:22 
GeneralRe: StackOverflow in ListView Pin
Christian Graus8-Apr-08 1:28
protectorChristian Graus8-Apr-08 1:28 
QuestionRe: StackOverflow in ListView Pin
Pathetic Logic8-Apr-08 3:04
Pathetic Logic8-Apr-08 3:04 
AnswerRe: StackOverflow in ListView Pin
Pathetic Logic8-Apr-08 4:51
Pathetic Logic8-Apr-08 4:51 
GeneralRegarding Multithreading Pin
tasumisra8-Apr-08 0:32
tasumisra8-Apr-08 0:32 
GeneralRe: Regarding Multithreading Pin
Christian Graus8-Apr-08 0:34
protectorChristian Graus8-Apr-08 0:34 
QuestionHow to start learning about creating database server. Pin
toeh7-Apr-08 23:56
toeh7-Apr-08 23:56 
AnswerRe: How to start learning about creating database server. Pin
Christian Graus8-Apr-08 0:16
protectorChristian Graus8-Apr-08 0:16 
AnswerRe: How to start learning about creating database server. Pin
Pete O'Hanlon8-Apr-08 0:58
mvePete O'Hanlon8-Apr-08 0:58 
AnswerRe: How to start learning about creating database server. Pin
darkelv8-Apr-08 1:26
darkelv8-Apr-08 1:26 
Questionexporting windows form as pdf Pin
Faysal7-Apr-08 23:43
Faysal7-Apr-08 23:43 
GeneralRe: exporting windows form as pdf Pin
Christian Graus8-Apr-08 0:17
protectorChristian Graus8-Apr-08 0:17 
GeneralRe: exporting windows form as pdf Pin
Faysal8-Apr-08 0:56
Faysal8-Apr-08 0:56 
GeneralRe: exporting windows form as pdf Pin
Christian Graus8-Apr-08 1:12
protectorChristian Graus8-Apr-08 1:12 
GeneralRe: exporting windows form as pdf Pin
Faysal8-Apr-08 23:06
Faysal8-Apr-08 23:06 
GeneralParameter Handling while generating code from the WSDL Pin
Kapil Singhal7-Apr-08 23:33
Kapil Singhal7-Apr-08 23:33 
Hello,

I am using a Java Web Service deployed on JBoss Server.
The WSDL generated from the JBoss Server is being used in the Visual C# 2005 Express Edition for creation of a Third party client or SOAP API Client.

The Reference.cs is generated correctly and I am able to access the methods of the Web Service on JBoss.

The only problem is that the parameters are shown as

<code>public void sharePerspectiveOnDisplay(sessionId arg0, objectId arg1, objectId arg2, int arg3, int arg4, int arg5, int arg6)
{

}</code>

In the above example the only thing understandable is the SessionId for the user and all other parameters are not known to him.

Is there a way thru which I can provide type-mapping for the paramaters.

The same method in the Java Interface/Web Service is as follows:

<code>public void sharePerspectiveOnDisplay (SessionId aSessionId, ObjectId aDisplayId, ObjectId aPerspectiveId, int x, int y, int width, int height)
{

}</code>

So from this perspective, the user of the Web Service do not know as what "ObjectID" he has to pass where and what "int" value to be passed as per x, y, height, width.

Is it possible to achieve this?
Any suggestions will be appreciated.

Thanks,
Kapil

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.