Re: Year End Issues, Gigaspaces Licenses and XPA
Jeroen Bos
Hi,
We want to switch from the broker to GigaSpaces with XPA 3.3g and are facing the same issue regarding the license for GigaSpaces. Have you ever received a new license from MSE?
I have downloaded several versions of Magic and it seems that MSE Has different licenses for GigaSpaces for different versions of XPA:
XPA GigaSpaces Expiration date 3.2d 11 01-06-2042 3.3g 12.3 31-12-2020 4.6 12.3 31-12-2020 4.7 15 30-04-2022
Met vriendelijke groet / Yours sincerely
Jeroen Bos | Technisch Consultant (Technical Consultant) Lekkerland Nederland B.V. | Ekkersrijt 7601 | 5692 HR Son +31 (0) 40 264 4400 www.lekkerland.nl | www.lekkerland24.nl Volg ons op
Van: main@magicu-l.groups.io <main@magicu-l.groups.io>
Namens iluvmagic via groups.io
Thank you. Will ask supplier then. This e-mail may contain confidential and/or privileged information. If you are not the intended receipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden. Deze e-mail kan vertrouwelijke en/of persoonlijke informatie bevatten. Als u niet de bedoelde ontvanger bent, of deze e-mail per ongeluk heeft gekregen, breng dan de verzender ogenblikkelijk hiervan op de hoogte en vernietig dit bericht. Het kopieren, in de openbaarheid brengen of verspreiden van de inhoud van deze e-mail is ten strengste verboden. Ce courriel peut contenir des informations confidentielles et/ou privilegiees. Si ce courriel ne vous est pas destine (ou vous avez recu ce courriel par erreur) svp, avertissez immediatement la personne qui a envoye ce courriel et detruisez le. Toute copie non autorisee, divulgation des informations ou distribution du contenu de ce courriel sont strictement interdites. -------------------------------------------------------------------------------------------------
|
|||
|
|||
Pass parameters to send mail to power shell routine with Magic830
Andres Quintas
How can I pass as a parameter to the invocation of this routine power shell as a table of clients goes through the mail of each one.
$Username = "mail@..."; $Password = "password"; $path = "C:\grafica.xls";
function Send-ToEmail([string]$email, [string]$attachmentpath){
$message = new-object Net.Mail.MailMessage; $message.From = "mailt@..."; $message.To.Add($email); $message.Subject = "subject text here..."; $message.Body = "body text here..."; $attachment = New-Object Net.Mail.Attachment($attachmentpath); $message.Attachments.Add($attachment);
$smtp = new-object Net.Mail.SmtpClient("smtp.gmail.com", "587"); $smtp.EnableSSL = $true; $smtp.Credentials = New-Object System.Net.NetworkCredential($Username, $Password); $smtp.send($message); write-host "Mail Sent" ; $attachment.Dispose(); } Send-ToEmail -email "mail@..." -attachmentpath $path;
Regards Andres.
|
|||
|
|||
Re: Calling a Secure Web Service With xpa
Mike Bannon
Thanks Andreas & Tim
I found the problem. I was specifying the SOAP action (Authenticate) as part of the URL (which I have done with other API calls), rather than as a separate ‘SOAPAction’ message header :-0
Regards Mike
From: main@magicu-l.groups.io [mailto:main@magicu-l.groups.io] On Behalf Of Andreas Sedlmeier
Sent: 21 January 2021 12:49 To: main@magicu-l.groups.io Subject: Re: [magicu-l] Calling a Secure Web Service With xpa
On Wed, Jan 20, 2021 at 06:45 PM, Mike Bannon wrote: AddressFilter mismatch at the EndpointDispatcher You can google for that, it has nothing to do with XPA, its about the recipient and the SOAP message you send . Obviously on server side there's WCF.
|
|||
|
|||
Re: Calling a Secure Web Service With xpa
Andreas Sedlmeier
On Wed, Jan 20, 2021 at 06:45 PM, Mike Bannon wrote:
AddressFilter mismatch at the EndpointDispatcherYou can google for that, it has nothing to do with XPA, its about the recipient and the SOAP message you send . Obviously on server side there's WCF. Maybe you can talk to the server guys or find any of the suggestions helpful which you can find in the net. I am not familiar with that error and have no glue https://stackoverflow.com/questions/9293721/addressfilter-mismatch-at-the-endpointdispatcher-the-msg-with-to Best regards, Andreas
|
|||
|
|||
Magic on Linux questions
magic9@aquari.com
Hello,
Is there an evaluation version of the Magic for Linux version that can be downloaded and tried? Is the Linux version stable? What databases can be used with the Linux version? Has anyone installed the Magic for Linux on a virtual server (like a Linode)? Thanks Andy
|
|||
|
|||
Re: Calling a Secure Web Service With xpa
Tim Downie
Hi https works in 3.2 - trying changing the httpframework in magic ini perhaps. Also should use the httpcall function to do this
From: main@magicu-l.groups.io <main@magicu-l.groups.io> on behalf of Mike Bannon <mikeb@...>
Sent: Wednesday, 20 January 2021 5:45 PM To: main@magicu-l.groups.io <main@magicu-l.groups.io> Subject: [magicu-l] Calling a Secure Web Service With xpa Hi All
I'm trying to use HTTPPost to call a secure web service, i.e. has the address 'https//...'. I get back an error message saying 'The message to <address> cannot be processed at the receiver, due to an AddressFilter mismatch at the EndpointDispatcher. Check that the sender and receiver's EndpointAddresses agree' I've called the same service from SoapUI and it works fine, so I know my endpoint is correct. However, I notice that in the error message the endpoint <address> it quotes is 'http//...' not 'https//...'. Is it possible that xpa (V3.2) has some sort of issue with secure web services, and actually strips the 's' from the https? Has anybody come across this problem? Regards Mike Bannon DataFormation Ltd., UK
|
|||
|
|||
Re: Different behaviour ViewRefresh [XPA 3.2c]
Florian,
toggle quoted messageShow quoted text
View Refresh is a Type=Internal event. Internal events cannot be raised synchronously (Wait=Yes). If you raise View Refresh with Wait=Yes, the event will be triggered but never handled. Raising View Refresh with Wait=Yes is the same as not raising it at all. The Activity Monitor will confirm this. Steven G. Blank SGBlank Consulting
On 1/20/2021 5:35 AM, Florian Groothuis
wrote:
I set the Wait-option on the event to Yes which solved the problem. Apparently a lot of other events got in the way.
|
|||
|
|||
Calling a Secure Web Service With xpa
Mike Bannon
Hi All
I'm trying to use HTTPPost to call a secure web service, i.e. has the address 'https//...'. I get back an error message saying 'The message to <address> cannot be processed at the receiver, due to an AddressFilter mismatch at the EndpointDispatcher. Check that the sender and receiver's EndpointAddresses agree' I've called the same service from SoapUI and it works fine, so I know my endpoint is correct. However, I notice that in the error message the endpoint <address> it quotes is 'http//...' not 'https//...'. Is it possible that xpa (V3.2) has some sort of issue with secure web services, and actually strips the 's' from the https? Has anybody come across this problem? Regards Mike Bannon DataFormation Ltd., UK
|
|||
|
|||
Re: Different behaviour ViewRefresh [XPA 3.2c]
I set the Wait-option on the event to Yes which solved the problem. Apparently a lot of other events got in the way.
|
|||
|
|||
Different behaviour ViewRefresh [XPA 3.2c]
Here's a new one:
I have a screen with a table with (in the current case) 5 rows. The task goes to a subtask and on leaving the subtask I do a ViewRefresh with prm's 0 and TRUE, so I want to relocate on the record I last parked on and keep the user sort. After returning my view now consists off 4 records instead of 5. When I do the same thing with prm's 2 and TRUE, so I do not locate on the last record, the view still consists of 5 records on return, which it should be. Is there a difference in those 2 refresh options regarding the refresh itself? TIA Florian
|
|||
|
|||
Re: Pervasive/Zen <> Magic 8.3
przemm@...
Hi Teun,
They could try to disable energy saving, especially one option in network card Windows settings : "Allow to turn off this device to conserve power"
|
|||
|
|||
Re: Pervasive/Zen <> Magic 8.3
Thank you both for your reply. Now I can inform my customer with confidence.
Regards, Teun.
|
|||
|
|||
Re: Upgrade Installation
Yes, executing the setup (.exe) program will upgrade your existing
v3.3d installation to v3.3h. This action will not modify the
existing MAGIC.INI file nor any of your projects.
toggle quoted messageShow quoted text
In MSE's current naming scheme, a change in the suffix letter (a, b, c, ...) indicates a maintenance update, also known as a service pack. HTH. Steven G. Blank SGBlank Consulting
On 1/19/2021 12:19 PM, zbwanders wrote:
Hi, i'm a new magic xpa user. I just wanted to ask if I can upgrade or install 3.3H directly when my current version is 3.3D. Tips and best practice on how to will be very much appreciated. Thank you in advance.
|
|||
|
|||
Upgrade Installation
zbwanders <ZBWANDERS@...>
Hi, i'm a new magic xpa user. I just wanted to ask if I can upgrade or install 3.3H directly when my current version is 3.3D. Tips and best practice on how to will be very much appreciated. Thank you in advance.
|
|||
|
|||
Re: Automatic from Query to Create mode
iluvmagic@...
Check this...
|
|||
|
|||
Re: Pervasive/Zen <> Magic 8.3
Bob Witte
I installed the Zen v14 Workgroup on my own peer-to-peer setup at my home office. No issues on the install, and no issues on my use here for the last 6 weeks. The only difference I noticed was that a file rebuild on a 1 gig file only showed a 7 or 8% reduction in size whereas I used to get about a 22% reduction with v11 on that same file. Other than that I'm completely satisfied with the Zen product.
|
|||
|
|||
Re: Pervasive/Zen <> Magic 8.3
Yacov Weiss
Hi, I have a client that runs 8.3 with pervasive 13 and have encountered no problems the past 6 months.
On Tue, Jan 19, 2021 at 11:19 AM Undix InformatieSystemen <undix76@...> wrote:
|
|||
|
|||
Pervasive/Zen <> Magic 8.3
Dear Magicians, One of my clients have problems with a 8.3 application concerning connection with the Pervasive database. When they don't use our application about 10 minutes the program is 'dead'. They have an very old Pervasive version and want to update to a newer one. My question : can a Magic 8.3 application run with the new Zen V14 database ? TIA, Teun van Unen
|
|||
|
|||
Re: Date in MSSQL
Thomas Titus
Adding my comments on using CHAR(8) as XPA date storage for date from MSSQL side, the function IsDate('20210118') returns 1 and IsDate('00000000') returns 0. CREATE FUNCTION dbo.XPADateToSQLDate (@XPADate CHAR(8)) RETURNS DATE AS BEGIN DECLARE @SQLDate DATE IF IsDate(@XPADate)=1 SET @SQLDate=CONVERT(DATE,@XPADate) RETURN @SQLDate END ----------------------------------- CREATE FUNCTION dbo.SQLDateToXPADate(@SQLDate DATE) RETURNS CHAR(8) AS BEGIN DECLARE @XPADate CHAR(8)='00000000' IF @SQLDate IS NOT NULL SET @XPADate=CONVERT(CHAR(8),@SQLDate,112) RETURN @XPADate END
Thanks
|
|||
|
|||
Re: Combo box with empty source table
Rob Westland
Or call a batch program which returns the source table in 2
blobs: an ItemsListBlob and a DisplayListBlob. Then you can
manipulate the blobs to whatever output you want. And then connect
the blobs to the dropdownbox in stead of the sourcetable
Op 18-1-2021 om 18:30 schreef Andy
Jerison:
|
|||
|