Re: [ADVANCED-DOTNET] parsing a java webservice

2004-03-05 Thread Dave Heizer
I would recommend going with DIME attachments. I just finished a project going the other direction that did this and the documents pass through without a hitch -Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of dave wanta Sent: Fr

Re: [ADVANCED-DOTNET] Need help with Justification of .net Remoting

2004-03-05 Thread Alan Robbins
I posted this cross-list (yes I know BAD FORM, sorry), received many replies on and off list, big Thanks to everyone who responded. Justification is in management's hands. Thanks again, the folks on this list are GREAT. Alan === This list is hosted by DevelopMento

Re: [ADVANCED-DOTNET] Configuration File....

2004-03-05 Thread james
I had this same issue with my first distributed Windows Service Interface. The app.config file is being read in the context of the calling classes structure. f.e. - A web service loads the config class object from another application and the class is empty. But if the app.config file is placed in

Re: [ADVANCED-DOTNET] parsing a java webservice

2004-03-05 Thread Streno, Robert
Why are you parsing the raw SOAP? Why not make a call directly to the web service using a proxy constructed from the WSDL for the web service? Once you do that, you should be able to reference the parameter as a string. Assuming that the doc has been base64 encoded, it should be a relatively simp

Re: [ADVANCED-DOTNET] Need help with Justification of .net Remoting

2004-03-05 Thread james
-Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Alan Robbins Sent: Friday, March 05, 2004 9:04 AM To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] Need help with Justification of .net Remoting IMHO This is something that is occu

Re: [ADVANCED-DOTNET] parsing a java webservice

2004-03-05 Thread james
-Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of dave wanta Sent: Friday, March 05, 2004 10:44 AM To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] parsing a java webservice So I'm reading the stream with a StreamReader, using En

Re: [ADVANCED-DOTNET] parsing a java webservice

2004-03-05 Thread Knebels, Francis
It sounds like you trying to build what the WSDL.Exe utility gives to you. I consume webservices from WebLogic using this technique without a problem. Granted I'm only sending primitive datatypes, but it works non the less. First find the URL for the WSDL declaration. Then run WSDL from the VS c

[ADVANCED-DOTNET] parsing a java webservice

2004-03-05 Thread dave wanta
Hi All, Hopefully I can explain this one with out mucking this up.;-) I've got to consume a Java webservice (which I know nothing about). A co-worker gave me the code that mades the Soap request, using a WebRequest (only way we could get .NET to talk to the service successfully). Which works great

[ADVANCED-DOTNET] Need help with Justification of .net Remoting

2004-03-05 Thread Alan Robbins
Greetings My team is in the midst of proposing an architecture that places data service providers on middle tier servers that communicate with the application using .net remoting. What this lets us do is: 1> Serve datasets to the application, eliminating the need for the Oracle Client (and the ni

Re: [ADVANCED-DOTNET] Configuration File....

2004-03-05 Thread Jeff Little
I have been seeing a similar problem. I have a Web app and three library projects in my solution. One of the library projects is my DataPortal layer and one is my business logic tier. In the DataPortal, I added an app.config file to house the connection string, and make a call from my custom con

Re: [ADVANCED-DOTNET] Configuration File....

2004-03-05 Thread Christopher Reed
Could you provide us with a snippet of your code from your Windows Service application as well as your configuration file? Christopher Reed Web Applications Supervisor Information Technology City of Lubbock [EMAIL PROTECTED] "The oxen are slow, but the earth is patient." >>> [EMAIL PROTECTED] 3:1

Re: [ADVANCED-DOTNET] Configuration File....

2004-03-05 Thread Tim Bailey
I saw something similar, the configfile must be called "app.config" or the app couldn't se it. Regards Tim Bailey -Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Sarvajith Chakravarty Sent: 05 March 2004 09:10 To: [EMAIL PROTE

Re: [ADVANCED-DOTNET] Configuration File....

2004-03-05 Thread Alexander R. Krapf
Sarvajith, Most debugging problems related to config files are due to the fact that VisualStudio deletes the config file before running the app. It took me a while to figure that out and dod a Google search on the issue. You can fix this by adding a file named "app.config" to your VS project

Re: [ADVANCED-DOTNET] Configuration File....

2004-03-05 Thread Chris Stefano
Hi Put a call in the OnStart() to System.Diagnostics.Debugger.Break() Start the service on the machine with VS installed, and you'll beable to debug your app HTH Chris Stefano -Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf

Re: [ADVANCED-DOTNET] Configuration File....

2004-03-05 Thread Frans Bouma
Copy the config file in the windows\system32 directory (or winnt\system32 directory) and name it: svchost.exe.config or dllhost.exe.config, depending on which 'host' is hosting your service. Pretty lame, but the only solution I'm aware of. If you learn of other solutions, please post them in this t

Re: [ADVANCED-DOTNET] Configuration File....

2004-03-05 Thread Stefan Holdermans
Sarvajith, SC> But since i cannot debug the start method, i made a windows SC> app, which has an object of the service class and calls SC> another method, identical to the start method. Assuming that your service app is service.exe and your test app is test.exe, you've probably called the config

[ADVANCED-DOTNET] Configuration File....

2004-03-05 Thread Sarvajith Chakravarty
Hi all, i am in need of immediate help... i have a windows service application, which has a config file and a method in the .cs file to read the config file, making use of the Configuration class provided ny .NET. But since i cannot debug the start method, i made a windows app, which has an obj

Re: [ADVANCED-DOTNET] using a .net component as a COM component

2004-03-05 Thread Devogel David C Maj 386 EAS/C130 Ops
http://samples.gotdotnet.com/quickstart/howto/doc/Interop/Building_Samples_C OM2NET.aspx -Original Message- From: Courtney [mailto:[EMAIL PROTECTED] Sent: Thursday, March 04, 2004 10:57 PM To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] using a .net component as a COM component I'm loo

Re: [ADVANCED-DOTNET] Folder Browse Dialog in Setup Project

2004-03-05 Thread Chris Day
Or go for P/Invoke with SHBrowseForFolder, however check the newsgroups because I believe there were some issues with this. > -Original Message- > From: Frans Bouma [mailto:[EMAIL PROTECTED] > Sent: Friday, 5 March 2004 1:31 AM > To: [EMAIL PROTECTED] > Subject: Re: [ADVANCED-DOTNET] Fol

Re: [ADVANCED-DOTNET] LinkDemand discoverability

2004-03-05 Thread Stephen Johnston
I believe that the expectation would be that you would have the source code also, therefore for maintenance and documentation you could use both to make the whole. -Stephen At 04:42 PM 3/4/2004, you wrote: I realize this attribute does force the particular emittion and does not remain in metada

Re: [ADVANCED-DOTNET] using a .net component as a COM component

2004-03-05 Thread J. Merrill
You'll need to use COM, but only from the scripting side. Build any number of .net classes in a single project (assembly), then use the regasm utility to register the classes in the assembly so they're accessible from unmanaged code via COM. Unless you want to do something rather unusual, this