Hi, I had tried to send an XML object from Client application to the server application. At the client end I am send the XML this way:- Dim xml As...
dn
mailtodn@...
Oct 1, 2001 1:37 pm
792
Not really an MSMQ problem, more an XML encoding problem... It sounds like you have got characters which are not valid XML contained within the XML of the...
Tim Tyler
tim.tyler@...
Oct 1, 2001 1:55 pm
793
If this is the same issue that I am familiar with it was fixed in a service pack. If I had to guess it would be NT 4 SP 6 and Win2k SP1. ... From: dn...
Keith Schaab
keithsc@...
Oct 1, 2001 3:25 pm
794
Hi, I had tried to send an XML from Client application to the server application. At the client end I am send the XML this way:- Dim xml As MSXML2.DOMDocument ...
dn
mailtodn@...
Oct 2, 2001 7:48 am
795
Dim getxml As MSXML2.DOMDocument Set getxml = New MSXML2.DOMDocument getxml = msg.Body Should be Dim getxml As MSXML2.DOMDocument Set getxml = msg.Body I'm not...
Keith Schaab
keithsc@...
Oct 2, 2001 4:56 pm
796
Hi, I am trying to encrypt message in client application and decrypt it in at the server application in MSMQ. Currently both the applications are running on...
dn
mailtodn@...
Oct 4, 2001 11:11 am
797
Hi, I tried to put a segment of MSMQ code in a NT service and let the service handle any MSMQ messages, but the program always failed when it tried to...
david_wu07670@...
Oct 4, 2001 1:38 pm
798
Hi all: I have 1000 dial-up clients, that connect occasionally during the day. There are 1000 queues on the server (one per each client), but have a problem...
bryanb_72@...
Oct 4, 2001 2:35 pm
799
hi , i want to use the MSMQ for posting data in different database in DB2......can i able to do that...if yes....how can i do that and can u pl tell me the ...
kamal sawhney
kamalsawhney@...
Oct 4, 2001 3:14 pm
800
This problem has been solved. I failed to remove it from the message board....
david_wu07670@...
Oct 4, 2001 3:41 pm
801
Hi, When I tried to implement MSMQEvent notification in a NT service program. I found when I put a line of code "::MessageBox (::GetDesktopWindow(), "vvv",...
david_wu07670@...
Oct 4, 2001 9:34 pm
802
Well, I'm just developing NT service with notifications and it seems to work fine. What is timeout you use when calling EnableNotification on queue? I call...
Bodlák Martin
martin.bodlak@...
Oct 5, 2001 5:53 am
803
Hi, Shortly, my problem is when I install the MSMQ on my W2k, the queuing works absolutely fine, but when I restart the machine the queuing system returns...
gergely.pogany@...
Oct 5, 2001 11:27 am
804
Just some more conditions: I tried to install the MSMQ as an average user; a domain administrator; a local administrator and the sytu was the same. When I try...
gergely.pogany@...
Oct 5, 2001 1:23 pm
805
Hi, I am posting my problem again. I am trying to encrypt message in sender application and decrypt it in the receiver application in MSMQ. Currently both the...
dn
mailtodn@...
Oct 5, 2001 1:25 pm
806
Thanks, I solved the problem. Bascally I am writing this program to let the server handle clients' message efficiently. David ... seems to work ... (and ... ...
david_wu07670@...
Oct 5, 2001 7:22 pm
807
I can't get my code to work, is there any thing I have to enable in the operating system or is there anything wrong with my code? ' Make the global queues send...
frank.veum@...
Oct 8, 2001 8:19 am
808
I have solved it myselfe: Dim openLogonQ As MSMQQueue Dim openSetupUpdQ As MSMQQueue Changed to Private openLogonQ As MSMQQueue Private openSetupUpdQ As...
frank.veum@...
Oct 8, 2001 11:15 am
809
You might want to try using DoEvents() this forces VB to process messages and might fix your problem. ... From: Bodlák Martin...
Keith Schaab
keithsc@...
Oct 8, 2001 4:32 pm
810
Encryption happens over the wire, to see the difference you must use a network capture tool. Besides, all the decryption is done internally anyway, so if the...
Keith Schaab
keithsc@...
Oct 8, 2001 4:47 pm
811
You must set permissions on your AD store to allow users to create objects in order for this to work. From the Win2k help file: To set install permissions for...
Keith Schaab
keithsc@...
Oct 8, 2001 4:49 pm
812
MSMQ is dependent on SQL, you cannot change this to another database type. MSMQ does not store messages in this database, only enterprise information. You...
Keith Schaab
keithsc@...
Oct 8, 2001 4:54 pm
813
This is a bad idea! Although MSMQ allows for remote receives this way, it is best to send messages to the clients instead of receiving them from the server....
Keith Schaab
keithsc@...
Oct 8, 2001 5:05 pm
814
Hi, I am new to msmq and hence this list. I am trying to create a Queue on my machine and its blowing up on my face. My machine is a W2k adv sever in a...
Prakash
hprakash73@...
Oct 8, 2001 5:07 pm
815
Change the code to do a _com_ptr_t<IMSMQQueueInfo>::CreateInstance, this returns an HRESULT which will help us figure out why you cannot create this object. ...
Keith Schaab
keithsc@...
Oct 8, 2001 5:10 pm
816
Are you getting an AV? This seems strange. Your code looks good to me, maybe check your HR coming back from put_PathName(). Try raw_interfaces_only in your...
Keith Schaab
keithsc@...
Oct 8, 2001 5:15 pm
817
Whoops forgot the all important: HRESULT hr = pQueueInfo.CreateInstance(__uuidof(MSMQQueueInfo)); if (FAILED(hr)) { printf("Error is 0x%8X.\n", hr); } ... ...
Keith Schaab
keithsc@...
Oct 8, 2001 5:17 pm
818
... yes. Well i have been able to create the queue . I had to change the path name from ".\\Prakash" to ".\\PRIVATE$\\Prakash" and well the queue got created. ...
Prakash
hprakash73@...
Oct 8, 2001 6:43 pm
819
Is there a failed HRESULT being returned from put_PathName? ... From: Prakash [mailto:hprakash73@...] Sent: Monday, October 08, 2001 11:43 AM To:...
Keith Schaab
keithsc@...
Oct 8, 2001 9:03 pm
820
... No the hr is 0 . I dont know why i need PRIVATE$ ?? but thats what it seems to like. ... From: Keith Schaab To: msmq@yahoogroups.com Sent: Monday, October...