Hi Friends,
I have a situation where in we need to send IDOC things to SAP XI from .NET application.
It is like both sending and receiving. I guess that it is having something connected to translate IDoc to XML and vice versa and then communicate. Can you just some technical knowledge on how to achieve this communication between SAP XI ...
I've found an issue I believe where an assembly is making a call to a .Net3.5 method in a .Net2.0 only environment. (None on the .Net service packs nor .Net 3.5 is installed)
I'd like to know if there are any programs that I can run like FXCop to check an assembly for adherence to only making method calls that are available in .Net 2.0 ...
Conditions:
The files must be opened outside of the window that the link to them is in.
I have tried href, but when I give it an intranet link it only opens correctly if I leave out target="_blank"; if I put that in, the new window that opens doesn't receive the full link if there is a pound sign in the filepath... a direct link to the ...
This is another exam related question.
How can I use the AssemblyName class to represent an existing
assembly that already exists on disk?
I am talking about from the perspective of using the AppDomain's instance method .Load() that takes an AssemblyName object as a parameter. I know what MSDN has to say about what the .Load() method w...
I've been trying to get the pubsub sample in the NServiceBus download to work in a gateway mode.
I haven't really been able to find out much detail at all about how to get NServiceBus to run in gateway mode.
How do I setup the publisher/server in gateway mode? When I did try I received an access denied exception which would either be d...
I wrote a program that makes a reference to Microsoft.Web.Administration.dll,
which is not present on Windows Server 2003.
The program checks for the os and does not reference the dll if the os is 2003.
if(OSVersion == WindowsServer2003)
//do the job without referencing the Microsoft.Web.Administration.<br>
else if(OSVersion == Win...
So I wrote this program to send a group of my friends a text message.
It works fine at home when I try to use it at work it doesn't work. I get an error message "Failure Sending Mail".
We are using a intercepting proxy at work. I though/hoped that everything would just work, clearly not.
So what do I need to do, I've never programme...
Need logging to:
Rolling file, to avoid 1 big log file.
CSV format for easier look up.
I can see EntLib (5.0) have Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener to log to rolling log file.
To make the log entries look like a CSV row, I can change the Logging.Formatters.TextFormatter.Templa...
PostSharp's Cache sample project works, but when I copy all classes and try to replicate it on my own solution, Cache does NOT happen. But build does not fail, so there must be something going on. Any tips?
...
I am a reasonably experienced developer (.NET, c#, asp.NET etc) but I'd like to hone my problem solving skills. I find that when I come up against a complex problem I sometimes implement a solution that I feel could have been better had I analyzed the problem in a different way.
Ideally what I am looking for is a resource of some type t...
Hi,
I'm trying to call this WS from PHP:
namespace WsInteropTest
{
/// <summary>
/// Summary description for Service1
/// </summary>
[WebService(Namespace = "http://advantage-security.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow ...
I have a .Net application which must store all it's local data in isolated storage. I want to start using SQL CE to store this data. I can't find any documentation on how (or even if) this is possible.
Is it possible to use isolated storage to store a SQL CE database?
If so, what would the connection string look like (or is there som...
How can I create a parameterized properties in C#.
public readonly string ConnectionString(string ConnectionName)
{
get { return System.Configuration.ConfigurationManager.ConnectionStrings[ConnectionName].ToString(); }
}
...
Hi,
i have a web service implemented in java using apache cxf and spring. But the requirement is the same i need that service to be implemented in .net and use that service with my java project web service client..... the package structure of the interface and its implementation should be simulated in .net..... i am novoice to .net and ...
I never use unitests in my apps . I know that exists many technologies for testing .NET based application. (For example NUnit). Which of this tools more comfortable and more understandable to use. Please can you show the good articles where can I find information about unitests and understand key situation where I must use them?
...
how to create setup of database. I have windows application in c#.net i am able to create setup of my application in vs2008 but i want to create my MySql database server setup for multiple clients of my application. Please help me...
...
I'm making custom events for C# and sometimes it isn't working.
This is how I'm making the event happen:
private bool isDoorOpen;
public bool IsDoorOpen {
get { return isDoorOpen;}
private set { isDoorOpen = value; DoorsChangeState(this, null);}
}
And these are the event declarations:
//events ...
...what options are there now with .NET 4.0, in a way that does support NAT for the client side (i.e. client behind NAT).
I would prefer to use something HTTP based, but that is a weak condition - I think mid term I will have some non http communication outside WCF anyway, so proxy traversal is something I could delay.
Pre .NET 4.0 the...
Hi,
I have a setup with a .NET WCF Service hosted on IIS.
The client apps are connecting to the service through a set of ISA proxy's. I don't know how many and don't know about their configuration etc.
In the client apps I open a client to the service and make several calls via the same client.
It works great in my office, but when I d...
I am creating a managed WPF UI front-end to a legacy Win32-application. The WPF front-end is the executable; as part of its startup routines I start the legacy app as a DLL in a second thread. Any UI-operation (including CreateWindowsEx, etc.) by the legacy app is invoked back on the main UI-thread.
As part of the shutdown process of th...