Posts

How to delete the specific node from the xml file ?? keeping child node as it is

hi , this xml , need delete specific node form following xml file. wants delete node <aniruddha> following xml. <?xml version="1.0" standalone="yes"?> <dataset> <customer> <id>0</id> <item>item0</item> <aniruddha xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:xsd="http://www.w3.org/2001/xmlschema"> <aniruddha> <id>1</id> <name>aniruddha</name> </aniruddha> </aniruddha> </customer> my output sholud looks <?xml version="1.0" standalone="yes"?> <dataset> <customer> <id>0</id> <item>item0</item> <aniruddha> <id>1</id> <name>aniruddha</name> </aniruddha> </customer> can me ? thnx in adnavce move child nodes parent node, remove anir...

Error while implementing interfaces

hello, i trying develop plugin indexing pdf files using seekafile server 1.5 beta2, open-source indexing server written purely in .net. the class name pdfplugin(in namespace pdfplugin). class inherits interface named idocumentplugin( part of seekafile.plugin namespace). class file follows: using system; using system.io; using system.windows.forms; using lucene.net.analysis; using lucene.net.documents; using org.pdfbox.pdmodel; using org.pdfbox.util; using seekafile.plugin; namespace pdfplugin {     public class pdfplugin : seekafile.plugin.idocumentplugin     {         public pdfplugin()         {         }                public string getbody(string path)         {             pddocument pdfdoc = new pddocument();             pdfdoc = pddocument.load(path);             pdftextstripper stripper = new pdftextstripper();             return stripper.gettext(pdfdoc);         }                 #region idocumentplugin members         public analyzer analyzer(string path)         {           ...

ezt miért kaptam?

  a outlook nem tudta v%c3%a9grehajtani k%c3%a9r%c3%a9st. a(z) microsoft felveheti kapcsolatot %c3%96nnel bejelentett probl%c3%a9m%c3%a1k %c3%bcgy%c3%a9ben. can translate english please? lev nachmanson Microsoft Research  >  Microsoft Automatic Graph Layout

Biztalk Schema Deployment Error

hi i have got error in processing message there failure executing receive pipeline: "microsoft.biztalk.defaultpipelines.xmlreceive, microsoft.biztalk.defaultpipelines, version=3.0.1.0, culture=neutral, publickeytoken=31bf3856ad364e35" source: "xml disassembler" receive port: "tlspackpoolxml" uri: "\\logistik\nefab$\*.xml" reason: finding document specification message type "tefmessage" failed. verify schema deployed properly.  at starting transmitted  later showed me above error what may reason , how solve it  , not error in future   waiting reply , reply appreciated madhusudhan hi madusudan, if biztalk is receiving message corresponding schema not deployed biztalk receive pipeline throw error "finding document specification message type "tefmessage" failed. verify schema deployed properly." if drop message of differenct format corresponding schema not deployed throw e...

Errors in the Standard Office 365 App Solution as Generated by Visual Studio ?

hi i in process of creating task pane app office in excel , trying round bugs (probably own fault!!) however, found there exceptions thrown debug run on standard solution provided in vs project set-up procedure. to precise, procedure used was: 1 file > new > project 2 on new project window expand templates > visual c# > office/sharepoint apps > 3 select graphic "app office" , complete local installation (not added source control) of task pane based soltion. office applications left selected. once the base solution has been built, basic framework standard task pane app continue developing. standard is operational, can debugged without further user code being added it. tried this. app runs and launches excel 2013 with basic pane button collect data selected cell. putting data in a cell , pressing button provides correct answer (reported back at bottom of pane). however, if output window activated, fol...

can webservice raise error at client side?

hi i new asp.net web services. i have developed websevice using vb , soap, raising error @ client side writting  err.raise in service.   is there similar this in asp.net  web services?   thanks sandy hi, you have create instance of exception object , have throw that.for ex: throw new exception("new exception");   see http://msdn2.microsoft.com/en-us/library/ms173160(vs.80).aspx for more info exceptions & exception handling.   thanks, ch.t.gopi kumar. Archived Forums A-B  >  ASMX Web Services and XML Serialization

How to deploy certs to local service fabric cluster

i'm trying run identity server 1 of stateless web services in service fabric cluster. 1 of issues i'm having don't want deploy x509 certificated needed identity server code, , of resources online cite azure keyvault facilitator key storage service fabric environment, , setting deployment pull certificate in key vault vms in cluster provisioned (as referenced here https://blogs.technet.microsoft.com/kv/2015/07/14/deploy-certificates-to-vms-from-customer-managed-key-vault/) i'd able provision local service fabric dev cluster in such way isn't dependent on key vault if possible. haven't been able find reference online - there way can set powershell script update nodes in local cluster contain certificate @ deploy time? apologize if silly question, i'm getting in service fabric , might missing obvious solution. thanks! strictly speaking, node our service fabric system host process (fabric.exe et al). use "node" , "vm" or "mac...