Posts

Showing posts from January, 2011

xml - Android: Possible Bug in Android -

Image
i have 2 views using arrange buttons on screen. screen size seeing result on moto g in landscape mode - 640dp * 360dp . problem - buttons arranging them according view id=center_parent instead of the 1 id=left_corner <?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <view android:id="@+id/center_parent" android:layout_centerinparent="true" android:layout_width="0dp" android:layout_height="0dp"/> <view android:id="@+id/left_corner" android:layout_width="0dp" android:layout_height="0dp" android:layout_toleftof="@+id/center_parent" android:layout_marginright="165dp" android:layout_above="@+id/center_parent" ...

maven - Generate Java class based on XSD without block substitution? -

i getting below error while maven build using jaxb(maven-jaxb2-plugin) compiler a class/interface same name "org.somepackage.customer" in use. use class customization resolve conflict. @ com.sun.tools.xjc.util.codemodelclassfactory.createclass(codemodelclassfactory.java:121) @ com.sun.tools.xjc.util.codemodelclassfactory.createclass(codemodelclassfactory.java:82) @ com.sun.tools.xjc.generator.bean.implstructurestrategy$1.createclasses(implstructurestrategy.java:82) @ com.sun.tools.xjc.generator.bean.beangenerator.generateclassdef(beangenerator.java:437) @ com.sun.tools.xjc.generator.bean.beangenerator.getclazz(beangenerator.java:469) @ com.sun.tools.xjc.generator.bean.beangenerator.<init>(beangenerator.java:194) @ com.sun.tools.xjc.generator.bean.beangenerator.generate(beangenerator.java:166) @ com.sun.tools.xjc.model.model.generatecode(model.java:290) @ org.jvnet.mjiip.v_2_2.xjc22mojo.gen...

c# - Is there other way to hide the password in textbox (***) aside from textboxmode="password"? -

it seems if use textmode="password" it changes size of textbox , placeholder text style. doesn't match other textboxes made. although work me, curious if there way make happen avoid ruining design. thanks! <div class="form-group" style= "float:left"> <asp:textbox id="txtpw" runat="server" name="form-password-name" width="200px" placeholder="password..." class="form-password form-control" textmode="password"></asp:textbox> <asp:regularexpressionvalidator id="regularexpressionvalidator6" runat="server" errormessage="only letters , numbers allowed" display="dynamic" controltovalidate="txtpw" forecolor="red" validationexpression="^[a-za-z0-9]+$"> </asp:regularexpressionvalidator> <asp:requiredfieldvalidator id="requir...

c - Segmentation fault with ulimit set correctly -

i tried op on this question . i found out code 1 below causes segmentation fault randomly if stack set 2000 kbytes. int main () { int a[510000]; a[509999] = 1; printf("%d", a[509999]); return 0; } as can see array 510000 x 4 bytes = 2040000 bytes. the stack set 2000 kbytes (2048000 bytes) using ulimit command: ulimit -s 2000 ulimit -ss 2000 based on numbers application has room store array, randomly return segmentation fault. any ideas? there's few reasons why can't this. there things using parts of stack. main not first thing on stack. there functions called real entry point, dynamic linker, etc. before main , using of stack. additionally, there can things put on top of stack set execution. many systems know put strings in argv , environment variables on top of stack (which why main not entry point, there's code runs before main sets environment variables , argv main). and top off part of stack can deliberately w...

javascript - not able to run linkedin company profile script -

i copied code link( https://developer.linkedin.com/plugins/jymbii ) giving company name , clicking code button. generated code given below <script src="//platform.linkedin.com/in.js" type="text/javascript"></script> <script type="in/jymbii" data-companyid="5818" data-format="inline"></script> i pasted code in tag of html file , run html file in chrome, firefox , ie, browser gave blank page output. how should use in jsp/html file, generate job-posting feed. please me. just add 2 script tags in <body> tag. if have added them in <head> tag not work

Template deduction interesting case, c++ -

consider peace of code: template<class t> void f(const t& t) { static int x = 0; cout<<++x<<endl; } int main() { int j = 0; const int = 0; f(5); f(i); f(j); } i have called function 3 types. although 5 , j can same thing, int, const int different type. anyway output is: 1 2 3 so means compiler instantiates same function different types. correct? can explain why? from [temp.deduct.call]: template argument deduction done comparing each function template parameter type (call p) type of corresponding argument of call (call a) described below. p const t& , a int , int , , const int in 3 calls. we have: if p reference type, type referred p used type deduction. p reference type, use p' == const t deduction against a == int or a == const int . in both cases, deduce t == int p' == const int (and p == const int& ) , deduced a == const int . more cv -qualified original a first 2...

ios - Error when posting header data and x-www-form-urlencoded data -

Image
the data working in postman app not working in below code i.e getting error mentioned @ bottom. cannot understand error in code. in advance. below screenshots of postman data: headers: body: below code: nsmutableurlrequest *request = [nsmutableurlrequest requestwithurl:[nsurl urlwithstring:@"https://apifm.azurewebsites.net/api/checkout/checkoutorders"]]; // specify post request request.httpmethod = @"post"; [request setvalue:@"application/x-www-form-urlencoded" forhttpheaderfield:@"content-type"]; [request setvalue:@"application/json" forhttpheaderfield:@"accept"]; [request setvalue:@"bearer vmueufkfbsafmghchyvvepnn7pwj80rdpsbej7gpvtafq9p6ohdfkepqcei3dippau3rthqntrrqbktaqur4rifiew05dekwhhablvbbbwm8vzx9hgd9asmv-crehqbtknglvvt7nuyxn1lssdorsa4ut0jvxyzezramyglayllet9qwrlkcca1_rm9gj_kzfzoag6vwp70jn0ujahqchpnlb1ape_kjmlxiqwv0ajyaigr4qwsownvyiv8qdhuhvsoaqfpcipkuviyg5fmpkyfletswjptbf5tzhedp_kbg6xaipb7pfjqtbxzyvj...

database - Join multiple column with single row using mySql -

i have query results in single row like: (table_1) | col_1 | col_2 | col_3 | row->1 | | b | c | another query results in 2 rows like: (table_2) | col_1 | col_2 | row->1 | | x | row->2 | | y | common value both table col_1(a). need like: | col_1 | col_2 | col_3 | col_4 | col_5 | | | b | c | x | y | please provide simplest way achive this. you can try it- select a.col_1,a.col_2,a.col_3, (select b.col_2 table2 b b.col_1=a.col_1 limit 1) col_4, (select b.col_2 table2 b b.col_1=a.col_1 limit 1,1) col_5 table1;

java - ui4j NullPointerException when calling javascript window.scrollTo -

i'm testing website using ui4j. when execute page.executescript("window.scrollto(0,document.body.scrollheight)"); to scroll end of page following nullpointerexception: exception in thread "javafx application thread" java.lang.nullpointerexception @ com.sun.javafx.webkit.theme.scrollbarthemeimpl.getthumb(scrollbarthemeimpl.java:400) @ com.sun.javafx.webkit.theme.scrollbarthemeimpl.thumbposition(scrollbarthemeimpl.java:284) @ com.sun.javafx.webkit.theme.scrollbarthemeimpl.getthumbposition(scrollbarthemeimpl.java:380) @ com.sun.webkit.webpage.twkexecutescript(native method) @ com.sun.webkit.webpage.executescript(webpage.java:1427) @ javafx.scene.web.webengine.executescript(webengine.java:948) @ com.ui4j.webkit.spi.webkitjavascriptengine.executescript(webkitjavascriptengine.java:26) @ com.ui4j.webkit.browser.webkitpage.executescript(webkitpage.java:231) @ com.ui4j.webkit.browser.webkitpage$bytebuddy$sjiflxwz.executescrip...

java - Apache cxf Marshalling error : class ** nor any of it s super class is known to this context -

i writing client using apache cxf existing old web service. in wsdl there complex section <xs:complextype name="payloadtype" mixed="true"> <xs:sequence> <xs:any namespace="##any" processcontents="lax" minoccurs="0"/> </xs:sequence> <xs:attribute name="id" type="xs:id" use="required"/> <xs:attribute name="filename" type="xs:string" use="optional"/> </xs:complextype> and passing jaxb bean in array payloadtype . payload type definition this <xs:complextype name="abc.xyz"> <xs:sequence> <xs:element name="code" type="cv" minoccurs="1" maxoccurs="1"/> .... </xs:complextype> and generated java class this @xmlaccessortype(xmlaccesstype.field) @xmltype(name = "abc.xyz", proporder = { ...

JavaScript not getting function returns in Node.js -

i have made irc bot purely learning purposes have minecraft server use api status json. have made code , works reason when try , use return on function can content seems not work? so have 2 functions below: function getservers(name) { if (name == "proxy") { var request = unirest.get(proxy); request.header('accept', 'application/json').end(function (response) { main = response["raw_body"]; data = json.parse(main); console.log(data["motd"]); return data.motd; }); } else if (name == "creative") { var request = unirest.get(creative); request.header('accept', 'application/json').end(function (response) { main = response["raw_body"]; data = json.parse(main); return data; }); } else if (name == "surviva...

hadoop - How to import data into Hive warehouse from SQL Server 2014 (Unicode) for specific schema -

i want import data sql server , query hive. i created virtualbox using cloudera template , started reading tutorial. i able import data sql server using sqoop avro files , create table in hive , import data avro file. query hive. but import-all-tables command of sqoop imports table of schema "dbo". if want import tables schema dw also? tried use import command import specific table exist in dw schema. doesn't work. any idea how import data sql sever using sqoop non dbo. schema related tables avro? or import data sql server other dbo. schema , load directly hive? download jdbc driver , copy sqoop directory $ curl -l 'http://download.microsoft.com/download/0/2/a/02aae597-3865-456c-ae7f-613f99f850a8/sqljdbc_4.0.2206.100_enu.tar.gz' | tar xz $ sudo cp sqljdbc_4.0/enu/sqljdbc4.jar /var/lib/sqoop/ import table sql server using sqoop sqoop import --driver="com.microsoft.sqlserver.jdbc.sqlserverdriver" --connect="jdbc:sqlserve...

java - WildFly 8.2 and 304 Not Modified -

rfc 2616 - "all 1xx (informational), 204 (no content), , 304 (not modified) responses must not include message-body." after upgrading wildfly 8.2 jboss 5.1, load balancer (written netty 4.0) broke. cause - wildfly sends response message-body on 304 error: <html><head><title>error</title></head><body>not modified</body></html> netty in accordance rfc 2616 reads header 304, ignore not 0 content-length , left body in socket, error on second read same channel. i can fix changing response.senderror(304) response.setstatus(304), want know, possible configure wildfly not send message-body on 304 not modified error? technically, 2xx , 3xx not errors. response codes in ranges 4xx , 5xx errors (client errors , server errors, respectively). so, i'd argue setstatus indeed correct one. as telling server sending error, not including body, server including 1 itself. because errors (4xx , 5xx) have requirement: ...

jquery - Text on each image in image carousel -

Image
i want change text on each image in image carousel. i've tried using separate <div> each image, it's still not working. type of image carousel: space gallery source code available. not able implement desired. possible solution? <div id="mygallery" class="spacegallery"> <div> <img src="images/bw3.jpg" alt="" /> <!--this text want put--> <p class="gh"><strong>here</strong></p> </div> <img src="images/lights3.jpg" alt="" /> <img src="images/bw2.jpg" alt="" /> <img src="images/lights2.jpg" alt="" /> <img src="images/bw1.jpg" alt="" /> <img src="images/lights1.jpg" alt="" /> </div...

mysql - how to display all values in multiple columns in SQL query -

Image
i trying display information different tables in database. 1 of these tables called job_pieces. in table there fields id, companyid , piecetype. each company can have many id , piecetypes. not know how many piecetypes each company has. small example companies have 30 piecetypes. here sample database: http://www.sqlfiddle.com/#!9/6d528/2 select c.name, count(distinct jn.id) jobs group_concat(distinct jp.piecetype) allpiecetypes, jp.piecetype piecetype customer c left join job_new jn on c.jobid = jn.id left join job_pieces jp on jn.jobid = jp.jobid c.company_id = compid group c.id there result of query this: i added line group_concat can see piecetypes jobs have. in query need display jobs , piecetypes company has. problem column piecetype. can see in image on first row displaying 1 type, when there should 4. , want each piecetype separate column, this: splitting allpiecetypes columns separate columns each piece seems difficult thing, s...

spring - How to search and auto-register all beans under a specific package -

i have x number of beans under base-package com.mypackage.basepackage. what trying auto-scan package , register beans applicationcontext beandefinitionregistrypostprocessor . here how trying this. public class beanregistrar implements beandefinitionregistrypostprocessor { @override public void postprocessbeanfactory(configurablelistablebeanfactory beanfactory) throws beansexception { } @override public void postprocessbeandefinitionregistry(beandefinitionregistry registry) throws beansexception { //loop n-number of times , register scanned beans. beandefinition beandefinition = new rootbeandefinition(scannedbeans.class, autowire.by_type.value(), true); registry.registerbeandefinition("beanname", beandefinition); } } what want loop on com.mypackage.basepackage , beans , register them. i know can scan basepackage <context:component-scan base-package="com.mypackage.basepackage" /> use...

Crop image and place it in image view in android -

my aim set circular profile pic app.user can crop image , place profile pic. code can crop pic unable place in image view.please !!! please find code below: intent photopickerintent = new intent(intent.action_pick, android.provider.mediastore.images.media.external_content_uri); photopickerintent.settype("image/*"); photopickerintent.putextra("crop", "true"); photopickerintent.putextra("return-data", true); photopickerintent.putextra("outputformat", bitmap.compressformat.jpeg.tostring()); startactivityforresult(photopickerintent,select_picture_profile); } protected void onactivityresult(int requestcode, int resultcode, intent imagereturnedintent, intent data) { super.onactivityresult(requestcode, resultcode, imagereturnedintent); switch (requestcode) { case select_picture_profile: ...

python - IndexError: list index out of range when running on ubuntu -

i getting indexerror: list index out of range while reading register values description in following code. import os, sys, csv path_map = "./desc.csv" cmd_e2 = "./ext_desc.txt" e_bytes = 512 result_path = "./result/" f_e_mapping = open(path_map, 'r') val_e = os.popen(cmd_e2).readline()[:-2] curpos = e_bytes*2 write_result.writerows(('', '')) write_result.writerow(('', '', 'ecxstd')) line_e in f_e_mapping: tok_e = line_e[:-1].split(",") print (tok_e) try: cursize = int(tok_e[2], 10) value = "" xy in range(0, cursize): curpos = curpos - 2 value = value + val_e[curpos: curpos + 2] except valueerror: value = "" # strip off right number of bytes write_result.writerow((tok_e[0], tok_e[1], tok_e[2], tok_e[3], tok_e[4], value)) please in resolving indexerror seen in line cursize = int(tok_e[2], ...

javascript - Highlighting selected fields in dynamically added rows makes them disappear -

Image
note: please no jquery answers, need head around javascript first. so have added rows table through insertrow(-1). when try table via getelementbyid , change background color of field, works fine first added row: "dates[ 4 ].style.backgroundcolor = '#ff0000';" but not second added row or thereafter, disappear: "dates[7].style.backgroundcolor = '#ff0000'; i trying highlight current day (will replace numbers 4/7 variable) i'm not sure whats happening, shed light please? javascript <script type="text/javascript"> var currenttime = new date() var month = currenttime.getmonth() + 1 var day = currenttime.getdate() var year = currenttime.getfullyear() var hour = currenttime.gethours() var min = currenttime.getminutes() //document.write(month + "/" + day + "/" + year) var test = currenttime.getday(); var day = currenttime.getdate()+1; var month = currenttime.getmonth(); var full_year = currenttime.getf...

c# - Assigned text to label doesn't get updated -

so function serves ajax call: public void button1_click(object sender, eventargs e) { button1.text = "surprise"; label1.text = "surprise!!"; label2.text = "surprise!!"; } this aspx . scriptmanager set. <p>síðast slóstu inn: <asp:label id="label1" runat="server" text=""></asp:label> <asp:label id="label2" runat="server" text=""></asp:label> </p> <asp:updatepanel id="updatepanel1" runat="server"> <contenttemplate> <asp:textbox id="textbox1" runat="server">asd</asp:textbox> <asp:textbox id="textbox2" runat="server">dsa</asp:textbox> <asp:button id="button1" runat="server" text="save" onclick="button1_c...

xslt - Chinese locale removes question mark from URL -

after further analysis, have found problem while rendering webpage or xsl file. when "view source" find in url "?" replaced " ". i mean, have written line in xsl something.asp?name=sameer when "view source", same line displayed something.asp&nbsp;name=sameer this happens if windows locale chinese. not happen english

ios - Show only completely visible UITableViewCells -

Image
i have custom tableview, way it's designed makes bottom , top part ugly when half of cell visible. see picture reference: i want bottom part (and top after crolling) visible when can see 100% of cell. i tried check if cells visible, believe cellforrowatindexpath creates reusablecells when it's partly visible , isn't called again when it's visible: func tableview(tableview: uitableview, cellforrowatindexpath indexpath: nsindexpath) -> uitableviewcell { var mycell:choosestorycell = tableview.dequeuereusablecellwithidentifier("cell", forindexpath: indexpath) as! choosestorycell var cellrect = self.tableview.rectforrowatindexpath(indexpath) var completelyvisible = cgrectcontainsrect(self.tableview.bounds, cellrect) if completelyvisible == true { mycell.hidden = false mycell.backgroundcolor = color.sharedcolors().colorsarray[5] mycell.storylabel.text = stories[indexpath.row].name mycell.circleview.la...

cmake - Does intall target always depends on ALL_BUILD target in a C++ project -

i ask question out of curiosity. when build c++ project cmake, contain 2 targets: all_build install if understand well, install target depends on all_build, , have counter-examples not follow rule? thanks

android - Error inflating navigation view from support library -

i trying out new support library navigation drawer. read tutorial , implemented code said. i'm getting error: process: myapp.application, pid: 29645 java.lang.runtimeexception: unable start activity componentinfo{myapp.application/myapp.application.mainactivity}: android.view.inflateexception: binary xml file line #20: error inflating class android.support.design.widget.navigationview @ android.app.activitythread.performlaunchactivity(activitythread.java:2341) @ android.app.activitythread.handlelaunchactivity(activitythread.java:2403) @ android.app.activitythread.access$800(activitythread.java:154) @ android.app.activitythread$h.handlemessage(activitythread.java:1306) @ android.os.handler.dispatchmessage(handler.java:102) @ android.os.looper.loop(looper.java:135) @ android.app.activitythread.main(activitythread.java:5274) @ java.lang.reflect.method.invoke(native method) ...

How to delete a line which starts with a * using regex in R -

i using regex in r delete line starts * such as: * wikipedia started public domain version reprinted [http://www.ccel.org/ christian classics ethereal library]. * james william richard (1898). [[internet archive]]. * [http://www.melanchthon.de/e/ phillip melanchthon quinquennial] and tried use function gsub , regex expression like: gsub("^[\\*]+[\\s\\[a-za-z,;'\"\\s]+[.?!\\]]$","",tex1) but nothing happened. please me figure out problem expression? to delete line starts * sub("(?m)^\\*.*\n?", "", x, perl=t)

Excel date change VBA Issue -

Image
i'm trying make macro change name of current sheet open in excel. its taking information cell contains date in future cause format of date dd/mm/yyyy wont import it. i'm trying display 11th august 2011 or that. have got far , can't seem find on web. sub changesheetname() newname = range("d2") activesheet.name = newname end sub you can use newname = range("d2").text date. editted: take note date format in cell need changed

ios - Using an Objective-C SDK in a C++ class -

i have c++ project needs make use of objective-c sdk. idea create c++ class in .mm file contains calls sdk in objective-c syntax. declare instance of class in existing c++ project (which has .cpp files). will work? gather, ".mm" file objective-c++ file, can make calls objective-c functions? can cpp file instanciate class defined in .mm file? define class in header , include in both objective-c++ file defines members of class , c++ file uses class. if need store objective-c types, wrap them in opaque structure. illustration: "c.h": class c { public: c(); void foo(); private: struct data; data* m_data; }; implementation in objective-c++: #include "c.h" struct c::data { sometypeinyoursdk* thing; }; c::c() { m_data = new data; m_data->thing = [sometypeinyoursdk createsomehow]; } void c::foo() { [m_data->thing dosomething]; } use in c++: #include "c.h" voi...

apache-solr apache-tika indexing documents. Slow speed -

i have 4gb ram. running solr on 3gb memory. i extracting text , meta data using apache-tika server (tika-server.jar). files taking longer time usual. 20 mb file taking 2 - 3 minutes. my server hosted on amazon cloud. running ubuntu 14.04. i have tested on local machine extracts data same file in 1-2 secs. is there special configuration needed amazon cloud instance. local machine has 4gb ram mac os. i using tika-python index documents. i have around 1 million documents in different file formats (pdf,htlm,doc,ppt,xml,txt) please suggest remedy or alternative solution apache-tika. thanks my system has ubuntu without libre office installed in it. slow indexing happening .doc files only. is there alternative solution parse full text , meta data ms office files (doc, docx, etc). give better speed.

python - Django foreign key as dropdown choice with optgroups -

i have following django models: class basemodel(models.model): uuid = uuidfield() created = models.datetimefield(auto_now_add=true, null=true) modified = models.datetimefield(auto_now=true, null=true) class meta: abstract = true class company(basemodel): title = models.charfield(_(u'title'), max_length=128) class profile(basemodel): company = models.foreignkey(company, verbose_name='company') user = models.onetoonefield(user, verbose_name='user', null=true, blank=true) class servicecategory(basemodel): company = models.foreignkey(company) title = models.charfield(_(u'title'), max_length=64) class service(basemodel): category = models.foreignkey(servicecategory) title = models.charfield(_(u'title'), max_length=64) as can see, each servicecategory has company foreign key. company used group users (each user have one2one relation profile, company foreign key profile. anyway, need for...

php - I want to destroy session like IRCTC or SBI when close the tab of browser -

i want destroy session irctc or sbi when close tab of browser. have tried ini_set('session.use_cookies',0) clear session when browser closed not when tab closed. i have tried jquery unload() method , onbeforeunload() still not working.pls me.

Boto: upload to Amazon S3 OK, but upload to Google Cloud Storage: 'str' does not support the buffer interface -

i using exact codes upload files amazon s3 , google cloud storage, respectively, using boto: import boto filename = 'abc.png' filenamewithpath = os.path.dirname(os.path.realpath(__file__)) + '/' + filename cloudfilename = 'uploads/' + filename # upload amazon s3 conn = boto.connect_s3(aws_access_key_id=aws_access_key, aws_secret_access_key=aws_secret_key) bucket = conn.get_bucket(aws_bucket_name) fpic = boto.s3.key.key(bucket) fpic.key = cloudfilename fpic.set_contents_from_filename(filenamewithpath) # upload google cloud storage conn = boto.connect_gs(gs_access_key_id=gs_access_key, gs_secret_access_key=gs_secret_key) bucket = conn.get_bucket(gs_bucket_name) fpic = boto.s3.key.key(bucket) fpic.key = cloudfilename fpic.set_contents_from_filename(filenamewithpath) the amazon s3 part of code runs perfectly. however, google cloud storage part gives error message typeerror, 'str' not support buffer interface @ statement fpic.set_contents_from_fil...

javascript - React onClick event only triggerable once after compiling from jsx to js -

i have component builds list of images 2 buttons on each array entry. one of 2 buttons has onclick event updates parentcomponent image shown in bigger view. everything works in precompilex jsx version. try out "live" compiled version onclick event works once. to make work on element need reload page. i don't console errors. no idea error might be. if want recreate can paste code , create div id "bilder". i using latest react version : <script src="https://fb.me/react-0.13.3.js"></script> <script src="https://fb.me/jsxtransformer-0.13.3.js"></script> heres source : var bilder = react.createclass({ getinitialstate: function() { return { data:[ ['1', 'http://localhost/foodoo/app/public/imgs/aichl.jpg', 'bild1.jpg'], ['2', 'http://localhost/foodoo/app/public/imgs/aichl.jpg', 'bild2.jpg'], ['3'...

sockets - How to send raw SOAP request in Java? -

i need send raw soap request server. request looks post http://10.76.243.43:8080/registry/services/xds-iti18 http/1.1 accept-encoding: gzip,deflate content-type: application/soap+xml;charset=utf-8 content-length: 6383 host: 10.76.243.43:8080 connection: keep-alive user-agent: apache-httpclient/4.1.1 (java 1.5) <soap:envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:urn="urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0" xmlns:urn1="urn:oasis:names:tc:ebxml-regrep:xsd:rs:3.0" xmlns:urn2="urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0"> <soap:header/> <soap:body> <urn:adhocqueryrequest id="?" comment="?" federated="false" federation="?" startindex="0" maxresults="-1"> <!--optional:--> <urn1:requestslotlist> <!--zero or more repetitions:--> <urn2:slot name="?" slott...