Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: blondebier
  • Content: Threads
  • Order by date
  1. blondebier

    Manage SSL certificate across multiple servers

    Hi Guys, We run a network in a datacenter to host some of our software. Currently we have a ssl certificate that is installed on a web server and this works ok. Maintenance and updates are a bit of a nightmare though and this prevents us from running a 24 hour operation. We now have the need...
  2. blondebier

    SQL Server 2005 XML exists query question

    Hi Guys, I'm trying to pull together a query on an XML document in SQL Server 2005. I have some XML like this : <test_xml> <element1 attribute="A" /> <element2 attribute="B" /> <element1 attribute="C" /> <element2 attribute="D" /> </test_xml> Basically I want to find out...
  3. blondebier

    Referencing Dynamic XML elements in my Business Rules

    Hi Guys, I'm pretty new to the Business Rules functionality in BizTalk Server 2006 R2 and I have hit a bit of a problem... Referencing XML in Biz talk is a breeze if you have an XSD. You simply pick off the elements you want and evaluate them using predicate operators. What happens though if...
  4. blondebier

    Mailbox still has mail after Send/Receive

    Hi Guys, Got a bit of a funny one here. I've been looking at the Mailboxes I have configured in "Recipient Configuration" for each user. If I look at the properties of a mailbox it says things like : Total items : 19 Size (KB): 1325 This is after a user has done a "Send/Receive" from...
  5. blondebier

    Email arrives on client marked with &quot;Default reply address&quot;...

    Hi Guys, We've just "upgraded" from Mailenable to Exchange 2007. Our Mail Server handles email for quite a few domains as we run various businesses out of one office. I have configured all 10 domains in the "Accepted Domains" list in the Hub Transport node of the "Organization". I then...
  6. blondebier

    Manage workstation backups from a GPO

    Hi Guys, What's the best way of managing data backups on work stations. Ideally I'd rather not have the user have to do anything and run this all from a GPO in Server 2008. I've not done this before and I'm not sure where to start. Any tips would be most welcome. Cheers, Blondebier
  7. blondebier

    Prevent certain users from logging onto computers and servers

    Hi Guys, We have recently created a new domain using Windows Server 2008. As part of this setup our infrastructure requires some application accounts to be configured in AD for running windows services, web services and other programs we have created. We don't want these accounts to be able...
  8. blondebier

    VPN replacement solution... Advice required

    Hi Guys, We currently have an infrastructure where we have some servers at a datacentre and we have a network at our office. These are two separate domains. We have a Sonicwall setup at the datacentre and we use monowall installed on a soekris box to manage the VPN between the office and the...
  9. blondebier

    How to wrap a third party component in a new assembly

    Hi Guys, I have a few third party components that I want to use in a project. (They are all .Net 2 assemblies) Instead of having to add references to all of them, I'd really like to be able to create a custom assembly with only the functions that I want and then just add a single reference to...
  10. blondebier

    Validate XML when XML and XSD are both strings

    Hi Guys, I've written a little class that takes two parameters XMLtoValidate and XSD as strings. See here : Imports System.IO Imports System.Xml Imports System.Xml.Schema Public Class ValidateXMLTest Dim schemaError As String ' Validates XML against XSD - returns error if found...
  11. blondebier

    Validate XML on the fly in SQL Server 2005...?

    Hi Guys, I am sending some XML to a stored procedure via an XML parameter. I am storing the XSDs (schemas) for these XML documents in a table. (Also XML datatype) I'd really like to be able to read the schema and validate the XML documents on the fly... Anyone ever done this or know of a cool...
  12. blondebier

    How to upgrade Image column in 2000 to NVarChar(max) in 2005

    Hi Guys, Completely out of my depth here... just found that the image datatype will be phased out in future releases of Sql Server. We're now using Sql Server 2005 and have an old database with a table called Notes. 2 columns PK NoteID int, Notes image I'm upgrading an old .net application...
  13. blondebier

    Threadsafe WebService log

    Hi Guys, I have a vb.net WebService that has recently started getting very busy. This is good, but we now realise that the activity/error logging class that we have is not suitable as it is not thread safe. This is an example of my Activity Log. 06/11/2007 14:38:55 LIVE: Start CheckAddress...
  14. blondebier

    ScriptManager RegisterAsyncPostBackControl doesn't seem to work...

    Hi Guys, I have a master page in my solution with a script manager that should catch the click event of a button on it. i.e. ScriptManager.GetCurrent(Me.Page).RegisterAsyncPostBackControl(Me.TestButton) I then have the code for my test button: Protected Sub TestButton_Click(ByVal sender As...
  15. blondebier

    Stop Web form displaying HTML

    Hi Guys, This problem has been driving me insane for a day now. Basically what I am trying to do is display a XML document in my application like it would appear if you opened a XML file in your browser. I have my XMLDocument and I set this to a Session variable. I then redirect to another...
  16. blondebier

    Persisting MasterPage content in client browser between PostBacks

    Hi Guys, As the title says, I'm looking for some way of making content from my MasterPage remain static and only change the content when the page is posted back to the server. I have a header and a footer on my master page that remains completely static. Is it possible to keep these on the...
  17. blondebier

    SQL Server 2005 XQuery insert into namespace problem

    Hello Peeps, Sorry about the subject description: I'll try and explain... I've got a stored procedure in SQL Server 2005 and I need to use the new XQuery funtionality to modify an XML document. I am trying to insert some new nodes into an existing document that has a namespace. I create my...
  18. blondebier

    Defining SqlDbType.Xml SqlParameter needs a size. Why?

    Hi Guys, I'm calling a stored procedure from my VB.NET application and it passes the following SQLParameters. sdiParameters(0) = New SqlParameter("@RequestXML", RequestXML.InnerXml) sdiParameters(0).SqlDbType = SqlDbType.Xml sdiParameters(0).Size = RequestXML.InnerXml.Length sdiParameters(1) =...
  19. blondebier

    Web Service Activity Log

    Hi Everyone, I have a .net webservice which takes requests as a string of XML. It does some processing and returns a response. (Nothing fancy there.) I have written a function to keep a log of all web service activity so I can keep track of everything that happens in case an exception or error...
  20. blondebier

    Looping through XML is SQL Server 2005

    Hi Guys, I'm passing a string of XML as an nvarchar to a stored procedure. I then convert the string to XML using: SET @XML = CONVERT(xml, RTrim(@ApplicantDetailsXML)) My Applicant Details XML may look like this: <?xml version="1.0"?> <Applicant> <Title>Mr</Title>...

Part and Inventory Search

Back
Top