Click here to Skip to main content

Wael Al Wirr - Professional Profile

Summary

5,156
Author
453
Authority
47
Debator
120
Editor
2
Enquirer
91
Organiser
1,423
Participant
Wael Al Wirr’s Specialties:
•Microsoft BizTalk Server 2004, 2006, 2010
•ASP.Net, C#, ADO.Net and .Net Framework (1.1, 2.0, 3.0, 3.5, 4.0)
•Windows Communication Foundation
•Windows Workflow Foundation
•Windows AppFabric
•ADO.NET Entity Framework
•Microsoft Line Of Business Adapter Framework
•SQL Server 2000, 2005
•Web development
•HTML, XML, XSD, XSLT
•JavaScript
•Database design
•Web Services
•Build, deployment script
•Microsoft Source Safe, Microsoft Team Foundation Server
Member since Sunday, February 15, 2009 (4 years, 4 months)

Contributions

Articles 10 (Prolific)
Tech Blogs 0
Messages 58 (Lurker)
Q&A Questions 0
Q&A Answers 22
Tips/Tricks 3
Comments 10

Links

Reputation

For more information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege, and the given member types also gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilverAdmin
Store personal files in your account areaplatinumplatinumSitebuilder, Subeditor, Supporter, Editor, Staff
Have live hyperlinks in your biographybronzebronzebronzebronzebronzebronzesilverSubeditor, Protector, Editor, Staff, Admin
Edit a Question in Q&AsilversilversilversilverYesSubeditor, Protector, Editor, Admin
Edit an Answer in Q&AsilversilversilversilverYesSubeditor, Protector, Editor, Admin
Delete a Question in Q&AYesSubeditor, Protector, Editor, Admin
Delete an Answer in Q&AYesSubeditor, Protector, Editor, Admin
Report an Articlesilversilversilversilver
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubeditor, Mentor, Protector, Editor, Staff, Admin
Edit other members' articlesSubeditor, Protector, Editor, Admin
Create an article without requiring moderationplatinumSubeditor, Mentor, Protector, Editor, Staff, Admin
Report a forum messagesilversilverbronzeProtector, Editor, Admin
Create a new tagsilversilversilversilverAdmin
Modify a tagsilversilversilversilverAdmin

Actions with a green tick can be performed by this member.


 
You must Sign In to use this message board.
Search this forum  
Generaljavascript window.navigate(url) doesn't work in FireFox, Chrome, opera and safari Pin
Friday, August 24, 2012 11:04pm by Wael Al Wirr
Use window.location.href='url'
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
GeneralLocal website renders differently using (IP address or machine name) Pin
Tuesday, August 7, 2012 11:01pm by Wael Al Wirr
In IE go to Tools -> Compatibility View Settings -> uncheck Display intranet in compatibility mode
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
GeneralThe local computer is not a member of a windows failover Pin
Sunday, May 27, 2012 7:44am by Wael Al Wirr
Don't make the same mistake as I did recently which was installing the wrong edition of Windows Server 2008 R2 in order to make use of Failover Cluster services.
 
I installed Standard edition of Windows Server 2008 R2 but in order to make use of the Failover Cluster services and managment snap-in, you need either Windows Server 2008 R2 Datacentre or Windows Server 2008 R2 Enterprise.
 
Attempting to install SQL Failover Cluster in standard edition will give you the following error message during the validation process: The local computer is not a member of a windows failover
 
This document describes the whole administration process: http://technet.microsoft.com/en-us/library/cc731844(WS.10).aspx
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
GeneralSolving operating system version: must be 5.0, 5.1, 5.2. Actual 6.1 Failed Pin
Sunday, March 25, 2012 9:24pm by Wael Al Wirr
Follow the below steps to solve this issue:
 
1) Copy the installation folder to your local harddesk
 
2) search the folder for oraparam.ini
 
3) edit the file using notepad
 
4) add 6.1 to the below section
 
[Certified Versions]
#You can customise error message shown for failure, provide value for CERTIFIED_VERSION_FAILURE_MESSAGE
Windows=5.0,5.1,5.2,6.0,6.1
 
5) save the file and start the installation again.
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
GeneralORA-01882: timezone region not found Pin
Sunday, March 25, 2012 8:40pm by Wael Al Wirr
SQL DEVELOPER
edit this config file:
C:\Program Files\sqldeveloper 3\sqldeveloper\bin\sqldeveloper.conf
then add this line anywhere in the file:
AddVMOption -Duser.timezone="+02:00" (My time zone)
 
ORACLE DATA MODELER
edit this config file:
C:\Program Files\datamodeler 3\datamodeler\bin\datamodeler.conf
then add this line anywhere in the file:
AddVMOption -Duser.timezone="+02:00" (My time zone)
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
Generalcannot be processed because more than one code page (1256 and 1252) are specified for it Pin
Saturday, June 4, 2011 9:28pm by Wael Al Wirr
1) right click on the OLE source
2) click show advance editor
3) click on Component properties tab
4) set AlwaysUseDefaultCodePage = True
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
GeneralCannot send a content-body with this verb-type. Pin
Saturday, April 23, 2011 12:40am by Wael Al Wirr
you may receive Cannot send a content-body with this verb-type. exception while your are trying to get the request stream.
WebRequest webRq = WebRequest.Create(url);
 
Solution:
webRq.Method = "POST";
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
AnswerAdding assemblies to gac with only double click on the dll Pin
Sunday, April 10, 2011 10:43pm by Wael Al Wirr
copy the below text and save it into a.reg file then double click in the reg file .... and that's it
 
[HKEY_CLASSES_ROOT\dllfile\shell\gacutil\command]
@="c:\\windows\\Microsoft.NET\\Framework\\v1.1.4322\\gacutil.exe /i \"%1\""
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
AnswerThe Environment variable LocalAppData must be manually configured for Windows XP and Windows Server 2003 Pin
Tuesday, April 5, 2011 8:04pm by Wael Al Wirr
you might install some extension on VS10 Ultimate on Windows Server 2003 R2 (32 bit). As soon as the extension installed it threw up some vague Install error and now on restart of VS it shows a dialog saying "Feature Builder Runtime - The environment variable LocalAppData must be manually configured for Windows XP and Windows Server 2003. Please visit http://channel9.msdn.com/tags/FeatureBuilder for more info".
 
Solution:
Right-click on the My Computer icon and choose Properties
Click Advanced
Click Environment Variables
Under User variables section, click New
In the Variable name: field, type LOCALAPPDATA
In the Variable value: field, type %USERPROFILE%\Local Settings\Application Data
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
AnswerCannot import schema for type {Type} from namespace ''. Redefine not supported. [modified] Pin
Monday, April 4, 2011 11:23pm by Wael Al Wirr
Define all includes prior to your primary xsd. Example:
 
c:\program files\microsoft sdks\windowsv\7.0a\bin; xsd.exe "c:\schemas\include1.xsd" "c:\schemas\include2.xsd" "c:\schemas\include3.xsd"
"c:\schemas\primary.xsd" /c
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/
modified on Wednesday, April 6, 2011 2:04 AM

 
AnswerBAM Add-in in office 2010 [modified] Pin
Tuesday, February 15, 2011 11:19pm by Wael Al Wirr
Missing BAM Add-in after upgrading to office 2010
 
1) go to Start -> All Programs -> Microsoft Office -> Microsoft Excel 2010
2) Click File -> Options -> Add-In -> Click Go
3) A window will appear listing all Add-ins check the Business Activity Monitoring and click ok
 
if Business Activity Monitoring is not listed
1) Click Browse
2) Navigate your installation DVD to \Msi\Program Files\ExcelDir
3) Select the BAM.xla
4) Click Ok
5) check the Business Activity Monitoring and click ok.
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/
modified on Wednesday, April 6, 2011 2:04 AM

 
General[System.Xml.Schema.XmlSchemaException] The targetNamespace attribute cannot have empty string as its value Pin
Saturday, February 12, 2011 10:24pm by Wael Al Wirr
You might get [System.Xml.Schema.XmlSchemaException] The targetNamespace attribute cannot have empty string as its value while going through BizTalk Web Services Publishing Wizard To solve this problem install BizTalk 2006 R2 Service pack 1
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=1768f7a3-d843-4f5b-aba7-b3d72892c16f&displaylang=en
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

 
GeneralThe remote certificate is invalid according to the validation procedure. Pin
Saturday, February 12, 2011 10:23pm by Wael Al Wirr
if you accessing a server that has an expired certificate you will receive the below security exception
System.Net.WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.
 
at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception exception)
 
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Net.TlsStream.CallProcessAuthentication(Object state)
at System.Threading.ExecutionContext.runTryCode(Object userData)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)
at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.ConnectStream.WriteHeaders(Boolean async)
 
you can skip the certificate by adding the below line to your code:
 
ServicePointManager.ServerCertificateValidationCallback += 
 
delegate(object ssender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) 
{ 
 
return true; 
}; 
Regards,
Wael Al Wirr
http://waelalwirr.sosblog.com/

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web03 | 2.6.130617.1 | Last Updated 18 Jun 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid