Search

You searched for the word(s): userid:810767

Matching Posts

  • Re: Need a regular expression

    The incoming string can either be an URL or any text. The implementations are different based on the kind of input parameter. Hence I wanted to evaluate the URL with a regular expression.
    Posted to C# (Forum) by wwwnet on 10/29/2009
  • Need a regular expression

    Need a regular expression for this url. udp://123 .1.2.3:1234 . URL protocol is either ‘udp’ or ‘norm’, and the port number is a integer in the range 1 – 65535
    Posted to C# (Forum) by wwwnet on 10/28/2009
  • Re: Need a regular expression

    Java string = "^(udp|norm)://(?:(?:25[0-5]|2[0-4]\\d|[01]\\d\\d|\\d?\\d)(?(?=\\.?\\d)\\.)){4}:\\d{1,5}$" Tested this expression at http://74.125.47.132/search?q=cache:p6Ycxz7QHWYJ:www.fileformat.info/tool/regex.htm+regex+expression+test+online&cd=1&hl=en&ct=clnk&gl=us Error: Unknown inline modifier near index 54 ^(udp|norm)://(?:(?:25[0-5]|2[0-4]\d|[01]\d\d|\d?\d)(?(?=\.?\d)\.)){4}:\d{1,5}$ ^ Also, can port number also be evaluated if it is within range. Thanks.
    Posted to C# (Forum) by wwwnet on 10/28/2009
  • Re: Need a regular expression

    ^(udp|norm)://(?:(?:25[0-5]|2[0-4]\\d|[01]\\d\\d|\\d?\\d)(?(?+\\.?\\d)\\.)){4}:(6553[0-5]|655[0-2][0-9]|65[0-4][0-9][0-9]|6[0-4][0-9][0-9][0-9]){1,5}$ Is this expression valid? I don't see any results in the result pane.
    Posted to C# (Forum) by wwwnet on 10/28/2009
  • Re: Need a regular expression

    Thanks it works. Guessed the implementation should be the same in Java or .NET.
    Posted to C# (Forum) by wwwnet on 10/28/2009
  • minOccurs in WSDL set to 0 for a string which is required

    I have a webmethod which has string parameters passed to it. These are required parameters. But in the WSDL minOccurs is set to 0. Is there any way to change the default behaviour?
    Posted to XML Web Services (Forum) by wwwnet on 7/2/2009
  • Re: Xml Schema

    Two of my classes are referencing the same schema. When I build my code I get this error. Few hints on what might have caused this error would be helpful. Server Error in '/SWSCode' Application. -------------------------------------------------------------------------------- Cannot merge schemas with targetNamespace='http://ccur.com/SWS/TitleService'. Several mismatched declarations were found: Schema item 'complexType' named 'MatchingType' from namespace 'http
    Posted to XML and XmlDataSource Control (Forum) by wwwnet on 10/21/2008
  • Xml Schema

    Can two different classe rerence the same schema? One class is referencing to parse it's request and another class to format it's response.
    Posted to XML and XmlDataSource Control (Forum) by wwwnet on 10/20/2008
  • Re: Unable to load c++ dll in c# managend code environment

    One more addition to my post is if I give the whole path to the dll in the DLLIlmportAttribute it works fine, but just [ DllImport ( "Management.dll" )] static public extern IntPtr CreateInstance(); doesn't work.
    Posted to C# (Forum) by wwwnet on 8/5/2008
  • Re: Unable to load c++ dll in c# managend code environment

    Thanks Prashant for your response. I did implement my code as described in Dinesh Ahuja's article. I added the dll of the unmanaged component in C# bin folder. It doesn't showup in the object browser. I tried to register the dll using RegSrv32.exe and the error which shows up is " DLLRegisterServer entry point not found". This file cannot be registered Not sure if I am on the right track, but trying to figure out the cause of the error......... System.DllNotFoundException: Unable
    Posted to C# (Forum) by wwwnet on 8/5/2008
Page 1 of 2 (13 items) 1 2 Next >