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 TouchToneTommy 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: *

  1. wolfie78uk

    JAXRPC Web Service Type Mapping

    Hi, We have recently migrated from JBuilder to Eclipse/Ant for Java Web Service creation and deployment. I am using the "wsdeploy" ant task (contained the in the JAXRPC 1.1 distribution) and a JAXRPC-RI.xml file for configuration. The problem I am having is that, when built using JBuilder...
  2. wolfie78uk

    XP Pro Systray Hang on Startup

    Hi, I have an annoying problem with a Windows XP (Version 2002) SP2 install on an Acer Aspire 1691WLMi laptop (Intel Pentium M 1.6, 512MB RAM). Basically, after logging in, the desktop and taskbar all load OK (I am even treated to the Windows login music) but nothing loads in the systray and I...
  3. wolfie78uk

    XSLT : Turning Siblings into Children

    Ooooops. Found the error (must remember to check code more thoroughly before posting replies). The offending line has been altered from: use="preceding-sibling::heading[1]/text()" /> to: use="preceding-sibling::heading[@level=1][1]/text()" See below: <?xml version="1.0"...
  4. wolfie78uk

    XSLT : Turning Siblings into Children

    Thanks for your help. After much trial and error, I have the following "solution" (I have never used modes and ,although the positioning solution works, I need something more flexible as in the final solution there may be many elements between headings): <?xml version="1.0"...
  5. wolfie78uk

    XSLT : Turning Siblings into Children

    Hi, Imagine that I have the following XML document: <article> <heading level="1">Heading1</heading> <heading level="2">Sub1</heading> <paragraph>1st <bold>block</bold> of info</paragraph> <heading level="1">Heading2</heading> <heading level="2">Sub2</heading> <paragraph>2nd...
  6. wolfie78uk

    Late binding with Remoting

    Hi, When using .NET remoting, it is my understanding that (because the client requires type information about the remote object) a copy of the assembly containing the remote object must be present on the client machine. Is this the case? If so, surely it defeats the object of using remote...
  7. wolfie78uk

    How do I perform basic memory management

    Hi Rick, Thanks for your reply. My reasoning for using C instead of C++ was that I would get greater speed (I do appreciate that I am reinventing the wheel ;-) ). Do you feel that the difference in performance is negligible? (I am certainly no expert on performance - I am just going on...
  8. wolfie78uk

    How do I perform basic memory management

    Hi, Having been programming in the sheltered word of .NET for a while, I appear to have forgotten how to perform the most basic of tasks in C and desperately require help. I want to store a list of words in memory that I can access quickly. Because all of the words will be of different...
  9. wolfie78uk

    Specifying application pool when deploying a web service

    Hi, Does anybody know how to specify which application pool a Web Service is installed into when using the Web Setup installation template in Visual Studio? Even better, could that application pool be created on the fly (perhaps in code that will run during the installation process?). I really...
  10. wolfie78uk

    Cannot execute .NET code on Terminal Services

    Cheers Rick. That solved it.
  11. wolfie78uk

    Cannot execute .NET code on Terminal Services

    Hi Rick, Thanks for your reply. I added an event log as early as possible in the code (although the call to the base class constructor has to come first) : 'Windows Form App : Public Sub New() MyBase.New() Dim EventLog1 As New EventLog If Not...
  12. wolfie78uk

    Cannot execute .NET app on Windows 2000 server using terminal services

    Hi, I am trying to deploy a .NET Windows Forms App on a Windows 2000 Terminal Server. The App does not write to the registry although, because it is a test harness for a web service, it does make a connection to a web service. Unfortunately, the application will not run for a...
  13. wolfie78uk

    Cannot execute .NET code on Terminal Services

    Hi, I am trying to deploy a .NET Windows Forms App on a Terminal Server. The App does not write to the registry although, because it is a test harness for a web service, it does make a connection to a web service. Unfortunately, the application will not run for a non-administrator user. It...
  14. wolfie78uk

    Why does Convert.ToBase64String not insert line breaks every 76 chars?

    Hi, Does anybody know why the method "Convert.ToBase64String" does not insert <CRLF> every 76 characters as per RFC2045. Obviously, this is extremely easy to overcome. I was just curious and wondered if there was some property I could set that would make this happen. I'm pretty new to C#...
  15. wolfie78uk

    Prevent freeform text from being entered in a combo box?

    Hi, Thanks for that. I have "Limit To List" set to Yes but it doesn't stop the user actually entering the text. The combo is just a lookup - no tables are updated as a result of any event or value on this combo box. Cheers, Si
  16. wolfie78uk

    Prevent freeform text from being entered in a combo box?

    Hi, I have a combo box, the values of which are provided by a query. Is there any way to stop users entering free-form text and forcing them to select one of the options on the list? Cheers, Simon
  17. wolfie78uk

    Cannot evaluate/set option button state

    Hi, I have an access form that consists of two "parts". The lower part of the form displays a datasheet and the upper part of the form provides the user with a bespoke interface for filtering the data. It is the filter that I am concerned with. The filter consists of a number of controls and...
  18. wolfie78uk

    Printing from a &quot;print preveiw&quot; view

    Hi, I have been asked to perfom some modifications to an application that I wrote a couple of years ago in Access/VB. Unfortunately, I have spent most of my time since programming in Java and have become VERY rusty in the ways of Access/VB. What I am trying to achieve should be very simple. I...
  19. wolfie78uk

    valid URL

    Hi, I have noticed that any URL beginning "file:\\" will return valid object. Most odd! If it is on the local file system then the following code will work : import java.io.File; .. .. File testFile = new File ("\test\t.txt"); if (!testFile.exists()) { //File doesnt exist }...
  20. wolfie78uk

    Java, JSP and Java Web Server ... What is the relation?

    Hi, The main purpose of this reply is to tell you that there is a forum on this site dedicated to the Java Web Server. Type "Java" into the forum search and you wil get a list up. Java Web Server is amongst them. With regard to your other questions : 1) Do you mean that you want to understand...

Part and Inventory Search

Back
Top